You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
326 lines
11 KiB
JavaScript
326 lines
11 KiB
JavaScript
'use client';
|
|
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
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"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { unstable_useForkRef as useForkRef } from '@mui/utils';
|
|
import { useSelect } from '../useSelect';
|
|
import { useSlotProps } from '../utils';
|
|
import { Popup } from '../Unstable_Popup/Popup';
|
|
import { unstable_composeClasses as composeClasses } from '../composeClasses';
|
|
import { getSelectUtilityClass } from './selectClasses';
|
|
import { defaultOptionStringifier } from '../useSelect/defaultOptionStringifier';
|
|
import { useClassNamesOverride } from '../utils/ClassNameConfigurator';
|
|
import { SelectProvider } from '../useSelect/SelectProvider';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
function defaultRenderValue(selectedOptions) {
|
|
var _selectedOptions$labe;
|
|
if (Array.isArray(selectedOptions)) {
|
|
return /*#__PURE__*/_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 composeClasses(slots, useClassNamesOverride(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 = /*#__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,
|
|
renderValue: renderValueProp,
|
|
placeholder,
|
|
slotProps = {},
|
|
slots = {},
|
|
value: valueProp
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(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 = useForkRef(forwardedRef, buttonRef, handleButtonRefChange);
|
|
React.useEffect(() => {
|
|
if (autoFocus) {
|
|
buttonRef.current.focus();
|
|
}
|
|
}, [autoFocus]);
|
|
const {
|
|
buttonActive,
|
|
buttonFocusVisible,
|
|
contextValue,
|
|
disabled,
|
|
getButtonProps,
|
|
getListboxProps,
|
|
getHiddenInputProps,
|
|
getOptionMetadata,
|
|
value,
|
|
open
|
|
} = 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 = _extends({}, props, {
|
|
active: buttonActive,
|
|
defaultListboxOpen,
|
|
disabled,
|
|
focusVisible: buttonFocusVisible,
|
|
open,
|
|
multiple,
|
|
renderValue,
|
|
value
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
const buttonProps = useSlotProps({
|
|
elementType: Button,
|
|
getSlotProps: getButtonProps,
|
|
externalSlotProps: slotProps.root,
|
|
externalForwardedProps: other,
|
|
ownerState,
|
|
className: classes.root
|
|
});
|
|
const listboxProps = useSlotProps({
|
|
elementType: ListboxRoot,
|
|
getSlotProps: getListboxProps,
|
|
externalSlotProps: slotProps.listbox,
|
|
additionalProps: {
|
|
ref: listboxRef
|
|
},
|
|
ownerState,
|
|
className: classes.listbox
|
|
});
|
|
const popupProps = 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__*/_jsxs(React.Fragment, {
|
|
children: [/*#__PURE__*/_jsx(Button, _extends({}, 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__*/_jsx("span", {
|
|
className: "notranslate",
|
|
children: "\u200B"
|
|
}))
|
|
})), buttonDefined && /*#__PURE__*/_jsx(Popup, _extends({
|
|
slots: {
|
|
root: PopupComponent
|
|
}
|
|
}, popupProps, {
|
|
children: /*#__PURE__*/_jsx(ListboxRoot, _extends({}, listboxProps, {
|
|
children: /*#__PURE__*/_jsx(SelectProvider, {
|
|
value: contextValue,
|
|
children: children
|
|
})
|
|
}))
|
|
})), /*#__PURE__*/_jsx("input", _extends({}, 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.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.string,
|
|
/**
|
|
* If `true`, the select element is focused during the first mount
|
|
* @default false
|
|
*/
|
|
autoFocus: PropTypes.bool,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* If `true`, the select will be initially open.
|
|
* @default false
|
|
*/
|
|
defaultListboxOpen: PropTypes.bool,
|
|
/**
|
|
* The default selected value. Use when the component is not controlled.
|
|
*/
|
|
defaultValue: PropTypes.any,
|
|
/**
|
|
* If `true`, the select is disabled.
|
|
* @default false
|
|
*/
|
|
disabled: PropTypes.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.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.func,
|
|
/**
|
|
* `id` attribute of the listbox element.
|
|
*/
|
|
listboxId: PropTypes.string,
|
|
/**
|
|
* Controls the open state of the select's listbox.
|
|
* @default undefined
|
|
*/
|
|
listboxOpen: PropTypes.bool,
|
|
/**
|
|
* If `true`, selecting multiple values is allowed.
|
|
* This affects the type of the `value`, `defaultValue`, and `onChange` props.
|
|
*
|
|
* @default false
|
|
*/
|
|
multiple: PropTypes.bool,
|
|
/**
|
|
* Name of the element. For example used by the server to identify the fields in form submits.
|
|
*/
|
|
name: PropTypes.string,
|
|
/**
|
|
* Callback fired when an option is selected.
|
|
*/
|
|
onChange: PropTypes.func,
|
|
/**
|
|
* Callback fired when the component requests to be opened.
|
|
* Use in controlled mode (see listboxOpen).
|
|
*/
|
|
onListboxOpenChange: PropTypes.func,
|
|
/**
|
|
* Text to show when there is no selected value.
|
|
*/
|
|
placeholder: PropTypes.node,
|
|
/**
|
|
* Function that customizes the rendering of the selected value.
|
|
*/
|
|
renderValue: PropTypes.func,
|
|
/**
|
|
* If `true`, the Select cannot be empty when submitting form.
|
|
* @default false
|
|
*/
|
|
required: PropTypes.bool,
|
|
/**
|
|
* The props used for each slot inside the Input.
|
|
* @default {}
|
|
*/
|
|
slotProps: PropTypes /* @typescript-to-proptypes-ignore */.shape({
|
|
listbox: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
popup: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
}),
|
|
/**
|
|
* The components used for each slot inside the Select.
|
|
* Either a string to use a HTML element or a component.
|
|
* @default {}
|
|
*/
|
|
slots: PropTypes /* @typescript-to-proptypes-ignore */.shape({
|
|
listbox: PropTypes.elementType,
|
|
popup: PropTypes.elementType,
|
|
root: PropTypes.elementType
|
|
}),
|
|
/**
|
|
* The selected value.
|
|
* Set to `null` to deselect all options.
|
|
*/
|
|
value: PropTypes.any
|
|
} : void 0;
|
|
export { Select }; |