mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-09 21:16:32 +08:00
73 lines
1.8 KiB
TypeScript
73 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { Modal, Form, InputNumber, Col, Row} from 'antd';
|
|
import { Store } from 'antd/lib/form/interface';
|
|
|
|
// interface Values {
|
|
// title: string;
|
|
// description: string;
|
|
// modifier: string;
|
|
// }
|
|
|
|
interface LatencyModalFormProps {
|
|
visible: boolean;
|
|
onCreate: (values: Store) => void; //Store is defined in antd forms library
|
|
onCancel: () => void;
|
|
}
|
|
|
|
const LatencyModalForm: React.FC<LatencyModalFormProps> = ({
|
|
visible,
|
|
onCreate,
|
|
onCancel,
|
|
}) => {
|
|
const [form] = Form.useForm();
|
|
return (
|
|
<Modal
|
|
visible={visible}
|
|
title="Chose min and max values of Latency"
|
|
okText="Apply"
|
|
cancelText="Cancel"
|
|
onCancel={onCancel}
|
|
onOk={() => {
|
|
form
|
|
.validateFields()
|
|
.then(values => {
|
|
form.resetFields();
|
|
// onCreate({title:"hello",description:'good',modifier:'public'});
|
|
onCreate(values); // giving error for values
|
|
})
|
|
.catch(info => {
|
|
console.log('Validate Failed:', info);
|
|
});
|
|
}}
|
|
>
|
|
<Form
|
|
form={form}
|
|
layout="horizontal"
|
|
name="form_in_modal"
|
|
initialValues={{ min: '100', max:'500' }}
|
|
>
|
|
<Row>
|
|
{/* <Input.Group compact> */}
|
|
<Col span={12}>
|
|
<Form.Item
|
|
name="min"
|
|
label="Min (in ms)"
|
|
// rules={[{ required: true, message: 'Please input the title of collection!' }]}
|
|
>
|
|
<InputNumber />
|
|
</Form.Item>
|
|
</Col>
|
|
<Col span={12}>
|
|
<Form.Item name="max" label="Max (in ms)">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
</Col>
|
|
</Row>
|
|
{/* </Input.Group> */}
|
|
</Form>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default LatencyModalForm;
|