mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import * as React from 'react';
|
|
import RcTreeSelect, { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from 'rc-tree-select';
|
|
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,
|
|
dropdownClassName: 'ant-select-tree-dropdown',
|
|
};
|
|
|
|
static contextTypes = {
|
|
antLocale: React.PropTypes.object,
|
|
};
|
|
|
|
render() {
|
|
const props = this.props;
|
|
let {
|
|
size, className, combobox, notFoundContent, prefixCls,
|
|
} = this.props;
|
|
|
|
const cls = classNames({
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[className]: !!className,
|
|
});
|
|
|
|
const { antLocale } = this.context;
|
|
if (antLocale && antLocale.Select) {
|
|
notFoundContent = notFoundContent || antLocale.Select.notFoundContent;
|
|
}
|
|
|
|
if (combobox) {
|
|
notFoundContent = null;
|
|
}
|
|
|
|
let checkable = props.treeCheckable;
|
|
if (checkable) {
|
|
checkable = <span className={`${prefixCls}-tree-checkbox-inner`}></span>;
|
|
}
|
|
|
|
return (
|
|
<RcTreeSelect {...this.props}
|
|
treeCheckable={checkable}
|
|
className={cls}
|
|
notFoundContent={notFoundContent}
|
|
/>
|
|
);
|
|
}
|
|
}
|