|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
<script lang="ts" setup> |
|
|
|
|
import { computed, inject, useVModel } from '#imports' |
|
|
|
|
import type { VNodeRef } from '@vue/runtime-core' |
|
|
|
|
import { computed, inject, ref, useVModel } from '#imports' |
|
|
|
|
import { isEmail } from '~/utils' |
|
|
|
|
import { EditModeInj } from '~/context' |
|
|
|
|
|
|
|
|
@ -19,13 +20,13 @@ const editEnabled = inject(EditModeInj, ref(false))
|
|
|
|
|
|
|
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
|
|
|
|
|
|
|
|
const validEmail = computed(() => isEmail(vModel.value)) |
|
|
|
|
const validEmail = computed(() => vModel.value && isEmail(vModel.value)) |
|
|
|
|
|
|
|
|
|
const focus = (el: HTMLInputElement) => el?.focus() |
|
|
|
|
const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus() |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|
<input v-if="editEnabled" ref="root" v-model="vModel" class="outline-none prose-sm" @blur="editEnabled = false" /> |
|
|
|
|
<input v-if="editEnabled" :ref="focus" v-model="vModel" class="outline-none prose-sm" @blur="editEnabled = false" /> |
|
|
|
|
<a v-else-if="validEmail" class="prose-sm underline hover:opacity-75" :href="`mailto:${vModel}`" target="_blank"> |
|
|
|
|
{{ vModel }} |
|
|
|
|
</a> |
|
|
|
|