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.
146 lines
3.6 KiB
146 lines
3.6 KiB
<script setup lang="ts"> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
|
|
interface Props { |
|
modelValue: number | null | undefined |
|
placeholder?: string |
|
hidePrefix?: boolean |
|
} |
|
|
|
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> |
|
<div |
|
v-if="isForm && !isEditColumn && !hidePrefix" |
|
class="nc-currency-code h-full !bg-gray-100 border-r border-gray-200 px-3 mr-1 flex items-center" |
|
> |
|
<span> |
|
{{ currencyMeta.currency_code }} |
|
</span> |
|
</div> |
|
<input |
|
v-if="(!readOnly && editEnabled) || (isForm && !isEditColumn)" |
|
:ref="focus" |
|
v-model="vModel" |
|
type="number" |
|
class="nc-cell-field h-full border-none rounded-md py-1 outline-none focus:outline-none focus:ring-0" |
|
:class="isForm && !isEditColumn ? 'flex flex-1' : 'w-full'" |
|
:placeholder="placeholder" |
|
:disabled="readOnly" |
|
@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>
|
|
|