UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

501 lines (500 loc) 20.3 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.MultiSectionDigitalClock = void 0; var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose")); var React = _interopRequireWildcard(require("react")); var _clsx = _interopRequireDefault(require("clsx")); var _propTypes = _interopRequireDefault(require("prop-types")); var _styles = require("@mui/material/styles"); var _useEventCallback = _interopRequireDefault(require("@mui/utils/useEventCallback")); var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses")); var _useUtils = require("../internals/hooks/useUtils"); var _timeUtils = require("../internals/utils/time-utils"); var _useViews = require("../internals/hooks/useViews"); var _dateHelpersHooks = require("../internals/hooks/date-helpers-hooks"); var _PickerViewRoot = require("../internals/components/PickerViewRoot"); var _multiSectionDigitalClockClasses = require("./multiSectionDigitalClockClasses"); var _MultiSectionDigitalClockSection = require("./MultiSectionDigitalClockSection"); var _MultiSectionDigitalClock = require("./MultiSectionDigitalClock.utils"); var _useValueWithTimezone = require("../internals/hooks/useValueWithTimezone"); var _valueManagers = require("../internals/utils/valueManagers"); var _useClockReferenceDate = require("../internals/hooks/useClockReferenceDate"); var _dateUtils = require("../internals/utils/date-utils"); var _jsxRuntime = require("react/jsx-runtime"); const _excluded = ["ampm", "timeSteps", "autoFocus", "slots", "slotProps", "value", "defaultValue", "referenceDate", "disableIgnoringDatePartForTimeValidation", "maxTime", "minTime", "disableFuture", "disablePast", "minutesStep", "shouldDisableTime", "onChange", "view", "views", "openTo", "onViewChange", "focusedView", "onFocusedViewChange", "className", "disabled", "readOnly", "skipDisabled", "timezone"]; 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 && {}.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; } const useUtilityClasses = ownerState => { const { classes } = ownerState; const slots = { root: ['root'] }; return (0, _composeClasses.default)(slots, _multiSectionDigitalClockClasses.getMultiSectionDigitalClockUtilityClass, classes); }; const MultiSectionDigitalClockRoot = (0, _styles.styled)(_PickerViewRoot.PickerViewRoot, { name: 'MuiMultiSectionDigitalClock', slot: 'Root', overridesResolver: (_, styles) => styles.root })(({ theme }) => ({ display: 'flex', flexDirection: 'row', width: '100%', borderBottom: `1px solid ${(theme.vars || theme).palette.divider}` })); /** * Demos: * * - [TimePicker](https://mui.com/x/react-date-pickers/time-picker/) * - [DigitalClock](https://mui.com/x/react-date-pickers/digital-clock/) * * API: * * - [MultiSectionDigitalClock API](https://mui.com/x/api/date-pickers/multi-section-digital-clock/) */ const MultiSectionDigitalClock = exports.MultiSectionDigitalClock = /*#__PURE__*/React.forwardRef(function MultiSectionDigitalClock(inProps, ref) { const utils = (0, _useUtils.useUtils)(); const props = (0, _styles.useThemeProps)({ props: inProps, name: 'MuiMultiSectionDigitalClock' }); const { ampm = utils.is12HourCycleInCurrentLocale(), timeSteps: inTimeSteps, autoFocus, slots, slotProps, value: valueProp, defaultValue, referenceDate: referenceDateProp, disableIgnoringDatePartForTimeValidation = false, maxTime, minTime, disableFuture, disablePast, minutesStep = 1, shouldDisableTime, onChange, view: inView, views: inViews = ['hours', 'minutes'], openTo, onViewChange, focusedView: inFocusedView, onFocusedViewChange, className, disabled, readOnly, skipDisabled = false, timezone: timezoneProp } = props, other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded); const { value, handleValueChange: handleRawValueChange, timezone } = (0, _useValueWithTimezone.useControlledValueWithTimezone)({ name: 'MultiSectionDigitalClock', timezone: timezoneProp, value: valueProp, defaultValue, onChange, valueManager: _valueManagers.singleItemValueManager }); const localeText = (0, _useUtils.useLocaleText)(); const now = (0, _useUtils.useNow)(timezone); const timeSteps = React.useMemo(() => (0, _extends2.default)({ hours: 1, minutes: 5, seconds: 5 }, inTimeSteps), [inTimeSteps]); const valueOrReferenceDate = (0, _useClockReferenceDate.useClockReferenceDate)({ value, referenceDate: referenceDateProp, utils, props, timezone }); const handleValueChange = (0, _useEventCallback.default)((newValue, selectionState, selectedView) => handleRawValueChange(newValue, selectionState, selectedView)); const views = React.useMemo(() => { if (!ampm || !inViews.includes('hours')) { return inViews; } return inViews.includes('meridiem') ? inViews : [...inViews, 'meridiem']; }, [ampm, inViews]); const { view, setValueAndGoToNextView, focusedView } = (0, _useViews.useViews)({ view: inView, views, openTo, onViewChange, onChange: handleValueChange, focusedView: inFocusedView, onFocusedViewChange }); const handleMeridiemValueChange = (0, _useEventCallback.default)(newValue => { setValueAndGoToNextView(newValue, 'finish', 'meridiem'); }); const { meridiemMode, handleMeridiemChange } = (0, _dateHelpersHooks.useMeridiemMode)(valueOrReferenceDate, ampm, handleMeridiemValueChange, 'finish'); const isTimeDisabled = React.useCallback((rawValue, viewType) => { const isAfter = (0, _timeUtils.createIsAfterIgnoreDatePart)(disableIgnoringDatePartForTimeValidation, utils); const shouldCheckPastEnd = viewType === 'hours' || viewType === 'minutes' && views.includes('seconds'); const containsValidTime = ({ start, end }) => { if (minTime && isAfter(minTime, end)) { return false; } if (maxTime && isAfter(start, maxTime)) { return false; } if (disableFuture && isAfter(start, now)) { return false; } if (disablePast && isAfter(now, shouldCheckPastEnd ? end : start)) { return false; } return true; }; const isValidValue = (timeValue, step = 1) => { if (timeValue % step !== 0) { return false; } if (shouldDisableTime) { switch (viewType) { case 'hours': return !shouldDisableTime(utils.setHours(valueOrReferenceDate, timeValue), 'hours'); case 'minutes': return !shouldDisableTime(utils.setMinutes(valueOrReferenceDate, timeValue), 'minutes'); case 'seconds': return !shouldDisableTime(utils.setSeconds(valueOrReferenceDate, timeValue), 'seconds'); default: return false; } } return true; }; switch (viewType) { case 'hours': { const valueWithMeridiem = (0, _timeUtils.convertValueToMeridiem)(rawValue, meridiemMode, ampm); const dateWithNewHours = utils.setHours(valueOrReferenceDate, valueWithMeridiem); const start = utils.setSeconds(utils.setMinutes(dateWithNewHours, 0), 0); const end = utils.setSeconds(utils.setMinutes(dateWithNewHours, 59), 59); return !containsValidTime({ start, end }) || !isValidValue(valueWithMeridiem); } case 'minutes': { const dateWithNewMinutes = utils.setMinutes(valueOrReferenceDate, rawValue); const start = utils.setSeconds(dateWithNewMinutes, 0); const end = utils.setSeconds(dateWithNewMinutes, 59); return !containsValidTime({ start, end }) || !isValidValue(rawValue, minutesStep); } case 'seconds': { const dateWithNewSeconds = utils.setSeconds(valueOrReferenceDate, rawValue); const start = dateWithNewSeconds; const end = dateWithNewSeconds; return !containsValidTime({ start, end }) || !isValidValue(rawValue); } default: throw new Error('not supported'); } }, [ampm, valueOrReferenceDate, disableIgnoringDatePartForTimeValidation, maxTime, meridiemMode, minTime, minutesStep, shouldDisableTime, utils, disableFuture, disablePast, now, views]); const buildViewProps = React.useCallback(viewToBuild => { switch (viewToBuild) { case 'hours': { return { onChange: hours => { const valueWithMeridiem = (0, _timeUtils.convertValueToMeridiem)(hours, meridiemMode, ampm); setValueAndGoToNextView(utils.setHours(valueOrReferenceDate, valueWithMeridiem), 'finish', 'hours'); }, items: (0, _MultiSectionDigitalClock.getHourSectionOptions)({ now, value, ampm, utils, isDisabled: hours => isTimeDisabled(hours, 'hours'), timeStep: timeSteps.hours, resolveAriaLabel: localeText.hoursClockNumberText, valueOrReferenceDate }) }; } case 'minutes': { return { onChange: minutes => { setValueAndGoToNextView(utils.setMinutes(valueOrReferenceDate, minutes), 'finish', 'minutes'); }, items: (0, _MultiSectionDigitalClock.getTimeSectionOptions)({ value: utils.getMinutes(valueOrReferenceDate), utils, isDisabled: minutes => isTimeDisabled(minutes, 'minutes'), resolveLabel: minutes => utils.format(utils.setMinutes(now, minutes), 'minutes'), timeStep: timeSteps.minutes, hasValue: !!value, resolveAriaLabel: localeText.minutesClockNumberText }) }; } case 'seconds': { return { onChange: seconds => { setValueAndGoToNextView(utils.setSeconds(valueOrReferenceDate, seconds), 'finish', 'seconds'); }, items: (0, _MultiSectionDigitalClock.getTimeSectionOptions)({ value: utils.getSeconds(valueOrReferenceDate), utils, isDisabled: seconds => isTimeDisabled(seconds, 'seconds'), resolveLabel: seconds => utils.format(utils.setSeconds(now, seconds), 'seconds'), timeStep: timeSteps.seconds, hasValue: !!value, resolveAriaLabel: localeText.secondsClockNumberText }) }; } case 'meridiem': { const amLabel = (0, _dateUtils.formatMeridiem)(utils, 'am'); const pmLabel = (0, _dateUtils.formatMeridiem)(utils, 'pm'); return { onChange: handleMeridiemChange, items: [{ value: 'am', label: amLabel, isSelected: () => !!value && meridiemMode === 'am', isFocused: () => !!valueOrReferenceDate && meridiemMode === 'am', ariaLabel: amLabel }, { value: 'pm', label: pmLabel, isSelected: () => !!value && meridiemMode === 'pm', isFocused: () => !!valueOrReferenceDate && meridiemMode === 'pm', ariaLabel: pmLabel }] }; } default: throw new Error(`Unknown view: ${viewToBuild} found.`); } }, [now, value, ampm, utils, timeSteps.hours, timeSteps.minutes, timeSteps.seconds, localeText.hoursClockNumberText, localeText.minutesClockNumberText, localeText.secondsClockNumberText, meridiemMode, setValueAndGoToNextView, valueOrReferenceDate, isTimeDisabled, handleMeridiemChange]); const viewTimeOptions = React.useMemo(() => { return views.reduce((result, currentView) => { return (0, _extends2.default)({}, result, { [currentView]: buildViewProps(currentView) }); }, {}); }, [views, buildViewProps]); const ownerState = props; const classes = useUtilityClasses(ownerState); return /*#__PURE__*/(0, _jsxRuntime.jsx)(MultiSectionDigitalClockRoot, (0, _extends2.default)({ ref: ref, className: (0, _clsx.default)(classes.root, className), ownerState: ownerState, role: "group" }, other, { children: Object.entries(viewTimeOptions).map(([timeView, viewOptions]) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_MultiSectionDigitalClockSection.MultiSectionDigitalClockSection, { items: viewOptions.items, onChange: viewOptions.onChange, active: view === timeView, autoFocus: autoFocus ?? focusedView === timeView, disabled: disabled, readOnly: readOnly, slots: slots, slotProps: slotProps, skipDisabled: skipDisabled, "aria-label": localeText.selectViewText(timeView) }, timeView)) })); }); process.env.NODE_ENV !== "production" ? MultiSectionDigitalClock.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * 12h/24h view for hour selection clock. * @default utils.is12HourCycleInCurrentLocale() */ ampm: _propTypes.default.bool, /** * If `true`, the main element is focused during the first mount. * This main element is: * - the element chosen by the visible view if any (i.e: the selected day on the `day` view). * - the `input` element if there is a field rendered. */ autoFocus: _propTypes.default.bool, /** * Override or extend the styles applied to the component. */ classes: _propTypes.default.object, className: _propTypes.default.string, /** * The default selected value. * Used when the component is not controlled. */ defaultValue: _propTypes.default.object, /** * If `true`, the picker views and text field are disabled. * @default false */ disabled: _propTypes.default.bool, /** * If `true`, disable values after the current date for date components, time for time components and both for date time components. * @default false */ disableFuture: _propTypes.default.bool, /** * Do not ignore date part when validating min/max time. * @default false */ disableIgnoringDatePartForTimeValidation: _propTypes.default.bool, /** * If `true`, disable values before the current date for date components, time for time components and both for date time components. * @default false */ disablePast: _propTypes.default.bool, /** * Controlled focused view. */ focusedView: _propTypes.default.oneOf(['hours', 'meridiem', 'minutes', 'seconds']), /** * Maximal selectable time. * The date part of the object will be ignored unless `props.disableIgnoringDatePartForTimeValidation === true`. */ maxTime: _propTypes.default.object, /** * Minimal selectable time. * The date part of the object will be ignored unless `props.disableIgnoringDatePartForTimeValidation === true`. */ minTime: _propTypes.default.object, /** * Step over minutes. * @default 1 */ minutesStep: _propTypes.default.number, /** * Callback fired when the value changes. * @template TValue The value type. Will be either the same type as `value` or `null`. Can be in `[start, end]` format in case of range value. * @template TView The view type. Will be one of date or time views. * @param {TValue} value The new value. * @param {PickerSelectionState | undefined} selectionState Indicates if the date selection is complete. * @param {TView | undefined} selectedView Indicates the view in which the selection has been made. */ onChange: _propTypes.default.func, /** * Callback fired on focused view change. * @template TView * @param {TView} view The new view to focus or not. * @param {boolean} hasFocus `true` if the view should be focused. */ onFocusedViewChange: _propTypes.default.func, /** * Callback fired on view change. * @template TView * @param {TView} view The new view. */ onViewChange: _propTypes.default.func, /** * The default visible view. * Used when the component view is not controlled. * Must be a valid option from `views` list. */ openTo: _propTypes.default.oneOf(['hours', 'meridiem', 'minutes', 'seconds']), /** * If `true`, the picker views and text field are read-only. * @default false */ readOnly: _propTypes.default.bool, /** * The date used to generate the new value when both `value` and `defaultValue` are empty. * @default The closest valid time using the validation props, except callbacks such as `shouldDisableTime`. */ referenceDate: _propTypes.default.object, /** * Disable specific time. * @template TDate * @param {TDate} value The value to check. * @param {TimeView} view The clock type of the timeValue. * @returns {boolean} If `true` the time will be disabled. */ shouldDisableTime: _propTypes.default.func, /** * If `true`, disabled digital clock items will not be rendered. * @default false */ skipDisabled: _propTypes.default.bool, /** * The props used for each component slot. * @default {} */ slotProps: _propTypes.default.object, /** * Overrideable component slots. * @default {} */ slots: _propTypes.default.object, /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]), /** * The time steps between two time unit options. * For example, if `timeStep.minutes = 8`, then the available minute options will be `[0, 8, 16, 24, 32, 40, 48, 56]`. * @default{ hours: 1, minutes: 5, seconds: 5 } */ timeSteps: _propTypes.default.shape({ hours: _propTypes.default.number, minutes: _propTypes.default.number, seconds: _propTypes.default.number }), /** * Choose which timezone to use for the value. * Example: "default", "system", "UTC", "America/New_York". * If you pass values from other timezones to some props, they will be converted to this timezone before being used. * @see See the {@link https://mui.com/x/react-date-pickers/timezone/ timezones documentation} for more details. * @default The timezone of the `value` or `defaultValue` prop is defined, 'default' otherwise. */ timezone: _propTypes.default.string, /** * The selected value. * Used when the component is controlled. */ value: _propTypes.default.object, /** * The visible view. * Used when the component view is controlled. * Must be a valid option from `views` list. */ view: _propTypes.default.oneOf(['hours', 'meridiem', 'minutes', 'seconds']), /** * Available views. * @default ['hours', 'minutes'] */ views: _propTypes.default.arrayOf(_propTypes.default.oneOf(['hours', 'meridiem', 'minutes', 'seconds']).isRequired) } : void 0;