import React from 'react'; import RcTreeSelect, { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from 'rc-tree-select'; import classNames from 'classnames'; import { TreeSelectProps } from './interface'; import injectLocale from '../locale-provider/injectLocale'; import warning from '../_util/warning'; export { TreeSelectProps }; abstract class TreeSelect extends React.Component { static TreeNode = TreeNode; static SHOW_ALL = SHOW_ALL; static SHOW_PARENT = SHOW_PARENT; static SHOW_CHILD = SHOW_CHILD; static defaultProps = { prefixCls: 'ant-select', transitionName: 'slide-up', choiceTransitionName: 'zoom', showSearch: false, dropdownClassName: 'ant-select-tree-dropdown', }; constructor(props) { super(props); warning( props.multiple !== false || !props.treeCheckable, '`multiple` will alway be `true` when `treeCheckable` is true', ); } abstract getLocale(); render() { const locale = this.getLocale(); const { prefixCls, className, size, notFoundContent = locale.notFoundContent, dropdownStyle, ...restProps, } = this.props; const cls = classNames({ [`${prefixCls}-lg`]: size === 'large', [`${prefixCls}-sm`]: size === 'small', }, className); let checkable = restProps.treeCheckable; if (checkable) { checkable = ; } return ( ); } } // Use Select's locale const injectSelectLocale = injectLocale('Select', {}); export default injectSelectLocale(TreeSelect as any);