1
This commit is contained in:
+269
@@ -0,0 +1,269 @@
|
||||
"use client";
|
||||
|
||||
// TODO: 4.0 - codemod should help to change `filterOption` to support node props.
|
||||
import * as React from 'react';
|
||||
import RcSelect, { OptGroup, Option } from '@rc-component/select';
|
||||
import { omit } from '@rc-component/util';
|
||||
import { clsx } from 'clsx';
|
||||
import { useMergeSemantic, useZIndex } from '../_util/hooks';
|
||||
import { getTransitionName } from '../_util/motion';
|
||||
import genPurePanel from '../_util/PurePanel';
|
||||
import { getMergedStatus, getStatusClassNames } from '../_util/statusUtils';
|
||||
import { devUseWarning } from '../_util/warning';
|
||||
import { ConfigContext } from '../config-provider';
|
||||
import { useComponentConfig } from '../config-provider/context';
|
||||
import DefaultRenderEmpty from '../config-provider/defaultRenderEmpty';
|
||||
import DisabledContext from '../config-provider/DisabledContext';
|
||||
import useCSSVarCls from '../config-provider/hooks/useCSSVarCls';
|
||||
import useSize from '../config-provider/hooks/useSize';
|
||||
import { FormItemInputContext } from '../form/context';
|
||||
import useVariants from '../form/hooks/useVariants';
|
||||
import { useCompactItemContext } from '../space/Compact';
|
||||
import { useToken } from '../theme/internal';
|
||||
import mergedBuiltinPlacements from './mergedBuiltinPlacements';
|
||||
import useStyle from './style';
|
||||
import useIcons from './useIcons';
|
||||
import usePopupRender from './usePopupRender';
|
||||
import useShowArrow from './useShowArrow';
|
||||
const SECRET_COMBOBOX_MODE_DO_NOT_USE = 'SECRET_COMBOBOX_MODE_DO_NOT_USE';
|
||||
const InternalSelect = (props, ref) => {
|
||||
const {
|
||||
prefixCls: customizePrefixCls,
|
||||
bordered,
|
||||
className,
|
||||
rootClassName,
|
||||
getPopupContainer,
|
||||
popupClassName,
|
||||
dropdownClassName,
|
||||
listHeight = 256,
|
||||
placement,
|
||||
listItemHeight: customListItemHeight,
|
||||
size: customizeSize,
|
||||
disabled: customDisabled,
|
||||
notFoundContent,
|
||||
status: customStatus,
|
||||
builtinPlacements,
|
||||
dropdownMatchSelectWidth,
|
||||
popupMatchSelectWidth,
|
||||
direction: propDirection,
|
||||
style,
|
||||
allowClear,
|
||||
variant: customizeVariant,
|
||||
popupStyle,
|
||||
dropdownStyle,
|
||||
transitionName,
|
||||
tagRender,
|
||||
maxCount,
|
||||
prefix,
|
||||
dropdownRender,
|
||||
/**
|
||||
* @since 5.25.0
|
||||
*/
|
||||
popupRender,
|
||||
onDropdownVisibleChange,
|
||||
onOpenChange,
|
||||
styles,
|
||||
classNames,
|
||||
...rest
|
||||
} = props;
|
||||
const {
|
||||
getPopupContainer: getContextPopupContainer,
|
||||
getPrefixCls,
|
||||
renderEmpty,
|
||||
direction: contextDirection,
|
||||
virtual,
|
||||
popupMatchSelectWidth: contextPopupMatchSelectWidth,
|
||||
popupOverflow
|
||||
} = React.useContext(ConfigContext);
|
||||
const {
|
||||
showSearch,
|
||||
style: contextStyle,
|
||||
styles: contextStyles,
|
||||
className: contextClassName,
|
||||
classNames: contextClassNames
|
||||
} = useComponentConfig('select');
|
||||
const [, token] = useToken();
|
||||
const listItemHeight = customListItemHeight ?? token?.controlHeight;
|
||||
const prefixCls = getPrefixCls('select', customizePrefixCls);
|
||||
const rootPrefixCls = getPrefixCls();
|
||||
const direction = propDirection ?? contextDirection;
|
||||
const {
|
||||
compactSize,
|
||||
compactItemClassnames
|
||||
} = useCompactItemContext(prefixCls, direction);
|
||||
const [variant, enableVariantCls] = useVariants('select', customizeVariant, bordered);
|
||||
const rootCls = useCSSVarCls(prefixCls);
|
||||
const [hashId, cssVarCls] = useStyle(prefixCls, rootCls);
|
||||
const mode = React.useMemo(() => {
|
||||
const {
|
||||
mode: m
|
||||
} = props;
|
||||
if (m === 'combobox') {
|
||||
return undefined;
|
||||
}
|
||||
if (m === SECRET_COMBOBOX_MODE_DO_NOT_USE) {
|
||||
return 'combobox';
|
||||
}
|
||||
return m;
|
||||
}, [props.mode]);
|
||||
const isMultiple = mode === 'multiple' || mode === 'tags';
|
||||
const showSuffixIcon = useShowArrow(props.suffixIcon, props.showArrow);
|
||||
const mergedPopupMatchSelectWidth = popupMatchSelectWidth ?? dropdownMatchSelectWidth ?? contextPopupMatchSelectWidth;
|
||||
const mergedPopupRender = usePopupRender(popupRender || dropdownRender);
|
||||
const mergedOnOpenChange = onOpenChange || onDropdownVisibleChange;
|
||||
// ===================== Form Status =====================
|
||||
const {
|
||||
status: contextStatus,
|
||||
hasFeedback,
|
||||
isFormItemInput,
|
||||
feedbackIcon
|
||||
} = React.useContext(FormItemInputContext);
|
||||
const mergedStatus = getMergedStatus(contextStatus, customStatus);
|
||||
// ===================== Empty =====================
|
||||
let mergedNotFound;
|
||||
if (notFoundContent !== undefined) {
|
||||
mergedNotFound = notFoundContent;
|
||||
} else if (mode === 'combobox') {
|
||||
mergedNotFound = null;
|
||||
} else {
|
||||
mergedNotFound = renderEmpty?.('Select') || /*#__PURE__*/React.createElement(DefaultRenderEmpty, {
|
||||
componentName: "Select"
|
||||
});
|
||||
}
|
||||
// ===================== Icons =====================
|
||||
const {
|
||||
suffixIcon,
|
||||
itemIcon,
|
||||
removeIcon,
|
||||
clearIcon
|
||||
} = useIcons({
|
||||
...rest,
|
||||
multiple: isMultiple,
|
||||
hasFeedback,
|
||||
feedbackIcon,
|
||||
showSuffixIcon,
|
||||
prefixCls,
|
||||
componentName: 'Select'
|
||||
});
|
||||
const mergedAllowClear = allowClear === true ? {
|
||||
clearIcon
|
||||
} : allowClear;
|
||||
const selectProps = omit(rest, ['suffixIcon', 'itemIcon']);
|
||||
const mergedSize = useSize(ctx => customizeSize ?? compactSize ?? ctx);
|
||||
// ===================== Disabled =====================
|
||||
const disabled = React.useContext(DisabledContext);
|
||||
const mergedDisabled = customDisabled ?? disabled;
|
||||
// ========== Merged Props for Semantic ==================
|
||||
const mergedProps = {
|
||||
...props,
|
||||
variant,
|
||||
status: mergedStatus,
|
||||
disabled: mergedDisabled,
|
||||
size: mergedSize
|
||||
};
|
||||
const [mergedClassNames, mergedStyles] = useMergeSemantic([contextClassNames, classNames], [contextStyles, styles], {
|
||||
props: mergedProps
|
||||
}, {
|
||||
popup: {
|
||||
_default: 'root'
|
||||
}
|
||||
});
|
||||
const mergedPopupClassName = clsx(mergedClassNames.popup?.root, popupClassName, dropdownClassName, {
|
||||
[`${prefixCls}-dropdown-${direction}`]: direction === 'rtl'
|
||||
}, rootClassName, cssVarCls, rootCls, hashId);
|
||||
const mergedPopupStyle = {
|
||||
...mergedStyles.popup?.root,
|
||||
...(popupStyle ?? dropdownStyle)
|
||||
};
|
||||
const mergedClassName = clsx({
|
||||
[`${prefixCls}-lg`]: mergedSize === 'large',
|
||||
[`${prefixCls}-sm`]: mergedSize === 'small',
|
||||
[`${prefixCls}-rtl`]: direction === 'rtl',
|
||||
[`${prefixCls}-${variant}`]: enableVariantCls,
|
||||
[`${prefixCls}-in-form-item`]: isFormItemInput
|
||||
}, getStatusClassNames(prefixCls, mergedStatus, hasFeedback), compactItemClassnames, contextClassName, className, mergedClassNames.root, rootClassName, cssVarCls, rootCls, hashId);
|
||||
// ===================== Placement =====================
|
||||
const memoPlacement = React.useMemo(() => {
|
||||
if (placement !== undefined) {
|
||||
return placement;
|
||||
}
|
||||
return direction === 'rtl' ? 'bottomRight' : 'bottomLeft';
|
||||
}, [placement, direction]);
|
||||
// ====================== Warning ======================
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
const warning = devUseWarning('Select');
|
||||
const deprecatedProps = {
|
||||
dropdownMatchSelectWidth: 'popupMatchSelectWidth',
|
||||
dropdownStyle: 'styles.popup.root',
|
||||
dropdownClassName: 'classNames.popup.root',
|
||||
popupClassName: 'classNames.popup.root',
|
||||
dropdownRender: 'popupRender',
|
||||
onDropdownVisibleChange: 'onOpenChange',
|
||||
bordered: 'variant'
|
||||
};
|
||||
Object.entries(deprecatedProps).forEach(([oldProp, newProp]) => {
|
||||
warning.deprecated(!(oldProp in props), oldProp, newProp);
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? warning(!('showArrow' in props), 'deprecated', '`showArrow` is deprecated which will be removed in next major version. It will be a default behavior, you can hide it by setting `suffixIcon` to null.') : void 0;
|
||||
process.env.NODE_ENV !== "production" ? warning(!(typeof maxCount !== 'undefined' && !isMultiple), 'usage', '`maxCount` only works with mode `multiple` or `tags`') : void 0;
|
||||
}
|
||||
// ====================== zIndex =========================
|
||||
const [zIndex] = useZIndex('SelectLike', mergedStyles.popup?.root?.zIndex ?? mergedPopupStyle?.zIndex);
|
||||
// ====================== Render =======================
|
||||
return /*#__PURE__*/React.createElement(RcSelect, {
|
||||
ref: ref,
|
||||
virtual: virtual,
|
||||
classNames: mergedClassNames,
|
||||
styles: mergedStyles,
|
||||
showSearch: showSearch,
|
||||
...selectProps,
|
||||
style: {
|
||||
...mergedStyles.root,
|
||||
...contextStyle,
|
||||
...style
|
||||
},
|
||||
popupMatchSelectWidth: mergedPopupMatchSelectWidth,
|
||||
transitionName: getTransitionName(rootPrefixCls, 'slide-up', transitionName),
|
||||
builtinPlacements: mergedBuiltinPlacements(builtinPlacements, popupOverflow),
|
||||
listHeight: listHeight,
|
||||
listItemHeight: listItemHeight,
|
||||
mode: mode,
|
||||
prefixCls: prefixCls,
|
||||
placement: memoPlacement,
|
||||
direction: direction,
|
||||
prefix: prefix,
|
||||
suffixIcon: suffixIcon,
|
||||
menuItemSelectedIcon: itemIcon,
|
||||
removeIcon: removeIcon,
|
||||
allowClear: mergedAllowClear,
|
||||
notFoundContent: mergedNotFound,
|
||||
className: mergedClassName,
|
||||
getPopupContainer: getPopupContainer || getContextPopupContainer,
|
||||
popupClassName: mergedPopupClassName,
|
||||
disabled: mergedDisabled,
|
||||
popupStyle: {
|
||||
...mergedStyles.popup?.root,
|
||||
...mergedPopupStyle,
|
||||
zIndex
|
||||
},
|
||||
maxCount: isMultiple ? maxCount : undefined,
|
||||
tagRender: isMultiple ? tagRender : undefined,
|
||||
popupRender: mergedPopupRender,
|
||||
onPopupVisibleChange: mergedOnOpenChange
|
||||
});
|
||||
};
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
InternalSelect.displayName = 'Select';
|
||||
}
|
||||
const Select = /*#__PURE__*/React.forwardRef(InternalSelect);
|
||||
// We don't care debug panel
|
||||
/* istanbul ignore next */
|
||||
const PurePanel = genPurePanel(Select, 'popupAlign');
|
||||
Select.SECRET_COMBOBOX_MODE_DO_NOT_USE = SECRET_COMBOBOX_MODE_DO_NOT_USE;
|
||||
Select.Option = Option;
|
||||
Select.OptGroup = OptGroup;
|
||||
Select._InternalPanelDoNotUseOrYouWillBeFired = PurePanel;
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
Select.displayName = 'Select';
|
||||
}
|
||||
export default Select;
|
||||
Reference in New Issue
Block a user