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.
33 lines
781 B
33 lines
781 B
<script setup lang="ts"> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
import { EditModeInj, ReadonlyInj, inject, ref, useVModel } from '#imports' |
|
|
|
interface Props { |
|
modelValue?: string | null |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits(['update:modelValue']) |
|
|
|
const editEnabled = inject(EditModeInj) |
|
|
|
const readonly = inject(ReadonlyInj, ref(false)) |
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
|
|
const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus() |
|
</script> |
|
|
|
<template> |
|
<input |
|
v-if="!readonly && editEnabled" |
|
:ref="focus" |
|
v-model="vModel" |
|
class="h-full w-full outline-none bg-transparent" |
|
:class="{ '!px-2': editEnabled }" |
|
@blur="editEnabled = false" |
|
/> |
|
|
|
<span v-else>{{ vModel }}</span> |
|
</template>
|
|
|