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

133 lines
3.8 KiB
TypeScript
Raw Normal View History

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 } from './interface';
import { SelectLocale } from '../select';
import LocaleReceiver from '../locale-provider/LocaleReceiver';
2018-11-26 12:06:42 +08:00
import { ConfigConsumer, ConfigProviderProps } from '../config-provider';
2017-07-29 14:50:11 +08:00
import warning from '../_util/warning';
2018-08-24 14:08:06 +08:00
import Icon from '../icon';
import { AntTreeNodeProps } from '../tree';
2018-09-15 00:05:14 +08:00
import omit from 'omit.js';
2015-12-28 19:16:02 +08:00
export { TreeNode, TreeSelectProps } from './interface';
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,
2016-07-13 11:14:24 +08:00
};
private rcTreeSelect: any;
constructor(props: TreeSelectProps) {
2017-07-29 14:50:11 +08:00
super(props);
warning(
props.multiple !== false || !props.treeCheckable,
'`multiple` will alway be `true` when `treeCheckable` is true',
);
}
focus() {
this.rcTreeSelect.focus();
}
blur() {
this.rcTreeSelect.blur();
}
saveTreeSelect = (node: typeof RcTreeSelect) => {
this.rcTreeSelect = node;
2018-12-07 16:17:45 +08:00
};
2018-08-24 14:08:06 +08:00
renderSwitcherIcon = ({ isLeaf, loading }: AntTreeNodeProps) => {
2018-12-07 16:17:45 +08:00
const { prefixCls } = this.props;
2018-08-24 14:08:06 +08:00
if (loading) {
2018-12-07 16:17:45 +08:00
return <Icon type="loading" className={`${prefixCls}-switcher-loading-icon`} />;
2018-08-24 14:08:06 +08:00
}
if (isLeaf) {
return null;
}
2018-12-07 16:17:45 +08:00
return <Icon type="caret-down" className={`${prefixCls}-switcher-icon`} />;
};
2018-08-24 14:08:06 +08:00
renderTreeSelect = (locale: SelectLocale) => {
const {
prefixCls,
className,
size,
notFoundContent,
dropdownStyle,
dropdownClassName,
2018-09-16 19:47:00 +08:00
suffixIcon,
2018-11-26 12:06:42 +08:00
getPopupContainer,
...restProps
2015-12-28 19:16:02 +08:00
} = this.props;
2018-09-15 00:05:14 +08:00
const rest = omit(restProps, ['inputIcon', 'removeIcon', 'clearIcon', 'switcherIcon']);
2015-12-28 19:16:02 +08:00
2018-12-07 16:17:45 +08:00
const cls = classNames(
{
[`${prefixCls}-lg`]: size === 'large',
[`${prefixCls}-sm`]: size === 'small',
},
className,
);
2015-12-28 19:16:02 +08:00
2018-09-15 00:05:14 +08:00
let checkable = rest.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
}
2018-08-24 14:08:06 +08:00
2018-12-07 16:17:45 +08:00
const inputIcon = (suffixIcon &&
(React.isValidElement<{ className?: string }>(suffixIcon)
? React.cloneElement(suffixIcon)
: suffixIcon)) || <Icon type="down" className={`${prefixCls}-arrow-icon`} />;
2018-08-24 14:08:06 +08:00
2018-12-07 16:17:45 +08:00
const removeIcon = <Icon type="close" className={`${prefixCls}-remove-icon`} />;
2018-08-24 14:08:06 +08:00
2018-08-25 15:51:07 +08:00
const clearIcon = (
2018-09-07 13:05:30 +08:00
<Icon type="close-circle" className={`${prefixCls}-clear-icon`} theme="filled" />
2018-08-25 15:51:07 +08:00
);
2015-12-28 19:16:02 +08:00
return (
2018-11-26 12:06:42 +08:00
<ConfigConsumer>
{({ getPopupContainer: getContextPopupContainer }: ConfigProviderProps) => {
return (
<RcTreeSelect
switcherIcon={this.renderSwitcherIcon}
inputIcon={inputIcon}
removeIcon={removeIcon}
clearIcon={clearIcon}
{...rest}
getPopupContainer={getPopupContainer || getContextPopupContainer}
dropdownClassName={classNames(dropdownClassName, `${prefixCls}-tree-dropdown`)}
prefixCls={prefixCls}
className={cls}
dropdownStyle={{ maxHeight: '100vh', overflow: 'auto', ...dropdownStyle }}
treeCheckable={checkable}
notFoundContent={notFoundContent || locale.notFoundContent}
ref={this.saveTreeSelect}
/>
);
}}
</ConfigConsumer>
2015-12-28 19:16:02 +08:00
);
2018-12-07 16:17:45 +08:00
};
render() {
return (
2018-12-07 16:17:45 +08:00
<LocaleReceiver componentName="Select" defaultLocale={{}}>
{this.renderTreeSelect}
</LocaleReceiver>
);
}
}