You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.8 KiB
TypeScript
81 lines
2.8 KiB
TypeScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import React from 'react';
|
|
import { Row, Col } from 'antd/lib/grid';
|
|
import Form, { FormComponentProps } from 'antd/lib/form/Form';
|
|
import Input from 'antd/lib/input';
|
|
import Tooltip from 'antd/lib/tooltip';
|
|
import Checkbox from 'antd/lib/checkbox';
|
|
import Text from 'antd/lib/typography/Text';
|
|
|
|
type Props = FormComponentProps;
|
|
|
|
export class CreateModelForm extends React.PureComponent<Props> {
|
|
public submit(): Promise<{name: string; global: boolean}> {
|
|
const { form } = this.props;
|
|
return new Promise((resolve, reject) => {
|
|
form.validateFields((errors, values): void => {
|
|
if (!errors) {
|
|
resolve({
|
|
name: values.name,
|
|
global: values.global,
|
|
});
|
|
} else {
|
|
reject(errors);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
public resetFields(): void {
|
|
const { form } = this.props;
|
|
form.resetFields();
|
|
}
|
|
|
|
public render(): JSX.Element {
|
|
const { form } = this.props;
|
|
const { getFieldDecorator } = form;
|
|
|
|
return (
|
|
<Form onSubmit={(e: React.FormEvent): void => e.preventDefault()}>
|
|
<Row>
|
|
<Col span={24}>
|
|
<Text type='danger'>* </Text>
|
|
<Text className='cvat-text-color'>Name:</Text>
|
|
</Col>
|
|
<Col span={14}>
|
|
<Form.Item hasFeedback>
|
|
{ getFieldDecorator('name', {
|
|
rules: [{
|
|
required: true,
|
|
message: 'Please, specify a model name',
|
|
}],
|
|
})(<Input placeholder='Model name' />)}
|
|
</Form.Item>
|
|
</Col>
|
|
<Col span={8} offset={2}>
|
|
<Form.Item>
|
|
<Tooltip title='Will this model be availabe for everyone?' mouseLeaveDelay={0}>
|
|
{ getFieldDecorator('global', {
|
|
initialValue: false,
|
|
valuePropName: 'checked',
|
|
})(
|
|
<Checkbox>
|
|
<Text className='cvat-text-color'>
|
|
Load globally
|
|
</Text>
|
|
</Checkbox>,
|
|
)}
|
|
</Tooltip>
|
|
</Form.Item>
|
|
</Col>
|
|
</Row>
|
|
</Form>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Form.create()(CreateModelForm);
|