mirror of
https://github.com/FranP-code/ChatGPT.git
synced 2025-10-13 00:13:25 +00:00
64 lines
1.8 KiB
TypeScript
Vendored
64 lines
1.8 KiB
TypeScript
Vendored
import { useEffect, ForwardRefRenderFunction, useImperativeHandle, forwardRef } from 'react';
|
|
import { Form, Input, Switch } from 'antd';
|
|
import type { FormProps } from 'antd';
|
|
|
|
import Tags from '@comps/Tags';
|
|
import { DISABLE_AUTO_COMPLETE } from '@/utils';
|
|
|
|
interface AwesomeFormProps {
|
|
record?: Record<string | symbol, any> | null;
|
|
}
|
|
|
|
const initFormValue = {
|
|
title: '',
|
|
url: '',
|
|
enable: true,
|
|
tags: [],
|
|
category: '',
|
|
};
|
|
|
|
const AwesomeForm: ForwardRefRenderFunction<FormProps, AwesomeFormProps> = ({ record }, ref) => {
|
|
const [form] = Form.useForm();
|
|
useImperativeHandle(ref, () => ({ form }));
|
|
|
|
useEffect(() => {
|
|
if (record) {
|
|
form.setFieldsValue(record);
|
|
}
|
|
}, [record]);
|
|
|
|
return (
|
|
<Form form={form} labelCol={{ span: 4 }} initialValues={initFormValue}>
|
|
<Form.Item
|
|
label="Title"
|
|
name="title"
|
|
rules={[{ required: true, message: 'Please enter a title!' }]}
|
|
>
|
|
<Input placeholder="Please enter a title" {...DISABLE_AUTO_COMPLETE} />
|
|
</Form.Item>
|
|
<Form.Item
|
|
label="URL"
|
|
name="url"
|
|
rules={[{ required: true, message: 'Please enter the URL' }, { type: 'url' }]}
|
|
>
|
|
<Input placeholder="Please enter the URL" {...DISABLE_AUTO_COMPLETE} />
|
|
</Form.Item>
|
|
<Form.Item
|
|
label="Category"
|
|
name="category"
|
|
rules={[{ required: true, message: 'Please enter a category' }]}
|
|
>
|
|
<Input placeholder="Please enter a category" {...DISABLE_AUTO_COMPLETE} />
|
|
</Form.Item>
|
|
<Form.Item label="Tags" name="tags">
|
|
<Tags value={record?.tags} />
|
|
</Form.Item>
|
|
<Form.Item label="Enable" name="enable" valuePropName="checked">
|
|
<Switch />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default forwardRef(AwesomeForm);
|