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.
55 lines
1.4 KiB
55 lines
1.4 KiB
<script setup lang="ts"> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
import { EditModeInj, IsExpandedFormOpenInj, RowHeightInj, inject, useVModel } from '#imports' |
|
|
|
const props = defineProps<{ |
|
modelValue?: string | number |
|
}>() |
|
|
|
const emits = defineEmits(['update:modelValue']) |
|
|
|
const editEnabled = inject(EditModeInj) |
|
|
|
const rowHeight = inject(RowHeightInj, ref(undefined)) |
|
|
|
const { showNull } = useGlobal() |
|
|
|
const vModel = useVModel(props, 'modelValue', emits, { defaultValue: '' }) |
|
|
|
const isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false))! |
|
|
|
const focus: VNodeRef = (el) => !isExpandedFormOpen.value && (el as HTMLTextAreaElement)?.focus() |
|
</script> |
|
|
|
<template> |
|
<textarea |
|
v-if="editEnabled" |
|
:ref="focus" |
|
v-model="vModel" |
|
rows="4" |
|
class="h-full w-full min-h-[60px] outline-none border-none" |
|
:class="{ 'p-2': editEnabled }" |
|
@blur="editEnabled = false" |
|
@keydown.alt.enter.stop |
|
@keydown.shift.enter.stop |
|
@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">NULL</span> |
|
|
|
<LazyCellClampedText v-else-if="rowHeight" :value="vModel" :lines="rowHeight" /> |
|
|
|
<span v-else>{{ vModel }}</span> |
|
</template> |
|
|
|
<style> |
|
textarea:focus { |
|
box-shadow: none; |
|
} |
|
</style>
|
|
|