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.
72 lines
1.7 KiB
72 lines
1.7 KiB
<script lang="ts" setup> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
import { EditModeInj, IsExpandedFormOpenInj, inject, useVModel } from '#imports' |
|
|
|
interface Props { |
|
// when we set a number, then it is number type |
|
// for sqlite, when we clear a cell or empty the cell, it returns "" |
|
// otherwise, it is null type |
|
modelValue?: number | null | string |
|
isFocus?: boolean |
|
} |
|
|
|
interface Emits { |
|
(event: 'update:modelValue', model: number): void |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits<Emits>() |
|
|
|
const { showNull } = useGlobal() |
|
|
|
const editEnabled = inject(EditModeInj) |
|
|
|
const _vModel = useVModel(props, 'modelValue', emits) |
|
|
|
const vModel = computed({ |
|
get: () => _vModel.value, |
|
set: (value) => { |
|
if (value === '') { |
|
// if we clear / empty a cell in sqlite, |
|
// the value is considered as '' |
|
_vModel.value = null |
|
} else { |
|
_vModel.value = value |
|
} |
|
}, |
|
}) |
|
|
|
const isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false))! |
|
|
|
const focus: VNodeRef = (el) => !isExpandedFormOpen.value && props.isFocus && (el as HTMLInputElement)?.focus() |
|
</script> |
|
|
|
<template> |
|
<input |
|
v-if="editEnabled" |
|
:ref="focus" |
|
v-model="vModel" |
|
class="outline-none px-1 border-none w-full h-full text-sm" |
|
type="number" |
|
step="0.1" |
|
@blur="editEnabled = false" |
|
@keydown.down.stop |
|
@keydown.left.stop |
|
@keydown.right.stop |
|
@keydown.up.stop |
|
@keydown.delete.stop |
|
@keydown.ctrl.z.stop |
|
@keydown.meta.z.stop |
|
@selectstart.capture.stop |
|
@mousedown.stop |
|
/> |
|
<span v-else-if="vModel === null && showNull" class="nc-null">NULL</span> |
|
<span v-else class="text-sm">{{ vModel }}</span> |
|
</template> |
|
|
|
<style scoped lang="scss"> |
|
input[type='number']:focus { |
|
@apply ring-transparent; |
|
} |
|
</style>
|
|
|