ant-design/components/tree-select/index.jsx

46 lines
1.0 KiB
React
Raw Normal View History

2015-12-28 19:16:02 +08:00
import React from 'react';
import TreeSelect, { TreeNode } from 'rc-tree-select';
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;
export default AntTreeSelect;