123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /*
- * <<
- * Davinci
- * ==
- * Copyright (C) 2016 - 2017 EDP
- * ==
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * >>
- */
- import React from 'react'
- import { Modal, Form, Button, Input } from 'antd'
- import { FormComponentProps } from 'antd/lib/form'
- import { IViewBase } from '../types'
- const FormItem = Form.Item
- interface ICopyModalProps extends FormComponentProps<IViewBase> {
- visible: boolean
- loading: boolean
- fromView: IViewBase
- onCheckUniqueName: (viewName: string, resolve: () => void, reject: (err: string) => void) => void
- onCopy: (view: IViewBase) => void
- onCancel: () => void
- }
- export class CopyModal extends React.PureComponent<ICopyModalProps> {
- private formItemStyle = {
- labelCol: { span: 6 },
- wrapperCol: { span: 18 }
- }
- private save = () => {
- const { form, fromView, onCopy } = this.props
- form.validateFieldsAndScroll((err, fieldsValue) => {
- if (err) { return }
- const copyView: IViewBase = { ...fieldsValue, id: fromView.id }
- onCopy(copyView)
- })
- }
- private checkName = (_, value, callback) => {
- const { onCheckUniqueName } = this.props
- onCheckUniqueName(value, () => {
- callback()
- }, (err) => {
- callback(err)
- })
- }
- private clearFieldsValue = () => {
- this.props.form.resetFields()
- }
- public render () {
- const { form, visible, loading, fromView, onCancel } = this.props
- const { getFieldDecorator } = form
- if (!fromView) { return null }
- const modalButtons = [(
- <Button
- key="back"
- size="large"
- onClick={onCancel}
- >
- 取 消
- </Button>
- ), (
- <Button
- disabled={loading}
- key="submit"
- size="large"
- type="primary"
- onClick={this.save}
- >
- 保 存
- </Button>
- )]
- return (
- <Modal
- title="复制 View"
- wrapClassName="ant-modal-small"
- visible={visible}
- footer={modalButtons}
- onCancel={onCancel}
- afterClose={this.clearFieldsValue}
- >
- <Form>
- <FormItem label="新名称" {...this.formItemStyle}>
- {getFieldDecorator<IViewBase>('name', {
- validateFirst: true,
- rules: [
- { required: true, message: '不能为空' }
- ],
- initialValue: `${fromView.name}_copy`
- })(<Input />)}
- </FormItem>
- <FormItem label="描述" {...this.formItemStyle}>
- {getFieldDecorator<IViewBase>('description', {
- initialValue: fromView.description
- })(<Input />)}
- </FormItem>
- </Form>
- </Modal>
- )
- }
- }
- export default Form.create<ICopyModalProps>()(CopyModal)
|