import { IModalManagerChildrenProps } from '@/components/modal-manager'; import { Form, Input, Modal } from 'antd'; import { useEffect } from 'react'; interface IProps extends Omit { loading: boolean; initialValue: string; onOk: (name: string) => void; showModal?(): void; } type FieldType = { api_key?: string; }; const ApiKeyModal = ({ visible, hideModal, loading, initialValue, onOk, }: IProps) => { const [form] = Form.useForm(); const handleOk = async () => { const ret = await form.validateFields(); return onOk(ret.api_key); }; const handleCancel = () => { hideModal(); }; const onFinish = (values: any) => { console.log('Success:', values); }; const onFinishFailed = (errorInfo: any) => { console.log('Failed:', errorInfo); }; useEffect(() => { form.setFieldValue('api_key', initialValue); }, [initialValue, form]); return (
label="Api-Key" name="api_key" tooltip="The API key can be obtained by registering the corresponding LLM supplier." rules={[{ required: true, message: 'Please input api key!' }]} >
); }; export default ApiKeyModal;