85 lines
2.0 KiB
TypeScript
85 lines
2.0 KiB
TypeScript
import { PageAction } from '@/config';
|
|
import { PageActionType } from '@/config/types';
|
|
import { Form } from 'antd';
|
|
import { forwardRef, useEffect, useImperativeHandle } from 'react';
|
|
import { AccessModeValueMap, StorageTypeValueMap } from '../config';
|
|
import { FormData, ListItem } from '../config/types';
|
|
import Basic from './basic';
|
|
|
|
interface StorageFormProps {
|
|
ref?: any;
|
|
open: boolean;
|
|
action: PageActionType;
|
|
currentData?: ListItem | null;
|
|
namespace?: string;
|
|
onFinish: (values: FormData) => Promise<void>;
|
|
}
|
|
|
|
const GPUServiceStorageForm: React.FC<StorageFormProps> = forwardRef(
|
|
(props, ref) => {
|
|
const {
|
|
action,
|
|
currentData,
|
|
open,
|
|
namespace = 'default',
|
|
onFinish
|
|
} = props;
|
|
const [form] = Form.useForm<FormData>();
|
|
|
|
useEffect(() => {
|
|
if (!open) {
|
|
form.resetFields();
|
|
return;
|
|
}
|
|
|
|
if (action === PageAction.EDIT && currentData) {
|
|
form.setFieldsValue({
|
|
metadata: {
|
|
name: currentData.metadata?.name,
|
|
namespace: currentData.metadata?.namespace
|
|
},
|
|
spec: {
|
|
accessMode: currentData.spec?.accessMode,
|
|
capacity: currentData.spec?.capacity,
|
|
type: currentData.spec?.type
|
|
}
|
|
});
|
|
return;
|
|
}
|
|
|
|
form.setFieldsValue({
|
|
metadata: {
|
|
namespace
|
|
},
|
|
spec: {
|
|
accessMode:
|
|
AccessModeValueMap.ReadWriteOnce as FormData['spec']['accessMode'],
|
|
type: StorageTypeValueMap.Local
|
|
}
|
|
});
|
|
}, [action, currentData, form, open, namespace]);
|
|
|
|
useImperativeHandle(ref, () => ({
|
|
submit: () => {
|
|
form.submit();
|
|
},
|
|
resetFields: () => {
|
|
form.resetFields();
|
|
}
|
|
}));
|
|
|
|
return (
|
|
<Form
|
|
name="gpuServiceStorageForm"
|
|
form={form}
|
|
onFinish={onFinish}
|
|
preserve={false}
|
|
>
|
|
<Basic />
|
|
</Form>
|
|
);
|
|
}
|
|
);
|
|
|
|
export default GPUServiceStorageForm;
|