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

63 lines
1.6 KiB
TypeScript
Raw Normal View History

2016-07-07 20:25:03 +08:00
import * as 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';
import { TreeSelectProps, TreeSelectContext } from './interface';
2015-12-28 19:16:02 +08:00
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',
2016-07-13 11:14:24 +08:00
};
static contextTypes = {
antLocale: React.PropTypes.object,
2016-07-13 11:14:24 +08:00
};
context: TreeSelectContext;
2015-12-28 19:16:02 +08:00
render() {
const props = this.props;
let {
2016-05-11 09:32:33 +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,
});
const { antLocale } = this.context;
if (antLocale && antLocale.Select) {
notFoundContent = notFoundContent || antLocale.Select.notFoundContent;
}
2015-12-28 19:16:02 +08:00
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}
/>
2015-12-28 19:16:02 +08:00
);
}
}