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 setup lang="ts"> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
import { |
|
EditColumnInj, |
|
EditModeInj, |
|
IsExpandedFormOpenInj, |
|
IsFormInj, |
|
ReadonlyInj, |
|
RowHeightInj, |
|
inject, |
|
ref, |
|
useVModel, |
|
} from '#imports' |
|
|
|
interface Props { |
|
modelValue?: string | null |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits(['update:modelValue']) |
|
|
|
const { showNull } = useGlobal() |
|
|
|
const editEnabled = inject(EditModeInj, ref(false)) |
|
|
|
const isEditColumn = inject(EditColumnInj, ref(false)) |
|
|
|
const rowHeight = inject(RowHeightInj, ref(undefined)) |
|
|
|
const readOnly = inject(ReadonlyInj, ref(false)) |
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
|
|
const isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false))! |
|
|
|
const isForm = inject(IsFormInj)! |
|
|
|
const focus: VNodeRef = (el) => |
|
!isExpandedFormOpen.value && !isEditColumn.value && !isForm.value && (el as HTMLInputElement)?.focus() |
|
</script> |
|
|
|
<template> |
|
<input |
|
v-if="!readOnly && editEnabled" |
|
:ref="focus" |
|
v-model="vModel" |
|
class="h-full w-full outline-none py-1 bg-transparent" |
|
:class="isExpandedFormOpen ? 'px-2' : 'px-0'" |
|
:placeholder="isEditColumn ? $t('labels.optional') : ''" |
|
@blur="editEnabled = false" |
|
@keydown.down.stop |
|
@keydown.left.stop |
|
@keydown.right.stop |
|
@keydown.up.stop |
|
@keydown.delete.stop |
|
@selectstart.capture.stop |
|
@mousedown.stop |
|
/> |
|
|
|
<span v-else-if="vModel === null && showNull" class="nc-null uppercase" :class="isExpandedFormOpen ? 'px-2' : 'px-0'">{{ |
|
$t('general.null') |
|
}}</span> |
|
|
|
<LazyCellClampedText |
|
v-else |
|
:value="vModel" |
|
:lines="rowHeight" |
|
:style="{ 'word-break': 'break-word' }" |
|
:class="isExpandedFormOpen ? 'px-2' : 'px-0'" |
|
/> |
|
</template>
|
|
|