mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
<script setup lang="ts"> |
|
import { computed, inject, ref, useVModel } from '#imports' |
|
import { ColumnInj, EditModeInj } from '~/context' |
|
|
|
interface Props { |
|
modelValue: number | null |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emit = defineEmits(['update:modelValue']) |
|
|
|
const column = inject(ColumnInj) |
|
|
|
const editEnabled = inject(EditModeInj, ref(false)) |
|
|
|
const root = ref<HTMLInputElement>() |
|
|
|
const vModel = useVModel(props, 'modelValue', emit) |
|
|
|
const currencyMeta = computed(() => { |
|
return { |
|
currency_locale: 'en-US', |
|
currency_code: 'USD', |
|
...(column?.value?.meta ? column?.value?.meta : {}), |
|
} |
|
}) |
|
const currency = computed(() => { |
|
try { |
|
return isNaN(vModel.value) |
|
? vModel.value |
|
: new Intl.NumberFormat(currencyMeta?.value?.currency_locale || 'en-US', { |
|
style: 'currency', |
|
currency: currencyMeta?.value?.currency_code || 'USD', |
|
}).format(vModel.value) |
|
} catch (e) { |
|
return vModel.value |
|
} |
|
}) |
|
|
|
const focus = (el: HTMLInputElement) => el?.focus() |
|
</script> |
|
|
|
<template> |
|
<input |
|
v-if="editEnabled" |
|
:ref="focus" |
|
v-model="vModel" |
|
class="w-full h-full border-none outline-none" |
|
@blur="editEnabled = false" |
|
/> |
|
<span v-else-if="vModel">{{ currency }}</span> |
|
<span v-else /> |
|
</template>
|
|
|