123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- "use client";
- var __rest = this && this.__rest || function (s, e) {
- var t = {};
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
- // TODO: 4.0 - codemod should help to change `filterOption` to support node props.
- import * as React from 'react';
- import cls from 'classnames';
- import RcSelect, { OptGroup, Option } from 'rc-select';
- import omit from "rc-util/es/omit";
- import { useZIndex } from '../_util/hooks/useZIndex';
- 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) => {
- var _a, _b, _c, _d, _e;
- 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,
- dropdownStyle,
- transitionName,
- tagRender,
- maxCount,
- prefix,
- dropdownRender,
- popupRender,
- onDropdownVisibleChange,
- onOpenChange,
- styles,
- classNames
- } = props,
- rest = __rest(props, ["prefixCls", "bordered", "className", "rootClassName", "getPopupContainer", "popupClassName", "dropdownClassName", "listHeight", "placement", "listItemHeight", "size", "disabled", "notFoundContent", "status", "builtinPlacements", "dropdownMatchSelectWidth", "popupMatchSelectWidth", "direction", "style", "allowClear", "variant", "dropdownStyle", "transitionName", "tagRender", "maxCount", "prefix", "dropdownRender", "popupRender", "onDropdownVisibleChange", "onOpenChange", "styles", "classNames"]);
- 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 !== null && customListItemHeight !== void 0 ? customListItemHeight : token === null || token === void 0 ? void 0 : token.controlHeight;
- const prefixCls = getPrefixCls('select', customizePrefixCls);
- const rootPrefixCls = getPrefixCls();
- const direction = propDirection !== null && propDirection !== void 0 ? propDirection : contextDirection;
- const {
- compactSize,
- compactItemClassnames
- } = useCompactItemContext(prefixCls, direction);
- const [variant, enableVariantCls] = useVariants('select', customizeVariant, bordered);
- const rootCls = useCSSVarCls(prefixCls);
- const [wrapCSSVar, 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 = (_a = popupMatchSelectWidth !== null && popupMatchSelectWidth !== void 0 ? popupMatchSelectWidth : dropdownMatchSelectWidth) !== null && _a !== void 0 ? _a : contextPopupMatchSelectWidth;
- const mergedPopupStyle = ((_b = styles === null || styles === void 0 ? void 0 : styles.popup) === null || _b === void 0 ? void 0 : _b.root) || ((_c = contextStyles.popup) === null || _c === void 0 ? void 0 : _c.root) || dropdownStyle;
- 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 === null || renderEmpty === void 0 ? void 0 : renderEmpty('Select')) || /*#__PURE__*/React.createElement(DefaultRenderEmpty, {
- componentName: "Select"
- });
- }
- // ===================== Icons =====================
- const {
- suffixIcon,
- itemIcon,
- removeIcon,
- clearIcon
- } = useIcons(Object.assign(Object.assign({}, rest), {
- multiple: isMultiple,
- hasFeedback,
- feedbackIcon,
- showSuffixIcon,
- prefixCls,
- componentName: 'Select'
- }));
- const mergedAllowClear = allowClear === true ? {
- clearIcon
- } : allowClear;
- const selectProps = omit(rest, ['suffixIcon', 'itemIcon']);
- const mergedPopupClassName = cls(((_d = classNames === null || classNames === void 0 ? void 0 : classNames.popup) === null || _d === void 0 ? void 0 : _d.root) || ((_e = contextClassNames === null || contextClassNames === void 0 ? void 0 : contextClassNames.popup) === null || _e === void 0 ? void 0 : _e.root) || popupClassName || dropdownClassName, {
- [`${prefixCls}-dropdown-${direction}`]: direction === 'rtl'
- }, rootClassName, contextClassNames.root, classNames === null || classNames === void 0 ? void 0 : classNames.root, cssVarCls, rootCls, hashId);
- const mergedSize = useSize(ctx => {
- var _a;
- return (_a = customizeSize !== null && customizeSize !== void 0 ? customizeSize : compactSize) !== null && _a !== void 0 ? _a : ctx;
- });
- // ===================== Disabled =====================
- const disabled = React.useContext(DisabledContext);
- const mergedDisabled = customDisabled !== null && customDisabled !== void 0 ? customDisabled : disabled;
- const mergedClassName = cls({
- [`${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, contextClassNames.root, classNames === null || classNames === void 0 ? void 0 : classNames.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', mergedPopupStyle === null || mergedPopupStyle === void 0 ? void 0 : mergedPopupStyle.zIndex);
- // ====================== Render =======================
- return wrapCSSVar(/*#__PURE__*/React.createElement(RcSelect, Object.assign({
- ref: ref,
- virtual: virtual,
- showSearch: showSearch
- }, selectProps, {
- style: Object.assign(Object.assign(Object.assign(Object.assign({}, contextStyles.root), styles === null || styles === void 0 ? void 0 : styles.root), contextStyle), style),
- dropdownMatchSelectWidth: 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,
- dropdownClassName: mergedPopupClassName,
- disabled: mergedDisabled,
- dropdownStyle: Object.assign(Object.assign({}, mergedPopupStyle), {
- zIndex
- }),
- maxCount: isMultiple ? maxCount : undefined,
- tagRender: isMultiple ? tagRender : undefined,
- dropdownRender: mergedPopupRender,
- onDropdownVisibleChange: 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, 'dropdownAlign');
- 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;
|