mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-04 11:52:07 +08:00
初始化3.0.0版本
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
import React from 'react';
|
||||
import { Drawer, Form, Input, Space, Button, Utils, Row, Col, IconFont, Divider, message } from 'knowdesign';
|
||||
import { useParams } from 'react-router-dom';
|
||||
import Api from '@src/api';
|
||||
export const ConfigurationEdit = (props: any) => {
|
||||
const urlParams = useParams<any>();
|
||||
const [form] = Form.useForm();
|
||||
|
||||
const onClose = () => {
|
||||
props.setVisible(false);
|
||||
};
|
||||
|
||||
const onOk = () => {
|
||||
form.validateFields().then((res: any) => {
|
||||
const data = {
|
||||
changedProps: {
|
||||
[props.record?.name]: res.newValue,
|
||||
// value: res.newValue,
|
||||
},
|
||||
clusterId: Number(urlParams.clusterId),
|
||||
topicName: props.hashData?.topicName,
|
||||
};
|
||||
Utils.put(Api.getTopicEditConfig(), data)
|
||||
.then((res: any) => {
|
||||
message.success('编辑配置成功');
|
||||
props.setVisible(false);
|
||||
props.genData({ pageNo: 1, pageSize: 10 });
|
||||
})
|
||||
.catch((err: any) => { });
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<Drawer
|
||||
title={
|
||||
<Space size={0}>
|
||||
<Button className="drawer-title-left-button" type="text" size="small" icon={<IconFont type="icon-fanhui1" />} onClick={onClose} />
|
||||
<Divider type="vertical" />
|
||||
<span style={{ paddingLeft: '5px' }}>编辑配置</span>
|
||||
</Space>
|
||||
}
|
||||
width={580}
|
||||
visible={props.visible}
|
||||
onClose={() => props.setVisible(false)}
|
||||
maskClosable={false}
|
||||
extra={
|
||||
<Space>
|
||||
<Button size="small" onClick={onClose}>
|
||||
取消
|
||||
</Button>
|
||||
<Button size="small" type="primary" onClick={onOk}>
|
||||
确认
|
||||
</Button>
|
||||
<div
|
||||
style={{
|
||||
width: '1px',
|
||||
height: '17px',
|
||||
background: 'rgba(0, 0, 0, 0.13)',
|
||||
margin: '0 16px 0 10px',
|
||||
}}
|
||||
></div>
|
||||
</Space>
|
||||
}
|
||||
>
|
||||
<Row gutter={[12, 12]} className="desc-row">
|
||||
<Col span={3} className="label-col">
|
||||
配置名:
|
||||
</Col>
|
||||
<Col span={21} className="value-col">
|
||||
{props.record?.name || '-'}
|
||||
</Col>
|
||||
<Col span={3} className="label-col">
|
||||
描述:
|
||||
</Col>
|
||||
<Col span={21} className="value-col">
|
||||
{props.record?.documentation || '-'}
|
||||
</Col>
|
||||
</Row>
|
||||
<Form form={form} layout={'vertical'} initialValues={props.record}>
|
||||
<Form.Item name="defaultValue" label="Kafka默认配置">
|
||||
<Input disabled />
|
||||
</Form.Item>
|
||||
<Form.Item name="value" label="当前配置">
|
||||
<Input disabled />
|
||||
</Form.Item>
|
||||
<Form.Item name="newValue" label="新配置" rules={[{ required: true, message: '请输入新的配置值!!!' }]}>
|
||||
<Input />
|
||||
</Form.Item>
|
||||
{/* <Form.Item name="applyAll" valuePropName="checked">
|
||||
<Checkbox>应用到全部Broker</Checkbox>
|
||||
</Form.Item> */}
|
||||
</Form>
|
||||
</Drawer>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user