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

72 lines
1.9 KiB
TypeScript
Raw Normal View History

2016-09-21 11:54:53 +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';
import { TreeSelectProps } from './interface';
import injectLocale from '../locale-provider/injectLocale';
2017-07-29 14:50:11 +08:00
import warning from '../_util/warning';
2015-12-28 19:16:02 +08:00
export { TreeSelectProps };
abstract 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
};
2017-07-29 14:50:11 +08:00
constructor(props) {
super(props);
warning(
props.multiple !== false || !props.treeCheckable,
'`multiple` will alway be `true` when `treeCheckable` is true',
);
}
2017-07-30 13:30:12 +08:00
abstract getLocale();
2015-12-28 19:16:02 +08:00
render() {
const locale = this.getLocale();
const {
prefixCls,
className,
size,
notFoundContent = locale.notFoundContent,
dropdownStyle,
2017-03-28 15:44:55 +08:00
...restProps,
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',
}, className);
2015-12-28 19:16:02 +08:00
2017-03-28 15:44:55 +08:00
let checkable = restProps.treeCheckable;
2015-12-28 19:16:02 +08:00
if (checkable) {
checkable = <span className={`${prefixCls}-tree-checkbox-inner`} />;
2015-12-28 19:16:02 +08:00
}
return (
<RcTreeSelect
2017-03-28 15:44:55 +08:00
{...restProps}
prefixCls={prefixCls}
className={cls}
dropdownStyle={{ maxHeight: '100vh', overflow: 'auto', ...dropdownStyle }}
2015-12-31 14:38:35 +08:00
treeCheckable={checkable}
notFoundContent={notFoundContent}
/>
2015-12-28 19:16:02 +08:00
);
}
}
// Use Select's locale
const injectSelectLocale = injectLocale('Select', {});
export default injectSelectLocale<TreeSelectProps>(TreeSelect as any);