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.
299 lines
9.3 KiB
299 lines
9.3 KiB
import classNames from 'classnames';
|
|
import type { BaseSelectRef } from 'rc-select';
|
|
import type { Placement } from 'rc-select/lib/BaseSelect';
|
|
import type { TreeSelectProps as RcTreeSelectProps } from 'rc-tree-select';
|
|
import RcTreeSelect, { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeNode } from 'rc-tree-select';
|
|
import type { BaseOptionType, DefaultOptionType } from 'rc-tree-select/lib/TreeSelect';
|
|
import omit from 'rc-util/lib/omit';
|
|
import * as React from 'react';
|
|
import genPurePanel from '../_util/PurePanel';
|
|
import type { SelectCommonPlacement } from '../_util/motion';
|
|
import { getTransitionDirection, getTransitionName } from '../_util/motion';
|
|
import type { InputStatus } from '../_util/statusUtils';
|
|
import { getMergedStatus, getStatusClassNames } from '../_util/statusUtils';
|
|
import warning from '../_util/warning';
|
|
import { ConfigContext } from '../config-provider';
|
|
import DisabledContext from '../config-provider/DisabledContext';
|
|
import type { SizeType } from '../config-provider/SizeContext';
|
|
import SizeContext from '../config-provider/SizeContext';
|
|
import DefaultRenderEmpty from '../config-provider/defaultRenderEmpty';
|
|
import { FormItemInputContext } from '../form/context';
|
|
import useSelectStyle from '../select/style';
|
|
import useBuiltinPlacements from '../select/useBuiltinPlacements';
|
|
import useShowArrow from '../select/useShowArrow';
|
|
import getIcons from '../select/utils/iconUtil';
|
|
import { useCompactItemContext } from '../space/Compact';
|
|
import type { AntTreeNodeProps, TreeProps } from '../tree';
|
|
import type { SwitcherIcon } from '../tree/Tree';
|
|
import SwitcherIconCom from '../tree/utils/iconUtil';
|
|
import useStyle from './style';
|
|
|
|
type RawValue = string | number;
|
|
|
|
export interface LabeledValue {
|
|
key?: string;
|
|
value: RawValue;
|
|
label: React.ReactNode;
|
|
}
|
|
|
|
export type SelectValue = RawValue | RawValue[] | LabeledValue | LabeledValue[];
|
|
|
|
export interface TreeSelectProps<
|
|
ValueType = any,
|
|
OptionType extends BaseOptionType | DefaultOptionType = DefaultOptionType,
|
|
> extends Omit<
|
|
RcTreeSelectProps<ValueType, OptionType>,
|
|
| 'showTreeIcon'
|
|
| 'treeMotion'
|
|
| 'inputIcon'
|
|
| 'mode'
|
|
| 'getInputElement'
|
|
| 'backfill'
|
|
| 'treeLine'
|
|
| 'switcherIcon'
|
|
> {
|
|
suffixIcon?: React.ReactNode;
|
|
size?: SizeType;
|
|
disabled?: boolean;
|
|
placement?: SelectCommonPlacement;
|
|
popupClassName?: string;
|
|
/** @deprecated Please use `popupClassName` instead */
|
|
dropdownClassName?: string;
|
|
bordered?: boolean;
|
|
treeLine?: TreeProps['showLine'];
|
|
status?: InputStatus;
|
|
switcherIcon?: SwitcherIcon | RcTreeSelectProps<ValueType, OptionType>['switcherIcon'];
|
|
rootClassName?: string;
|
|
[key: `aria-${string}`]: React.AriaAttributes[keyof React.AriaAttributes];
|
|
}
|
|
|
|
const InternalTreeSelect = <
|
|
ValueType = any,
|
|
OptionType extends BaseOptionType | DefaultOptionType = BaseOptionType,
|
|
>(
|
|
{
|
|
prefixCls: customizePrefixCls,
|
|
size: customizeSize,
|
|
disabled: customDisabled,
|
|
bordered = true,
|
|
className,
|
|
rootClassName,
|
|
treeCheckable,
|
|
multiple,
|
|
listHeight = 256,
|
|
listItemHeight = 26,
|
|
placement,
|
|
notFoundContent,
|
|
switcherIcon,
|
|
treeLine,
|
|
getPopupContainer,
|
|
popupClassName,
|
|
dropdownClassName,
|
|
treeIcon = false,
|
|
transitionName,
|
|
choiceTransitionName = '',
|
|
status: customStatus,
|
|
showArrow,
|
|
treeExpandAction,
|
|
builtinPlacements,
|
|
...props
|
|
}: TreeSelectProps<ValueType, OptionType>,
|
|
ref: React.Ref<BaseSelectRef>,
|
|
) => {
|
|
const {
|
|
getPopupContainer: getContextPopupContainer,
|
|
getPrefixCls,
|
|
renderEmpty,
|
|
direction,
|
|
virtual,
|
|
dropdownMatchSelectWidth,
|
|
} = React.useContext(ConfigContext);
|
|
const size = React.useContext(SizeContext);
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
warning(
|
|
multiple !== false || !treeCheckable,
|
|
'TreeSelect',
|
|
'`multiple` will always be `true` when `treeCheckable` is true',
|
|
);
|
|
|
|
warning(
|
|
!dropdownClassName,
|
|
'TreeSelect',
|
|
'`dropdownClassName` is deprecated. Please use `popupClassName` instead.',
|
|
);
|
|
}
|
|
|
|
const rootPrefixCls = getPrefixCls();
|
|
const prefixCls = getPrefixCls('select', customizePrefixCls);
|
|
const treePrefixCls = getPrefixCls('select-tree', customizePrefixCls);
|
|
const treeSelectPrefixCls = getPrefixCls('tree-select', customizePrefixCls);
|
|
const { compactSize, compactItemClassnames } = useCompactItemContext(prefixCls, direction);
|
|
|
|
const [wrapSelectSSR, hashId] = useSelectStyle(prefixCls);
|
|
const [wrapTreeSelectSSR] = useStyle(treeSelectPrefixCls, treePrefixCls);
|
|
|
|
const mergedDropdownClassName = classNames(
|
|
popupClassName || dropdownClassName,
|
|
`${treeSelectPrefixCls}-dropdown`,
|
|
{
|
|
[`${treeSelectPrefixCls}-dropdown-rtl`]: direction === 'rtl',
|
|
},
|
|
rootClassName,
|
|
hashId,
|
|
);
|
|
|
|
const isMultiple = !!(treeCheckable || multiple);
|
|
const mergedShowArrow = useShowArrow(showArrow);
|
|
|
|
// ===================== Form =====================
|
|
const {
|
|
status: contextStatus,
|
|
hasFeedback,
|
|
isFormItemInput,
|
|
feedbackIcon,
|
|
} = React.useContext(FormItemInputContext);
|
|
const mergedStatus = getMergedStatus(contextStatus, customStatus);
|
|
|
|
// ===================== Icons =====================
|
|
const { suffixIcon, removeIcon, clearIcon } = getIcons({
|
|
...props,
|
|
multiple: isMultiple,
|
|
showArrow: mergedShowArrow,
|
|
hasFeedback,
|
|
feedbackIcon,
|
|
prefixCls,
|
|
});
|
|
|
|
// ===================== Empty =====================
|
|
let mergedNotFound: React.ReactNode;
|
|
if (notFoundContent !== undefined) {
|
|
mergedNotFound = notFoundContent;
|
|
} else {
|
|
mergedNotFound = renderEmpty?.('Select') || <DefaultRenderEmpty componentName="Select" />;
|
|
}
|
|
|
|
// ==================== Render =====================
|
|
const selectProps = omit(props as typeof props & { itemIcon: any; switcherIcon: any }, [
|
|
'suffixIcon',
|
|
'itemIcon',
|
|
'removeIcon',
|
|
'clearIcon',
|
|
'switcherIcon',
|
|
]);
|
|
|
|
// ===================== Placement =====================
|
|
const memoizedPlacement = React.useMemo<Placement>(() => {
|
|
if (placement !== undefined) {
|
|
return placement;
|
|
}
|
|
return direction === 'rtl' ? 'bottomRight' : 'bottomLeft';
|
|
}, [placement, direction]);
|
|
|
|
const mergedBuiltinPlacements = useBuiltinPlacements(builtinPlacements);
|
|
|
|
const mergedSize = compactSize || customizeSize || size;
|
|
// ===================== Disabled =====================
|
|
const disabled = React.useContext(DisabledContext);
|
|
const mergedDisabled = customDisabled ?? disabled;
|
|
|
|
const mergedClassName = classNames(
|
|
!customizePrefixCls && treeSelectPrefixCls,
|
|
{
|
|
[`${prefixCls}-lg`]: mergedSize === 'large',
|
|
[`${prefixCls}-sm`]: mergedSize === 'small',
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-borderless`]: !bordered,
|
|
[`${prefixCls}-in-form-item`]: isFormItemInput,
|
|
},
|
|
getStatusClassNames(prefixCls, mergedStatus, hasFeedback),
|
|
compactItemClassnames,
|
|
className,
|
|
rootClassName,
|
|
hashId,
|
|
);
|
|
|
|
const renderSwitcherIcon = (nodeProps: AntTreeNodeProps) => (
|
|
<SwitcherIconCom
|
|
prefixCls={treePrefixCls}
|
|
switcherIcon={switcherIcon}
|
|
treeNodeProps={nodeProps}
|
|
showLine={treeLine}
|
|
/>
|
|
);
|
|
|
|
const returnNode = (
|
|
<RcTreeSelect
|
|
virtual={virtual}
|
|
dropdownMatchSelectWidth={dropdownMatchSelectWidth}
|
|
disabled={mergedDisabled}
|
|
{...selectProps}
|
|
builtinPlacements={mergedBuiltinPlacements}
|
|
ref={ref}
|
|
prefixCls={prefixCls}
|
|
className={mergedClassName}
|
|
listHeight={listHeight}
|
|
listItemHeight={listItemHeight}
|
|
treeCheckable={
|
|
treeCheckable ? <span className={`${prefixCls}-tree-checkbox-inner`} /> : treeCheckable
|
|
}
|
|
treeLine={!!treeLine}
|
|
inputIcon={suffixIcon}
|
|
multiple={multiple}
|
|
placement={memoizedPlacement}
|
|
removeIcon={removeIcon}
|
|
clearIcon={clearIcon}
|
|
switcherIcon={renderSwitcherIcon}
|
|
showTreeIcon={treeIcon as any}
|
|
notFoundContent={mergedNotFound}
|
|
getPopupContainer={getPopupContainer || getContextPopupContainer}
|
|
treeMotion={null}
|
|
dropdownClassName={mergedDropdownClassName}
|
|
choiceTransitionName={getTransitionName(rootPrefixCls, '', choiceTransitionName)}
|
|
transitionName={getTransitionName(
|
|
rootPrefixCls,
|
|
getTransitionDirection(placement),
|
|
transitionName,
|
|
)}
|
|
showArrow={hasFeedback || mergedShowArrow}
|
|
treeExpandAction={treeExpandAction}
|
|
/>
|
|
);
|
|
|
|
return wrapSelectSSR(wrapTreeSelectSSR(returnNode));
|
|
};
|
|
|
|
const TreeSelectRef = React.forwardRef(InternalTreeSelect) as <
|
|
ValueType = any,
|
|
OptionType extends BaseOptionType | DefaultOptionType = DefaultOptionType,
|
|
>(
|
|
props: React.PropsWithChildren<TreeSelectProps<ValueType, OptionType>> & {
|
|
ref?: React.Ref<BaseSelectRef>;
|
|
},
|
|
) => React.ReactElement;
|
|
|
|
type InternalTreeSelectType = typeof TreeSelectRef;
|
|
|
|
type CompoundedComponent = InternalTreeSelectType & {
|
|
TreeNode: typeof TreeNode;
|
|
SHOW_ALL: typeof SHOW_ALL;
|
|
SHOW_PARENT: typeof SHOW_PARENT;
|
|
SHOW_CHILD: typeof SHOW_CHILD;
|
|
_InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel;
|
|
};
|
|
|
|
const TreeSelect = TreeSelectRef as CompoundedComponent;
|
|
|
|
// We don't care debug panel
|
|
/* istanbul ignore next */
|
|
const PurePanel = genPurePanel(TreeSelect);
|
|
|
|
TreeSelect.TreeNode = TreeNode;
|
|
TreeSelect.SHOW_ALL = SHOW_ALL;
|
|
TreeSelect.SHOW_PARENT = SHOW_PARENT;
|
|
TreeSelect.SHOW_CHILD = SHOW_CHILD;
|
|
TreeSelect._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
|
|
|
export { TreeNode };
|
|
|
|
export default TreeSelect;
|
|
|