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.
129 lines
2.9 KiB
129 lines
2.9 KiB
<script setup lang="ts"> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
import { |
|
ColumnInj, |
|
EditColumnInj, |
|
EditModeInj, |
|
IsExpandedFormOpenInj, |
|
IsFormInj, |
|
computed, |
|
inject, |
|
parseProp, |
|
useVModel, |
|
} from '#imports' |
|
|
|
interface Props { |
|
modelValue: number | null | undefined |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emit = defineEmits(['update:modelValue', 'save']) |
|
|
|
const { showNull } = useGlobal() |
|
|
|
const column = inject(ColumnInj)! |
|
|
|
const editEnabled = inject(EditModeInj)! |
|
|
|
const isEditColumn = inject(EditColumnInj, ref(false)) |
|
|
|
const _vModel = useVModel(props, 'modelValue', emit) |
|
|
|
const vModel = computed({ |
|
get: () => _vModel.value, |
|
set: (value: unknown) => { |
|
if (value === '') { |
|
_vModel.value = null |
|
} else { |
|
_vModel.value = value as number |
|
} |
|
}, |
|
}) |
|
|
|
const lastSaved = ref() |
|
|
|
const currencyMeta = computed(() => { |
|
return { |
|
currency_locale: 'en-US', |
|
currency_code: 'USD', |
|
...parseProp(column?.value?.meta), |
|
} |
|
}) |
|
|
|
const currency = computed(() => { |
|
try { |
|
if (vModel.value === null || vModel.value === undefined || isNaN(vModel.value)) { |
|
return vModel.value |
|
} |
|
return 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 isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false))! |
|
|
|
const isForm = inject(IsFormInj)! |
|
|
|
const focus: VNodeRef = (el) => |
|
!isExpandedFormOpen.value && !isEditColumn.value && !isForm.value && (el as HTMLInputElement)?.focus() |
|
|
|
const submitCurrency = () => { |
|
if (lastSaved.value !== vModel.value) { |
|
vModel.value = lastSaved.value = vModel.value ?? null |
|
emit('save') |
|
} |
|
editEnabled.value = false |
|
} |
|
|
|
onMounted(() => { |
|
lastSaved.value = vModel.value |
|
}) |
|
</script> |
|
|
|
<template> |
|
<input |
|
v-if="editEnabled" |
|
:ref="focus" |
|
v-model="vModel" |
|
type="number" |
|
class="w-full h-full text-sm border-none rounded-md py-1 outline-none focus:outline-none focus:ring-0" |
|
:class="isExpandedFormOpen ? 'px-2' : 'px-0'" |
|
:placeholder="isEditColumn ? $t('labels.optional') : ''" |
|
@blur="submitCurrency" |
|
@keydown.down.stop |
|
@keydown.left.stop |
|
@keydown.right.stop |
|
@keydown.up.stop |
|
@keydown.delete.stop |
|
@selectstart.capture.stop |
|
@mousedown.stop |
|
@contextmenu.stop |
|
/> |
|
|
|
<span v-else-if="vModel === null && showNull" class="nc-null uppercase">{{ $t('general.null') }}</span> |
|
|
|
<!-- only show the numeric value as previously string value was accepted --> |
|
<span v-else-if="!isNaN(vModel)">{{ currency }}</span> |
|
|
|
<!-- possibly unexpected string / null with showNull == false --> |
|
<span v-else /> |
|
</template> |
|
|
|
<style lang="scss" scoped> |
|
/* Chrome, Safari, Edge, Opera */ |
|
input::-webkit-outer-spin-button, |
|
input::-webkit-inner-spin-button { |
|
-webkit-appearance: none; |
|
margin: 0; |
|
} |
|
|
|
/* Firefox */ |
|
input[type='number'] { |
|
-moz-appearance: textfield; |
|
} |
|
</style>
|
|
|