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
947 B
33 lines
947 B
<script lang="ts" setup> |
|
import type { VNodeRef } from '@vue/runtime-core' |
|
import { computed, inject, isEmail, useVModel } from '#imports' |
|
import { EditModeInj } from '~/context' |
|
|
|
interface Props { |
|
modelValue: string | null | undefined |
|
} |
|
|
|
interface Emits { |
|
(event: 'update:modelValue', model: string): void |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits<Emits>() |
|
|
|
const editEnabled = inject(EditModeInj) |
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
|
|
const validEmail = computed(() => vModel.value && isEmail(vModel.value)) |
|
|
|
const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus() |
|
</script> |
|
|
|
<template> |
|
<input v-if="editEnabled" :ref="focus" v-model="vModel" class="outline-none text-sm" @blur="editEnabled = false" /> |
|
<a v-else-if="validEmail" class="text-sm underline hover:opacity-75" :href="`mailto:${vModel}`" target="_blank"> |
|
{{ vModel }} |
|
</a> |
|
<span v-else>{{ vModel }}</span> |
|
</template>
|
|
|