You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
import React from 'react';
|
|
import RcTreeSelect, { TreeNode, SHOW_ALL, SHOW_PARENT, SHOW_CHILD } from 'rc-tree-select';
|
|
import classNames from 'classnames';
|
|
import { TreeSelectProps, TreeSelectContext } from './interface';
|
|
|
|
export { TreeSelectProps };
|
|
|
|
export default class TreeSelect extends React.Component<TreeSelectProps, any> {
|
|
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,
|
|
};
|
|
|
|
context: TreeSelectContext;
|
|
|
|
render() {
|
|
const props = this.props;
|
|
let {
|
|
size, className = '', notFoundContent, prefixCls, dropdownStyle,
|
|
} = this.props;
|
|
|
|
const cls = classNames({
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
}, className);
|
|
|
|
const { antLocale } = this.context;
|
|
if (antLocale && antLocale.Select) {
|
|
notFoundContent = notFoundContent || antLocale.Select.notFoundContent;
|
|
}
|
|
|
|
let checkable = props.treeCheckable;
|
|
if (checkable) {
|
|
checkable = <span className={`${prefixCls}-tree-checkbox-inner`} />;
|
|
}
|
|
|
|
return (
|
|
<RcTreeSelect
|
|
{...this.props}
|
|
dropdownStyle={{ maxHeight: '100vh', overflow: 'auto', ...dropdownStyle }}
|
|
treeCheckable={checkable}
|
|
className={cls}
|
|
notFoundContent={notFoundContent}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|