2015-12-28 19:16:02 +08:00
|
|
|
import React from 'react';
|
2016-03-14 16:18:30 +08:00
|
|
|
import TreeSelect, { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from 'rc-tree-select';
|
2015-12-28 19:16:02 +08:00
|
|
|
import classNames from 'classnames';
|
|
|
|
|
|
|
|
const AntTreeSelect = React.createClass({
|
|
|
|
getDefaultProps() {
|
|
|
|
return {
|
2016-02-26 18:13:16 +08:00
|
|
|
prefixCls: 'ant-select',
|
2015-12-28 19:16:02 +08:00
|
|
|
transitionName: 'slide-up',
|
|
|
|
choiceTransitionName: 'zoom',
|
|
|
|
showSearch: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
const props = this.props;
|
|
|
|
let {
|
2016-02-26 18:13:16 +08:00
|
|
|
size, className, combobox, notFoundContent, prefixCls
|
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',
|
2015-12-28 19:16:02 +08:00
|
|
|
[className]: !!className,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (combobox) {
|
|
|
|
notFoundContent = null;
|
|
|
|
}
|
|
|
|
|
2015-12-31 14:38:35 +08:00
|
|
|
let checkable = props.treeCheckable;
|
2015-12-28 19:16:02 +08:00
|
|
|
if (checkable) {
|
2016-02-26 18:13:16 +08:00
|
|
|
checkable = <span className={`${prefixCls}-tree-checkbox-inner`}></span>;
|
2015-12-28 19:16:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<TreeSelect {...this.props}
|
2015-12-31 14:38:35 +08:00
|
|
|
treeCheckable={checkable}
|
2015-12-28 19:16:02 +08:00
|
|
|
className={cls}
|
|
|
|
notFoundContent={notFoundContent} />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
AntTreeSelect.TreeNode = TreeNode;
|
2016-03-14 16:18:30 +08:00
|
|
|
AntTreeSelect.SHOW_ALL = SHOW_ALL;
|
|
|
|
AntTreeSelect.SHOW_PARENT = SHOW_PARENT;
|
|
|
|
AntTreeSelect.SHOW_CHILD = SHOW_CHILD;
|
2015-12-28 19:16:02 +08:00
|
|
|
export default AntTreeSelect;
|