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

47 lines
1.1 KiB
React
Raw Normal View History

2015-12-28 19:16:02 +08:00
import React from 'react';
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';
export default 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,
}
2015-12-28 19:16:02 +08:00
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 (
<RcTreeSelect {...this.props}
2015-12-31 14:38:35 +08:00
treeCheckable={checkable}
2015-12-28 19:16:02 +08:00
className={cls}
notFoundContent={notFoundContent} />
);
}
}