332 lines
12 KiB
JavaScript
332 lines
12 KiB
JavaScript
|
"use strict";
|
||
|
'use client';
|
||
|
|
||
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.Select = void 0;
|
||
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
||
|
var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
|
||
|
var React = _interopRequireWildcard(require("react"));
|
||
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
||
|
var _utils = require("@mui/utils");
|
||
|
var _useSelect = require("../useSelect");
|
||
|
var _utils2 = require("../utils");
|
||
|
var _Popup = require("../Unstable_Popup/Popup");
|
||
|
var _composeClasses = require("../composeClasses");
|
||
|
var _selectClasses = require("./selectClasses");
|
||
|
var _defaultOptionStringifier = require("../useSelect/defaultOptionStringifier");
|
||
|
var _ClassNameConfigurator = require("../utils/ClassNameConfigurator");
|
||
|
var _SelectProvider = require("../useSelect/SelectProvider");
|
||
|
var _jsxRuntime = require("react/jsx-runtime");
|
||
|
var _span;
|
||
|
const _excluded = ["areOptionsEqual", "autoComplete", "autoFocus", "children", "defaultValue", "defaultListboxOpen", "disabled", "getSerializedValue", "listboxId", "listboxOpen", "multiple", "name", "required", "onChange", "onListboxOpenChange", "getOptionAsString", "renderValue", "placeholder", "slotProps", "slots", "value"];
|
||
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
||
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
||
|
function defaultRenderValue(selectedOptions) {
|
||
|
var _selectedOptions$labe;
|
||
|
if (Array.isArray(selectedOptions)) {
|
||
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)(React.Fragment, {
|
||
|
children: selectedOptions.map(o => o.label).join(', ')
|
||
|
});
|
||
|
}
|
||
|
return (_selectedOptions$labe = selectedOptions == null ? void 0 : selectedOptions.label) != null ? _selectedOptions$labe : null;
|
||
|
}
|
||
|
function useUtilityClasses(ownerState) {
|
||
|
const {
|
||
|
active,
|
||
|
disabled,
|
||
|
open,
|
||
|
focusVisible
|
||
|
} = ownerState;
|
||
|
const slots = {
|
||
|
root: ['root', disabled && 'disabled', focusVisible && 'focusVisible', active && 'active', open && 'expanded'],
|
||
|
listbox: ['listbox', disabled && 'disabled'],
|
||
|
popup: ['popup']
|
||
|
};
|
||
|
return (0, _composeClasses.unstable_composeClasses)(slots, (0, _ClassNameConfigurator.useClassNamesOverride)(_selectClasses.getSelectUtilityClass));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* The foundation for building custom-styled select components.
|
||
|
*
|
||
|
* Demos:
|
||
|
*
|
||
|
* - [Select](https://mui.com/base-ui/react-select/)
|
||
|
*
|
||
|
* API:
|
||
|
*
|
||
|
* - [Select API](https://mui.com/base-ui/react-select/components-api/#select)
|
||
|
*/
|
||
|
const Select = exports.Select = /*#__PURE__*/React.forwardRef(function Select(props, forwardedRef) {
|
||
|
var _slots$root, _slots$listbox, _slots$popup, _ref, _renderValue;
|
||
|
const {
|
||
|
areOptionsEqual,
|
||
|
autoComplete,
|
||
|
autoFocus,
|
||
|
children,
|
||
|
defaultValue,
|
||
|
defaultListboxOpen = false,
|
||
|
disabled: disabledProp,
|
||
|
getSerializedValue,
|
||
|
listboxId,
|
||
|
listboxOpen: listboxOpenProp,
|
||
|
multiple = false,
|
||
|
name,
|
||
|
required = false,
|
||
|
onChange,
|
||
|
onListboxOpenChange,
|
||
|
getOptionAsString = _defaultOptionStringifier.defaultOptionStringifier,
|
||
|
renderValue: renderValueProp,
|
||
|
placeholder,
|
||
|
slotProps = {},
|
||
|
slots = {},
|
||
|
value: valueProp
|
||
|
} = props,
|
||
|
other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
|
||
|
const renderValue = renderValueProp != null ? renderValueProp : defaultRenderValue;
|
||
|
const [buttonDefined, setButtonDefined] = React.useState(false);
|
||
|
const buttonRef = React.useRef(null);
|
||
|
const listboxRef = React.useRef(null);
|
||
|
const Button = (_slots$root = slots.root) != null ? _slots$root : 'button';
|
||
|
const ListboxRoot = (_slots$listbox = slots.listbox) != null ? _slots$listbox : 'ul';
|
||
|
const PopupComponent = (_slots$popup = slots.popup) != null ? _slots$popup : 'div';
|
||
|
const handleButtonRefChange = React.useCallback(element => {
|
||
|
setButtonDefined(element != null);
|
||
|
}, []);
|
||
|
const handleButtonRef = (0, _utils.unstable_useForkRef)(forwardedRef, buttonRef, handleButtonRefChange);
|
||
|
React.useEffect(() => {
|
||
|
if (autoFocus) {
|
||
|
buttonRef.current.focus();
|
||
|
}
|
||
|
}, [autoFocus]);
|
||
|
const {
|
||
|
buttonActive,
|
||
|
buttonFocusVisible,
|
||
|
contextValue,
|
||
|
disabled,
|
||
|
getButtonProps,
|
||
|
getListboxProps,
|
||
|
getHiddenInputProps,
|
||
|
getOptionMetadata,
|
||
|
value,
|
||
|
open
|
||
|
} = (0, _useSelect.useSelect)({
|
||
|
name,
|
||
|
required,
|
||
|
getSerializedValue,
|
||
|
areOptionsEqual,
|
||
|
buttonRef: handleButtonRef,
|
||
|
defaultOpen: defaultListboxOpen,
|
||
|
defaultValue,
|
||
|
disabled: disabledProp,
|
||
|
listboxId,
|
||
|
multiple,
|
||
|
open: listboxOpenProp,
|
||
|
onChange,
|
||
|
onOpenChange: onListboxOpenChange,
|
||
|
getOptionAsString,
|
||
|
value: valueProp,
|
||
|
componentName: 'Select'
|
||
|
});
|
||
|
const ownerState = (0, _extends2.default)({}, props, {
|
||
|
active: buttonActive,
|
||
|
defaultListboxOpen,
|
||
|
disabled,
|
||
|
focusVisible: buttonFocusVisible,
|
||
|
open,
|
||
|
multiple,
|
||
|
renderValue,
|
||
|
value
|
||
|
});
|
||
|
const classes = useUtilityClasses(ownerState);
|
||
|
const buttonProps = (0, _utils2.useSlotProps)({
|
||
|
elementType: Button,
|
||
|
getSlotProps: getButtonProps,
|
||
|
externalSlotProps: slotProps.root,
|
||
|
externalForwardedProps: other,
|
||
|
ownerState,
|
||
|
className: classes.root
|
||
|
});
|
||
|
const listboxProps = (0, _utils2.useSlotProps)({
|
||
|
elementType: ListboxRoot,
|
||
|
getSlotProps: getListboxProps,
|
||
|
externalSlotProps: slotProps.listbox,
|
||
|
additionalProps: {
|
||
|
ref: listboxRef
|
||
|
},
|
||
|
ownerState,
|
||
|
className: classes.listbox
|
||
|
});
|
||
|
const popupProps = (0, _utils2.useSlotProps)({
|
||
|
elementType: PopupComponent,
|
||
|
externalSlotProps: slotProps.popup,
|
||
|
additionalProps: {
|
||
|
anchor: buttonRef.current,
|
||
|
keepMounted: true,
|
||
|
open,
|
||
|
placement: 'bottom-start',
|
||
|
role: undefined
|
||
|
},
|
||
|
ownerState,
|
||
|
className: classes.popup
|
||
|
});
|
||
|
let selectedOptionsMetadata;
|
||
|
if (multiple) {
|
||
|
selectedOptionsMetadata = value.map(v => getOptionMetadata(v)).filter(o => o !== undefined);
|
||
|
} else {
|
||
|
var _getOptionMetadata;
|
||
|
selectedOptionsMetadata = (_getOptionMetadata = getOptionMetadata(value)) != null ? _getOptionMetadata : null;
|
||
|
}
|
||
|
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
|
||
|
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(Button, (0, _extends2.default)({}, buttonProps, {
|
||
|
children: (_ref = (_renderValue = renderValue(selectedOptionsMetadata)) != null ? _renderValue : placeholder) != null ? _ref : // fall back to a zero-width space to prevent layout shift
|
||
|
// from https://github.com/mui/material-ui/pull/24563
|
||
|
_span || (_span = /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
||
|
className: "notranslate",
|
||
|
children: "\u200B"
|
||
|
}))
|
||
|
})), buttonDefined && /*#__PURE__*/(0, _jsxRuntime.jsx)(_Popup.Popup, (0, _extends2.default)({
|
||
|
slots: {
|
||
|
root: PopupComponent
|
||
|
}
|
||
|
}, popupProps, {
|
||
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(ListboxRoot, (0, _extends2.default)({}, listboxProps, {
|
||
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_SelectProvider.SelectProvider, {
|
||
|
value: contextValue,
|
||
|
children: children
|
||
|
})
|
||
|
}))
|
||
|
})), /*#__PURE__*/(0, _jsxRuntime.jsx)("input", (0, _extends2.default)({}, getHiddenInputProps(), {
|
||
|
autoComplete: autoComplete
|
||
|
}))]
|
||
|
});
|
||
|
});
|
||
|
process.env.NODE_ENV !== "production" ? Select.propTypes /* remove-proptypes */ = {
|
||
|
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||
|
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||
|
// │ To update them, edit the TypeScript types and run `pnpm proptypes`. │
|
||
|
// └─────────────────────────────────────────────────────────────────────┘
|
||
|
/**
|
||
|
* A function used to determine if two options' values are equal.
|
||
|
* By default, reference equality is used.
|
||
|
*
|
||
|
* There is a performance impact when using the `areOptionsEqual` prop (proportional to the number of options).
|
||
|
* Therefore, it's recommented to use the default reference equality comparison whenever possible.
|
||
|
*/
|
||
|
areOptionsEqual: _propTypes.default.func,
|
||
|
/**
|
||
|
* This prop helps users to fill forms faster, especially on mobile devices.
|
||
|
* The name can be confusing, as it's more like an autofill.
|
||
|
* You can learn more about it [following the specification](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill).
|
||
|
*/
|
||
|
autoComplete: _propTypes.default.string,
|
||
|
/**
|
||
|
* If `true`, the select element is focused during the first mount
|
||
|
* @default false
|
||
|
*/
|
||
|
autoFocus: _propTypes.default.bool,
|
||
|
/**
|
||
|
* @ignore
|
||
|
*/
|
||
|
children: _propTypes.default.node,
|
||
|
/**
|
||
|
* @ignore
|
||
|
*/
|
||
|
className: _propTypes.default.string,
|
||
|
/**
|
||
|
* If `true`, the select will be initially open.
|
||
|
* @default false
|
||
|
*/
|
||
|
defaultListboxOpen: _propTypes.default.bool,
|
||
|
/**
|
||
|
* The default selected value. Use when the component is not controlled.
|
||
|
*/
|
||
|
defaultValue: _propTypes.default.any,
|
||
|
/**
|
||
|
* If `true`, the select is disabled.
|
||
|
* @default false
|
||
|
*/
|
||
|
disabled: _propTypes.default.bool,
|
||
|
/**
|
||
|
* A function used to convert the option label to a string.
|
||
|
* It's useful when labels are elements and need to be converted to plain text
|
||
|
* to enable navigation using character keys on a keyboard.
|
||
|
*
|
||
|
* @default defaultOptionStringifier
|
||
|
*/
|
||
|
getOptionAsString: _propTypes.default.func,
|
||
|
/**
|
||
|
* A function to convert the currently selected value to a string.
|
||
|
* Used to set a value of a hidden input associated with the select,
|
||
|
* so that the selected value can be posted with a form.
|
||
|
*/
|
||
|
getSerializedValue: _propTypes.default.func,
|
||
|
/**
|
||
|
* `id` attribute of the listbox element.
|
||
|
*/
|
||
|
listboxId: _propTypes.default.string,
|
||
|
/**
|
||
|
* Controls the open state of the select's listbox.
|
||
|
* @default undefined
|
||
|
*/
|
||
|
listboxOpen: _propTypes.default.bool,
|
||
|
/**
|
||
|
* If `true`, selecting multiple values is allowed.
|
||
|
* This affects the type of the `value`, `defaultValue`, and `onChange` props.
|
||
|
*
|
||
|
* @default false
|
||
|
*/
|
||
|
multiple: _propTypes.default.bool,
|
||
|
/**
|
||
|
* Name of the element. For example used by the server to identify the fields in form submits.
|
||
|
*/
|
||
|
name: _propTypes.default.string,
|
||
|
/**
|
||
|
* Callback fired when an option is selected.
|
||
|
*/
|
||
|
onChange: _propTypes.default.func,
|
||
|
/**
|
||
|
* Callback fired when the component requests to be opened.
|
||
|
* Use in controlled mode (see listboxOpen).
|
||
|
*/
|
||
|
onListboxOpenChange: _propTypes.default.func,
|
||
|
/**
|
||
|
* Text to show when there is no selected value.
|
||
|
*/
|
||
|
placeholder: _propTypes.default.node,
|
||
|
/**
|
||
|
* Function that customizes the rendering of the selected value.
|
||
|
*/
|
||
|
renderValue: _propTypes.default.func,
|
||
|
/**
|
||
|
* If `true`, the Select cannot be empty when submitting form.
|
||
|
* @default false
|
||
|
*/
|
||
|
required: _propTypes.default.bool,
|
||
|
/**
|
||
|
* The props used for each slot inside the Input.
|
||
|
* @default {}
|
||
|
*/
|
||
|
slotProps: _propTypes.default /* @typescript-to-proptypes-ignore */.shape({
|
||
|
listbox: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]),
|
||
|
popup: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object]),
|
||
|
root: _propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object])
|
||
|
}),
|
||
|
/**
|
||
|
* The components used for each slot inside the Select.
|
||
|
* Either a string to use a HTML element or a component.
|
||
|
* @default {}
|
||
|
*/
|
||
|
slots: _propTypes.default /* @typescript-to-proptypes-ignore */.shape({
|
||
|
listbox: _propTypes.default.elementType,
|
||
|
popup: _propTypes.default.elementType,
|
||
|
root: _propTypes.default.elementType
|
||
|
}),
|
||
|
/**
|
||
|
* The selected value.
|
||
|
* Set to `null` to deselect all options.
|
||
|
*/
|
||
|
value: _propTypes.default.any
|
||
|
} : void 0;
|