|
|
|
<script setup lang="ts">
|
|
|
|
import type { VNodeRef } from '@vue/runtime-core'
|
|
|
|
import {
|
|
|
|
ColumnInj,
|
|
|
|
EditColumnInj,
|
|
|
|
EditModeInj,
|
|
|
|
IsExpandedFormOpenInj,
|
|
|
|
IsFormInj,
|
|
|
|
ReadonlyInj,
|
|
|
|
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 readOnly = inject(ReadonlyInj, 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
|
|
|
|
}
|
|
|
|
|
|
|
|
const onBlur = () => {
|
|
|
|
// triggered by events like focus-out / pressing enter
|
|
|
|
// for non-firefox browsers only
|
|
|
|
submitCurrency()
|
|
|
|
}
|
|
|
|
|
|
|
|
const onKeydownEnter = () => {
|
|
|
|
// onBlur is never executed for firefox & safari
|
|
|
|
// we use keydown.enter to trigger submitCurrency
|
|
|
|
if (/(Firefox|Safari)/.test(navigator.userAgent)) {
|
|
|
|
submitCurrency()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
lastSaved.value = vModel.value
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<input
|
|
|
|
v-if="!readOnly && editEnabled"
|
|
|
|
:ref="focus"
|
|
|
|
v-model="vModel"
|
|
|
|
type="number"
|
|
|
|
class="nc-cell-field w-full h-full text-sm border-none rounded-md py-1 outline-none focus:outline-none focus:ring-0"
|
|
|
|
:placeholder="isEditColumn ? $t('labels.optional') : ''"
|
|
|
|
@blur="onBlur"
|
|
|
|
@keydown.enter="onKeydownEnter"
|
|
|
|
@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-cell-field nc-null uppercase">{{ $t('general.null') }}</span>
|
|
|
|
|
|
|
|
<!-- only show the numeric value as previously string value was accepted -->
|
|
|
|
<span v-else-if="!isNaN(vModel)" class="nc-cell-field">{{ 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>
|