mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-24 15:43:24 +08:00
122 lines
3.1 KiB
TypeScript
122 lines
3.1 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { Modal, message, Input, Form, Radio } from 'antd';
|
|
import { request } from '@/utils/http';
|
|
import config from '@/utils/config';
|
|
|
|
const EnvModal = ({
|
|
env,
|
|
handleCancel,
|
|
visible,
|
|
}: {
|
|
env?: any;
|
|
visible: boolean;
|
|
handleCancel: (cks?: any[]) => void;
|
|
}) => {
|
|
const [form] = Form.useForm();
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleOk = async (values: any) => {
|
|
setLoading(true);
|
|
const { value, split, name, remarks } = values;
|
|
const method = env ? 'put' : 'post';
|
|
let payload;
|
|
if (!env) {
|
|
if (split === '1') {
|
|
const symbol = value.includes('&') ? '&' : '\n';
|
|
payload = value.split(symbol).map((x: any) => {
|
|
return {
|
|
name: name,
|
|
value: x,
|
|
remarks: remarks,
|
|
};
|
|
});
|
|
} else {
|
|
payload = [{ value, name, remarks }];
|
|
}
|
|
} else {
|
|
payload = { ...values, _id: env._id };
|
|
}
|
|
const { code, data } = await request[method](`${config.apiPrefix}envs`, {
|
|
data: payload,
|
|
});
|
|
if (code === 200) {
|
|
message.success(env ? '更新变量成功' : '新建变量成功');
|
|
} else {
|
|
message.error(data);
|
|
}
|
|
setLoading(false);
|
|
handleCancel(data);
|
|
};
|
|
|
|
useEffect(() => {
|
|
form.resetFields();
|
|
}, [env, visible]);
|
|
|
|
return (
|
|
<Modal
|
|
title={env ? '编辑变量' : '新建变量'}
|
|
visible={visible}
|
|
forceRender
|
|
onOk={() => {
|
|
form
|
|
.validateFields()
|
|
.then((values) => {
|
|
handleOk(values);
|
|
})
|
|
.catch((info) => {
|
|
console.log('Validate Failed:', info);
|
|
});
|
|
}}
|
|
onCancel={() => handleCancel()}
|
|
confirmLoading={loading}
|
|
>
|
|
<Form form={form} layout="vertical" name="env_modal" initialValues={env}>
|
|
<Form.Item
|
|
name="name"
|
|
label="名称"
|
|
rules={[
|
|
{ required: true, message: '请输入环境变量名称', whitespace: true },
|
|
{
|
|
pattern: /^[a-zA-Z_][0-9a-zA-Z_]*$/,
|
|
message: '只能输入字母数字下划线,且不能以数字开头',
|
|
},
|
|
]}
|
|
>
|
|
<Input placeholder="请输入环境变量名称" />
|
|
</Form.Item>
|
|
{!env && (
|
|
<Form.Item
|
|
name="split"
|
|
label="自动拆分"
|
|
initialValue="0"
|
|
tooltip="多个依赖是否换行分割"
|
|
>
|
|
<Radio.Group>
|
|
<Radio value="1">是</Radio>
|
|
<Radio value="0">否</Radio>
|
|
</Radio.Group>
|
|
</Form.Item>
|
|
)}
|
|
<Form.Item
|
|
name="value"
|
|
label="值"
|
|
rules={[
|
|
{ required: true, message: '请输入环境变量值', whitespace: true },
|
|
]}
|
|
>
|
|
<Input.TextArea
|
|
rows={4}
|
|
autoSize={true}
|
|
placeholder="请输入环境变量值"
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item name="remarks" label="备注">
|
|
<Input placeholder="请输入备注" />
|
|
</Form.Item>
|
|
</Form>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default EnvModal;
|