136 lines
3.5 KiB
TypeScript
136 lines
3.5 KiB
TypeScript
import ModalFooter from '@/components/modal-footer';
|
|
import ScrollerModal from '@/components/scroller-modal';
|
|
import SealInput from '@/components/seal-form/seal-input';
|
|
import { PageAction } from '@/config';
|
|
import { PageActionType } from '@/config/types';
|
|
import { useIntl } from '@umijs/max';
|
|
import { Button, Form } from 'antd';
|
|
import React from 'react';
|
|
import { ProviderValueMap } from '../config';
|
|
import {
|
|
CredentialFormData as FormData,
|
|
CredentialListItem as ListItem
|
|
} from '../config/types';
|
|
|
|
type AddModalProps = {
|
|
title: string;
|
|
action: PageActionType;
|
|
open: boolean;
|
|
onOk: (values: FormData) => void;
|
|
currentData?: ListItem;
|
|
onCancel: () => void;
|
|
provider: string; // 'kubernetes' | 'digitalocean';
|
|
};
|
|
const AddModal: React.FC<AddModalProps> = ({
|
|
title,
|
|
action,
|
|
open,
|
|
onOk,
|
|
currentData,
|
|
provider,
|
|
onCancel
|
|
}) => {
|
|
const [form] = Form.useForm();
|
|
const intl = useIntl();
|
|
|
|
const handleSumit = () => {
|
|
form.submit();
|
|
};
|
|
|
|
const handleOk = async (data: FormData) => {
|
|
onOk(data);
|
|
};
|
|
|
|
return (
|
|
<ScrollerModal
|
|
title={title}
|
|
open={open}
|
|
centered={true}
|
|
onOk={handleSumit}
|
|
onCancel={onCancel}
|
|
destroyOnClose={true}
|
|
closeIcon={false}
|
|
maskClosable={false}
|
|
keyboard={false}
|
|
width={600}
|
|
footer={
|
|
<ModalFooter
|
|
onOk={handleSumit}
|
|
onCancel={onCancel}
|
|
description={<Button>Validation Test</Button>}
|
|
></ModalFooter>
|
|
}
|
|
>
|
|
<Form
|
|
form={form}
|
|
onFinish={handleOk}
|
|
preserve={false}
|
|
initialValues={currentData}
|
|
>
|
|
<Form.Item<FormData>
|
|
name="name"
|
|
rules={[
|
|
{
|
|
required: true,
|
|
message: intl.formatMessage(
|
|
{ id: 'common.form.rule.input' },
|
|
{
|
|
name: intl.formatMessage({ id: 'common.table.name' })
|
|
}
|
|
)
|
|
}
|
|
]}
|
|
>
|
|
<SealInput.Input
|
|
label={intl.formatMessage({ id: 'common.table.name' })}
|
|
required
|
|
></SealInput.Input>
|
|
</Form.Item>
|
|
{provider === ProviderValueMap.DigitalOcean && (
|
|
<>
|
|
<Form.Item<FormData>
|
|
name="key"
|
|
rules={[
|
|
{
|
|
required: action === PageAction.CREATE,
|
|
message: intl.formatMessage({
|
|
id: 'users.form.rule.password'
|
|
})
|
|
}
|
|
]}
|
|
>
|
|
<SealInput.Password
|
|
label="Access Key"
|
|
required={action === PageAction.CREATE}
|
|
></SealInput.Password>
|
|
</Form.Item>
|
|
<Form.Item<FormData>
|
|
name="secret"
|
|
rules={[
|
|
{
|
|
required: action === PageAction.CREATE,
|
|
message: intl.formatMessage({
|
|
id: 'users.form.rule.password'
|
|
})
|
|
}
|
|
]}
|
|
>
|
|
<SealInput.Password
|
|
label="Access Secret"
|
|
required={action === PageAction.CREATE}
|
|
></SealInput.Password>
|
|
</Form.Item>
|
|
</>
|
|
)}
|
|
<Form.Item<FormData> name="description" rules={[{ required: false }]}>
|
|
<SealInput.TextArea
|
|
label={intl.formatMessage({ id: 'common.table.description' })}
|
|
></SealInput.TextArea>
|
|
</Form.Item>
|
|
</Form>
|
|
</ScrollerModal>
|
|
);
|
|
};
|
|
|
|
export default AddModal;
|