/* * << * 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 { Form, Row, Col, Transfer } from 'antd' import { FormComponentProps } from 'antd/lib/form/Form' interface ICommonTransferProps { groupSource?: any[] groupTarget?: any[] onGroupChange?: (targets) => any dataSource?: any[] optionTitle: (item) => any adminTargetKeys: any[] targetKeys: any[] setTargetKeys: (newTargetKeys: any) => any rowKeys: (item) => any } interface ICommonTransferState { dataSource: any[] targetKeys: any[] } export class CommonTransfer extends React.PureComponent { constructor (props) { super(props) this.state = { dataSource: [], targetKeys: [] } } public componentDidMount () { const {dataSource} = this.props this.setState({ dataSource: this.addKeyInDatasource(dataSource as any[]) }) } private addKeyInDatasource (dataSource) { return dataSource.map((o, index) => ({...o, ...{key: `dataSource${index}`}})) } public componentWillReceiveProps (nextProps) { const {dataSource} = nextProps if (dataSource !== this.props.dataSource) { this.setState({ dataSource: this.addKeyInDatasource(dataSource as any[]) }) } } private handleChange = (targetKeys) => { this.props.setTargetKeys(targetKeys) } public render () { return ( ) } } export default Form.create()(CommonTransfer)