"use client" import { ArticleType, insertArticle, updateArticle } from '@/app/_lib/data/article'; import ImageUpload from '@/app/_ui/ImageUpload'; import { faArrowLeft } from '@fortawesome/free-solid-svg-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { Button, Card, Col, DatePicker, Form, Input, InputNumber, message, Row, Select, SelectProps, Space, Spin } from 'antd'; import { useRouter } from 'next/navigation' import 'md-editor-rt/lib/style.css'; import '@ant-design/v5-patch-for-react-19'; import dayjs from 'dayjs'; import gfm from '@bytemd/plugin-gfm' import { useEffect, useMemo, useRef, useState } from 'react'; import { getLinkList, updateLink } from '@/app/_lib/data/link'; import { debounce } from '@/app/_lib/utils'; import { useRequest } from 'ahooks'; import MyMarkdownEdit from '@/app/_ui/MarkdownView'; const plugins = [ gfm(), // Add more plugins here ] export default function AddOrEdit({ editData }: { editData?: ArticleType | null }) { const router = useRouter() const fetchRef = useRef(0) const [form] = Form.useForm(); const [fetching, setFetching] = useState(false); const [options, setOptions] = useState([]); const { data: linkList = [] } = useRequest(() => getLinkList({ filter: { articleId: editData?._id || '-1' } }).then(res => res.list)) useEffect(() => { if (linkList.length !== 0) { form.setFieldValue('linkId', linkList.map(item => ({ key: item._id, value: item._id, label: item.name }))) return } }, [linkList]) const debounceFetcher = useMemo(() => { const loadOptions = (value: string) => { fetchRef.current += 1; const fetchId = fetchRef.current; setOptions([]); setFetching(true); getLinkList({ filter: { name: value } }).then((newOptions) => { if (fetchId !== fetchRef.current) { // for fetch callback Forder return; } setOptions(newOptions.list.map(item => ({ value: item._id, label: item.name, }))); setFetching(false); }); }; return debounce(loadOptions, 300); }, [getLinkList, 300]); return <>
{ router?.back() }} > 返回
form={form} onFinish={async (res: any) => { const linkIdList = res.linkId const addTime = res.addTime.unix() if (editData) { updateArticle({ ...res, _id: editData._id, addTime }).then(() => { linkIdList.map((item: any) => { updateLink( item.value, { articleId: editData._id }) }) }) } else { insertArticle({ ...res, addTime: dayjs().unix() }).then(id => { linkIdList.map((item: any) => { updateLink( item.value, { articleId: id }) }) }) } router?.push("/admin/dashboard/article") message.success("操作成功") }} initialValues={editData ? { ...editData, addTime: dayjs(editData.addTime * 1000), } : { priority: 0, addTime: dayjs() }} >