refactor(front): replace MarkdownInputField with RichInputField for improved JSON handling in text uploads, update Tiptap component to support JSONContent, and increment dependency versions for better compatibility

This commit is contained in:
keven1024
2025-10-13 21:27:28 +08:00
parent 6bd008f119
commit e959a0bc3e
5 changed files with 130 additions and 110 deletions

View File

@@ -1,74 +1,92 @@
<script lang="ts" setup>
import MarkdownInputField from "@/components/Field/MarkdownInputField.vue";
import FormButton from "@/components/Field/FormButton.vue";
import Button from "@/components/ui/button/Button.vue";
import showDrawer from "@/lib/showDrawer";
import { h } from "vue";
import TextShareDrawer from "@/components/Drawer/TextShareDrawer.vue";
import { cx } from "class-variance-authority";
import PickupShareBtn from "@/components/PickupShareBtn.vue";
const form = useFormContext();
const { t } = useI18n();
import RichInputField from '@/components/Field/RichInputField.vue'
import FormButton from '@/components/Field/FormButton.vue'
import Button from '@/components/ui/button/Button.vue'
import showDrawer from '@/lib/showDrawer'
import { h } from 'vue'
import TextShareDrawer from '@/components/Drawer/TextShareDrawer.vue'
import { cx } from 'class-variance-authority'
import PickupShareBtn from '@/components/PickupShareBtn.vue'
import { isEmpty } from 'lodash-es'
const form = useFormContext()
const { t } = useI18n()
const isEmptyRichText = (value: string) => {
if (isEmpty(value)) return true
try {
const { content } = JSON.parse(value) || {}
return (
content?.reduce((acc: boolean, item: any) => {
const { type, content } = item || {}
if (!type || !['paragraph'].includes(type)) {
return acc
}
return acc + (content?.length ?? 0)
}, 0) == 0
)
} catch (error) {
return true
}
}
const isEmptyText = computed(() => isEmptyRichText(form?.values.text))
const emit = defineEmits<{
(e: "change", key: string): void;
}>();
(e: 'change', key: string): void
}>()
const handleTextShare = ({ type, config }: { type: string; config: any }) => {
form?.setFieldValue("handle_type", type);
form?.setFieldValue("config", config);
emit("change", "result");
};
form?.setFieldValue('handle_type', type)
form?.setFieldValue('config', config)
emit('change', 'result')
}
</script>
<template>
<div class="gap-5 flex flex-col">
<div class="text-xl font-normal">{{ t("text.uploadText") }}</div>
<div class="relative">
<MarkdownInputField
name="text"
:placeholder="t('text.uploadTextPlaceholder')"
class="max-h-[50vh] min-h-40 overflow-y-auto max-w-full [&>*]:pr-10"
rules="required"
/>
<Button
variant="ghost"
size="icon"
:class="
cx(
'absolute right-2 top-2 hover:bg-black/10 transition-all duration-300',
form?.values.text?.length > 0
? 'opacity-100'
: 'opacity-0 pointer-events-none',
)
"
@click="
() => {
form?.setValues({ text: '' });
}
"
>
<LucideX />
</Button>
<div class="gap-5 flex flex-col">
<div class="text-xl font-normal">{{ t('text.uploadText') }}</div>
<div class="relative">
<RichInputField
name="text"
:placeholder="t('text.uploadTextPlaceholder')"
class="max-h-[50vh] min-h-40 overflow-y-auto max-w-full [&>*]:pr-10"
:rules="(v) => !isEmptyRichText(v)"
/>
<Button
variant="ghost"
size="icon"
:class="
cx(
'absolute right-2 top-2 hover:bg-black/10 transition-all duration-300',
!isEmptyText ? 'opacity-100' : 'opacity-0 pointer-events-none'
)
"
@click="
() => {
form?.setValues({ text: '' })
}
"
>
<LucideX />
</Button>
</div>
<div class="flex flex-row gap-3">
<FormButton
@click="
async (form) => {
const { text } = form?.values || {}
showDrawer({
render: ({ hide }) =>
h(TextShareDrawer, {
hide,
text,
onTextHandle: handleTextShare,
}),
})
}
"
>
<LucideShare class="size-4" />{{ t('btn.submit') }}
</FormButton>
<PickupShareBtn />
</div>
</div>
<div class="flex flex-row gap-3">
<FormButton
@click="
async (form) => {
const { text } = form?.values || {};
showDrawer({
render: ({ hide }) =>
h(TextShareDrawer, {
hide,
text,
onTextHandle: handleTextShare,
}),
});
}
"
>
<LucideShare class="size-4" />{{ t("btn.submit") }}
</FormButton>
<PickupShareBtn />
</div>
</div>
</template>