mirror of
https://github.com/FranP-code/ChatGPT.git
synced 2025-10-13 00:13:25 +00:00
66 lines
1.8 KiB
TypeScript
Vendored
66 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 UserCustomFormProps {
|
|
record?: Record<string | symbol, any> | null;
|
|
}
|
|
|
|
const initFormValue = {
|
|
act: '',
|
|
enable: true,
|
|
tags: [],
|
|
prompt: '',
|
|
};
|
|
|
|
const UserCustomForm: ForwardRefRenderFunction<FormProps, UserCustomFormProps> = (
|
|
{ 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="/{cmd}"
|
|
name="cmd"
|
|
rules={[{ required: true, message: 'Please enter the {cmd}!' }]}
|
|
>
|
|
<Input placeholder="Please enter the {cmd}" {...DISABLE_AUTO_COMPLETE} />
|
|
</Form.Item>
|
|
<Form.Item
|
|
label="Act"
|
|
name="act"
|
|
rules={[{ required: true, message: 'Please enter the Act!' }]}
|
|
>
|
|
<Input placeholder="Please enter the Act" {...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.Item
|
|
label="Prompt"
|
|
name="prompt"
|
|
rules={[{ required: true, message: 'Please enter a prompt!' }]}
|
|
>
|
|
<Input.TextArea rows={4} placeholder="Please enter a prompt" {...DISABLE_AUTO_COMPLETE} />
|
|
</Form.Item>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default forwardRef(UserCustomForm);
|