2016-09-21 11:54:53 +08:00
|
|
|
import React from 'react';
|
2016-03-21 09:22:14 +08:00
|
|
|
import RcTreeSelect, { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from 'rc-tree-select';
|
2015-12-28 19:16:02 +08:00
|
|
|
import classNames from 'classnames';
|
2017-03-17 15:23:25 +08:00
|
|
|
import { TreeSelectProps } from './interface';
|
|
|
|
import injectLocale from '../locale-provider/injectLocale';
|
2015-12-28 19:16:02 +08:00
|
|
|
|
2016-08-01 16:35:01 +08:00
|
|
|
export { TreeSelectProps };
|
|
|
|
|
2017-03-17 15:23:25 +08:00
|
|
|
abstract class TreeSelect extends React.Component<TreeSelectProps, any> {
|
2016-03-29 14:01:10 +08:00
|
|
|
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,
|
2016-05-08 16:05:36 +08:00
|
|
|
dropdownClassName: 'ant-select-tree-dropdown',
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-05-08 16:05:36 +08:00
|
|
|
|
2017-05-25 16:54:15 +08:00
|
|
|
abstract getLocale();
|
2016-08-01 16:35:01 +08:00
|
|
|
|
2015-12-28 19:16:02 +08:00
|
|
|
render() {
|
2017-03-17 15:23:25 +08:00
|
|
|
const locale = this.getLocale();
|
|
|
|
const {
|
|
|
|
prefixCls,
|
|
|
|
className,
|
|
|
|
size,
|
|
|
|
notFoundContent = locale.notFoundContent,
|
|
|
|
dropdownStyle,
|
2017-03-28 15:44:55 +08:00
|
|
|
...restProps,
|
2015-12-28 19:16:02 +08:00
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
const cls = classNames({
|
2016-02-26 18:13:16 +08:00
|
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
|
|
[`${prefixCls}-sm`]: size === 'small',
|
2016-11-30 10:20:23 +08:00
|
|
|
}, className);
|
2015-12-28 19:16:02 +08:00
|
|
|
|
2017-03-28 15:44:55 +08:00
|
|
|
let checkable = restProps.treeCheckable;
|
2015-12-28 19:16:02 +08:00
|
|
|
if (checkable) {
|
2016-11-24 14:09:43 +08:00
|
|
|
checkable = <span className={`${prefixCls}-tree-checkbox-inner`} />;
|
2015-12-28 19:16:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2016-10-15 15:28:55 +08:00
|
|
|
<RcTreeSelect
|
2017-03-28 15:44:55 +08:00
|
|
|
{...restProps}
|
|
|
|
prefixCls={prefixCls}
|
|
|
|
className={cls}
|
2017-02-28 18:50:22 +08:00
|
|
|
dropdownStyle={{ maxHeight: '100vh', overflow: 'auto', ...dropdownStyle }}
|
2015-12-31 14:38:35 +08:00
|
|
|
treeCheckable={checkable}
|
2016-06-06 13:54:10 +08:00
|
|
|
notFoundContent={notFoundContent}
|
|
|
|
/>
|
2015-12-28 19:16:02 +08:00
|
|
|
);
|
|
|
|
}
|
2016-03-21 09:22:14 +08:00
|
|
|
}
|
2017-03-17 15:23:25 +08:00
|
|
|
|
|
|
|
// Use Select's locale
|
|
|
|
const injectSelectLocale = injectLocale('Select', {});
|
|
|
|
export default injectSelectLocale<TreeSelectProps>(TreeSelect as any);
|