import React, { Component, PropTypes } from 'react'; import Checkbox from '../checkbox'; import Search from './search'; import classNames from 'classnames'; import Animate from 'rc-animate'; function noop() { } class TransferList extends Component { constructor(props) { super(props); this.state = { mounted: false, }; } componentDidMount() { setTimeout(() => { this.setState({ mounted: true, }); }, 0); } handleSelectALl() { this.props.handleSelectAll(); } handleSelect(selectedItem) { const { checkedKeys } = this.props; const result = checkedKeys.some((key) => key === selectedItem.key); this.props.handleSelect(selectedItem, !result); } handleFilter(e) { this.props.handleFilter(e); } handleClear() { this.props.handleClear(); } renderCheckbox(props) { const { prefixCls } = props; const checkboxCls = classNames({ [`${prefixCls}-checkbox`]: true, [`${prefixCls}-checkbox-indeterminate`]: props.checkPart, [`${prefixCls}-checkbox-checked`]: (!props.checkPart) && props.checked, [`${prefixCls}-checkbox-disabled`]: !!props.disabled, }); let customEle = null; if (typeof props.checkable !== 'boolean') { customEle = props.checkable; } return ( {customEle} ); } matchFilter(text, filterText) { const regex = new RegExp(filterText); return text.match(regex); } render() { const { prefixCls, dataSource, titleText, filter, checkedKeys, checkStatus, body, footer, showSearch, searchPlaceholder } = this.props; // Custom Layout const footerDom = footer({ ...this.props }); const bodyDom = body({ ...this.props }); const listCls = classNames({ [prefixCls]: true, [`${prefixCls}-with-footer`]: !!footerDom, }); const showItems = dataSource.filter((item) => { const itemText = this.props.render(item); const filterResult = this.matchFilter(itemText, filter); return !!filterResult; }).map((item) => { const renderedText = this.props.render(item); return (
  • key === item.key)} /> {renderedText}
  • ); }); return (
    {this.renderCheckbox({ prefixCls: 'ant-transfer', checked: checkStatus === 'all', checkPart: checkStatus === 'part', checkable: })}{(checkedKeys.length > 0 ? `${checkedKeys.length}/` : '') + dataSource.length} 条 {titleText}
    { bodyDom ||
    { showSearch ?
    : null } {showItems.length > 0 ? showItems :
    Not Found
    }
    } { footerDom ?
    { footerDom }
    : null }
    ); } } TransferList.defaultProps = { dataSource: [], titleText: '', showSearch: false, searchPlaceholder: '', handleFilter: noop, handleSelect: noop, handleSelectAll: noop, render: noop, // advanced body: noop, footer: noop, }; TransferList.propTypes = { prefixCls: PropTypes.string, dataSource: PropTypes.array, showSearch: PropTypes.bool, searchPlaceholder: PropTypes.string, titleText: PropTypes.string, style: PropTypes.object, handleFilter: PropTypes.func, handleSelect: PropTypes.func, handleSelectAll: PropTypes.func, render: PropTypes.func, body: PropTypes.func, footer: PropTypes.func, }; export default TransferList;