352 lines
14 KiB
JavaScript
352 lines
14 KiB
JavaScript
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
||
import _extends from "@babel/runtime/helpers/esm/extends";
|
||
const _excluded = ["ampm", "ampmInClock", "value", "onChange", "view", "isLandscape", "onViewChange", "toolbarFormat", "toolbarPlaceholder", "views", "disabled", "readOnly", "toolbarVariant"];
|
||
import * as React from 'react';
|
||
import PropTypes from 'prop-types';
|
||
import { styled, useThemeProps, useTheme } from '@mui/material/styles';
|
||
import { unstable_composeClasses as composeClasses } from '@mui/utils';
|
||
import { PickersToolbarText } from '../internals/components/PickersToolbarText';
|
||
import { PickersToolbar } from '../internals/components/PickersToolbar';
|
||
import { PickersToolbarButton } from '../internals/components/PickersToolbarButton';
|
||
import { useLocaleText, useUtils } from '../internals/hooks/useUtils';
|
||
import { dateTimePickerToolbarClasses, getDateTimePickerToolbarUtilityClass } from './dateTimePickerToolbarClasses';
|
||
import { useMeridiemMode } from '../internals/hooks/date-helpers-hooks';
|
||
import { MULTI_SECTION_CLOCK_SECTION_WIDTH } from '../internals/constants/dimensions';
|
||
import { formatMeridiem } from '../internals/utils/date-utils';
|
||
import { jsx as _jsx } from "react/jsx-runtime";
|
||
import { jsxs as _jsxs } from "react/jsx-runtime";
|
||
const useUtilityClasses = ownerState => {
|
||
const {
|
||
classes,
|
||
theme,
|
||
isLandscape
|
||
} = ownerState;
|
||
const slots = {
|
||
root: ['root'],
|
||
dateContainer: ['dateContainer'],
|
||
timeContainer: ['timeContainer', theme.direction === 'rtl' && 'timeLabelReverse'],
|
||
timeDigitsContainer: ['timeDigitsContainer', theme.direction === 'rtl' && 'timeLabelReverse'],
|
||
separator: ['separator'],
|
||
ampmSelection: ['ampmSelection', isLandscape && 'ampmLandscape'],
|
||
ampmLabel: ['ampmLabel']
|
||
};
|
||
return composeClasses(slots, getDateTimePickerToolbarUtilityClass, classes);
|
||
};
|
||
const DateTimePickerToolbarRoot = styled(PickersToolbar, {
|
||
name: 'MuiDateTimePickerToolbar',
|
||
slot: 'Root',
|
||
overridesResolver: (props, styles) => styles.root
|
||
})(({
|
||
theme,
|
||
ownerState
|
||
}) => ({
|
||
paddingLeft: ownerState.toolbarVariant === 'desktop' && !ownerState.isLandscape ? 24 : 16,
|
||
paddingRight: ownerState.toolbarVariant === 'desktop' && !ownerState.isLandscape ? 0 : 16,
|
||
borderBottom: ownerState.toolbarVariant === 'desktop' ? `1px solid ${(theme.vars || theme).palette.divider}` : undefined,
|
||
borderRight: ownerState.toolbarVariant === 'desktop' && ownerState.isLandscape ? `1px solid ${(theme.vars || theme).palette.divider}` : undefined,
|
||
justifyContent: 'space-around',
|
||
position: 'relative'
|
||
}));
|
||
DateTimePickerToolbarRoot.propTypes = {
|
||
// ----------------------------- Warning --------------------------------
|
||
// | These PropTypes are generated from the TypeScript type definitions |
|
||
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
||
// ----------------------------------------------------------------------
|
||
as: PropTypes.elementType,
|
||
classes: PropTypes.object,
|
||
className: PropTypes.string,
|
||
isLandscape: PropTypes.bool.isRequired,
|
||
isMobileKeyboardViewOpen: PropTypes.bool,
|
||
landscapeDirection: PropTypes.oneOf(['column', 'row']),
|
||
ownerState: PropTypes.object.isRequired,
|
||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
||
toggleMobileKeyboardView: PropTypes.func,
|
||
toolbarTitle: PropTypes.node,
|
||
viewType: PropTypes.oneOf(['date', 'time'])
|
||
};
|
||
const DateTimePickerToolbarDateContainer = styled('div', {
|
||
name: 'MuiDateTimePickerToolbar',
|
||
slot: 'DateContainer',
|
||
overridesResolver: (props, styles) => styles.dateContainer
|
||
})({
|
||
display: 'flex',
|
||
flexDirection: 'column',
|
||
alignItems: 'flex-start'
|
||
});
|
||
const DateTimePickerToolbarTimeContainer = styled('div', {
|
||
name: 'MuiDateTimePickerToolbar',
|
||
slot: 'TimeContainer',
|
||
overridesResolver: (props, styles) => styles.timeContainer
|
||
})(({
|
||
theme,
|
||
ownerState
|
||
}) => {
|
||
const direction = ownerState.isLandscape && ownerState.toolbarVariant !== 'desktop' ? 'column' : 'row';
|
||
return _extends({
|
||
display: 'flex',
|
||
flexDirection: direction
|
||
}, ownerState.toolbarVariant === 'desktop' && _extends({}, !ownerState.isLandscape && {
|
||
gap: 9,
|
||
marginRight: 4,
|
||
alignSelf: 'flex-end'
|
||
}), theme.direction === 'rtl' && {
|
||
flexDirection: `${direction}-reverse`
|
||
});
|
||
});
|
||
const DateTimePickerToolbarTimeDigitsContainer = styled('div', {
|
||
name: 'MuiDateTimePickerToolbar',
|
||
slot: 'TimeDigitsContainer',
|
||
overridesResolver: (props, styles) => styles.timeDigitsContainer
|
||
})(({
|
||
theme,
|
||
ownerState
|
||
}) => _extends({
|
||
display: 'flex'
|
||
}, ownerState.toolbarVariant === 'desktop' && {
|
||
gap: 1.5
|
||
}, theme.direction === 'rtl' && {
|
||
flexDirection: 'row-reverse'
|
||
}));
|
||
DateTimePickerToolbarTimeContainer.propTypes = {
|
||
// ----------------------------- Warning --------------------------------
|
||
// | These PropTypes are generated from the TypeScript type definitions |
|
||
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
||
// ----------------------------------------------------------------------
|
||
as: PropTypes.elementType,
|
||
ownerState: PropTypes.object.isRequired,
|
||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
||
};
|
||
const DateTimePickerToolbarSeparator = styled(PickersToolbarText, {
|
||
name: 'MuiDateTimePickerToolbar',
|
||
slot: 'Separator',
|
||
overridesResolver: (props, styles) => styles.separator
|
||
})(({
|
||
ownerState
|
||
}) => ({
|
||
margin: ownerState.toolbarVariant === 'desktop' ? 0 : '0 4px 0 2px',
|
||
cursor: 'default'
|
||
}));
|
||
|
||
// Taken from TimePickerToolbar
|
||
const DateTimePickerToolbarAmPmSelection = styled('div', {
|
||
name: 'MuiDateTimePickerToolbar',
|
||
slot: 'AmPmSelection',
|
||
overridesResolver: (props, styles) => [{
|
||
[`.${dateTimePickerToolbarClasses.ampmLabel}`]: styles.ampmLabel
|
||
}, {
|
||
[`&.${dateTimePickerToolbarClasses.ampmLandscape}`]: styles.ampmLandscape
|
||
}, styles.ampmSelection]
|
||
})(({
|
||
ownerState
|
||
}) => _extends({
|
||
display: 'flex',
|
||
flexDirection: 'column',
|
||
marginRight: 'auto',
|
||
marginLeft: 12
|
||
}, ownerState.isLandscape && {
|
||
margin: '4px 0 auto',
|
||
flexDirection: 'row',
|
||
justifyContent: 'space-around',
|
||
width: '100%'
|
||
}, {
|
||
[`& .${dateTimePickerToolbarClasses.ampmLabel}`]: {
|
||
fontSize: 17
|
||
}
|
||
}));
|
||
|
||
/**
|
||
* Demos:
|
||
*
|
||
* - [DateTimePicker](https://mui.com/x/react-date-pickers/date-time-picker/)
|
||
* - [Custom components](https://mui.com/x/react-date-pickers/custom-components/)
|
||
*
|
||
* API:
|
||
*
|
||
* - [DateTimePickerToolbar API](https://mui.com/x/api/date-pickers/date-time-picker-toolbar/)
|
||
*/
|
||
function DateTimePickerToolbar(inProps) {
|
||
const props = useThemeProps({
|
||
props: inProps,
|
||
name: 'MuiDateTimePickerToolbar'
|
||
});
|
||
const {
|
||
ampm,
|
||
ampmInClock,
|
||
value,
|
||
onChange,
|
||
view,
|
||
isLandscape,
|
||
onViewChange,
|
||
toolbarFormat,
|
||
toolbarPlaceholder = '––',
|
||
views,
|
||
disabled,
|
||
readOnly,
|
||
toolbarVariant = 'mobile'
|
||
} = props,
|
||
other = _objectWithoutPropertiesLoose(props, _excluded);
|
||
const ownerState = props;
|
||
const utils = useUtils();
|
||
const {
|
||
meridiemMode,
|
||
handleMeridiemChange
|
||
} = useMeridiemMode(value, ampm, onChange);
|
||
const showAmPmControl = Boolean(ampm && !ampmInClock);
|
||
const isDesktop = toolbarVariant === 'desktop';
|
||
const localeText = useLocaleText();
|
||
const theme = useTheme();
|
||
const classes = useUtilityClasses(_extends({}, ownerState, {
|
||
theme
|
||
}));
|
||
const formatHours = time => ampm ? utils.format(time, 'hours12h') : utils.format(time, 'hours24h');
|
||
const dateText = React.useMemo(() => {
|
||
if (!value) {
|
||
return toolbarPlaceholder;
|
||
}
|
||
if (toolbarFormat) {
|
||
return utils.formatByString(value, toolbarFormat);
|
||
}
|
||
return utils.format(value, 'shortDate');
|
||
}, [value, toolbarFormat, toolbarPlaceholder, utils]);
|
||
return /*#__PURE__*/_jsxs(DateTimePickerToolbarRoot, _extends({
|
||
toolbarTitle: localeText.dateTimePickerToolbarTitle,
|
||
isLandscape: isLandscape,
|
||
className: classes.root
|
||
}, other, {
|
||
ownerState: ownerState,
|
||
children: [/*#__PURE__*/_jsxs(DateTimePickerToolbarDateContainer, {
|
||
className: classes.dateContainer,
|
||
ownerState: ownerState,
|
||
children: [views.includes('year') && /*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
tabIndex: -1,
|
||
variant: "subtitle1",
|
||
onClick: () => onViewChange('year'),
|
||
selected: view === 'year',
|
||
value: value ? utils.format(value, 'year') : '–'
|
||
}), views.includes('day') && /*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
tabIndex: -1,
|
||
variant: isDesktop ? 'h5' : 'h4',
|
||
onClick: () => onViewChange('day'),
|
||
selected: view === 'day',
|
||
value: dateText
|
||
})]
|
||
}), /*#__PURE__*/_jsxs(DateTimePickerToolbarTimeContainer, {
|
||
className: classes.timeContainer,
|
||
ownerState: ownerState,
|
||
children: [/*#__PURE__*/_jsxs(DateTimePickerToolbarTimeDigitsContainer, {
|
||
className: classes.timeDigitsContainer,
|
||
ownerState: ownerState,
|
||
children: [views.includes('hours') && /*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
variant: isDesktop ? 'h5' : 'h3',
|
||
width: isDesktop && !isLandscape ? MULTI_SECTION_CLOCK_SECTION_WIDTH : undefined,
|
||
onClick: () => onViewChange('hours'),
|
||
selected: view === 'hours',
|
||
value: value ? formatHours(value) : '--'
|
||
}), views.includes('minutes') && /*#__PURE__*/_jsxs(React.Fragment, {
|
||
children: [/*#__PURE__*/_jsx(DateTimePickerToolbarSeparator, {
|
||
variant: isDesktop ? 'h5' : 'h3',
|
||
value: ":",
|
||
className: classes.separator,
|
||
ownerState: ownerState
|
||
}), /*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
variant: isDesktop ? 'h5' : 'h3',
|
||
width: isDesktop && !isLandscape ? MULTI_SECTION_CLOCK_SECTION_WIDTH : undefined,
|
||
onClick: () => onViewChange('minutes'),
|
||
selected: view === 'minutes',
|
||
value: value ? utils.format(value, 'minutes') : '--'
|
||
})]
|
||
}), views.includes('seconds') && /*#__PURE__*/_jsxs(React.Fragment, {
|
||
children: [/*#__PURE__*/_jsx(DateTimePickerToolbarSeparator, {
|
||
variant: isDesktop ? 'h5' : 'h3',
|
||
value: ":",
|
||
className: classes.separator,
|
||
ownerState: ownerState
|
||
}), /*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
variant: isDesktop ? 'h5' : 'h3',
|
||
width: isDesktop && !isLandscape ? MULTI_SECTION_CLOCK_SECTION_WIDTH : undefined,
|
||
onClick: () => onViewChange('seconds'),
|
||
selected: view === 'seconds',
|
||
value: value ? utils.format(value, 'seconds') : '--'
|
||
})]
|
||
})]
|
||
}), showAmPmControl && !isDesktop && /*#__PURE__*/_jsxs(DateTimePickerToolbarAmPmSelection, {
|
||
className: classes.ampmSelection,
|
||
ownerState: ownerState,
|
||
children: [/*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
variant: "subtitle2",
|
||
selected: meridiemMode === 'am',
|
||
typographyClassName: classes.ampmLabel,
|
||
value: formatMeridiem(utils, 'am'),
|
||
onClick: readOnly ? undefined : () => handleMeridiemChange('am'),
|
||
disabled: disabled
|
||
}), /*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
variant: "subtitle2",
|
||
selected: meridiemMode === 'pm',
|
||
typographyClassName: classes.ampmLabel,
|
||
value: formatMeridiem(utils, 'pm'),
|
||
onClick: readOnly ? undefined : () => handleMeridiemChange('pm'),
|
||
disabled: disabled
|
||
})]
|
||
}), ampm && isDesktop && /*#__PURE__*/_jsx(PickersToolbarButton, {
|
||
variant: "h5",
|
||
onClick: () => onViewChange('meridiem'),
|
||
selected: view === 'meridiem',
|
||
value: value && meridiemMode ? formatMeridiem(utils, meridiemMode) : '--',
|
||
width: MULTI_SECTION_CLOCK_SECTION_WIDTH
|
||
})]
|
||
})]
|
||
}));
|
||
}
|
||
process.env.NODE_ENV !== "production" ? DateTimePickerToolbar.propTypes = {
|
||
// ----------------------------- Warning --------------------------------
|
||
// | These PropTypes are generated from the TypeScript type definitions |
|
||
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
||
// ----------------------------------------------------------------------
|
||
ampm: PropTypes.bool,
|
||
ampmInClock: PropTypes.bool,
|
||
/**
|
||
* Override or extend the styles applied to the component.
|
||
*/
|
||
classes: PropTypes.object,
|
||
/**
|
||
* className applied to the root component.
|
||
*/
|
||
className: PropTypes.string,
|
||
disabled: PropTypes.bool,
|
||
/**
|
||
* If `true`, show the toolbar even in desktop mode.
|
||
* @default `true` for Desktop, `false` for Mobile.
|
||
*/
|
||
hidden: PropTypes.bool,
|
||
isLandscape: PropTypes.bool.isRequired,
|
||
onChange: PropTypes.func.isRequired,
|
||
/**
|
||
* Callback called when a toolbar is clicked
|
||
* @template TView
|
||
* @param {TView} view The view to open
|
||
*/
|
||
onViewChange: PropTypes.func.isRequired,
|
||
readOnly: PropTypes.bool,
|
||
/**
|
||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||
*/
|
||
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
||
titleId: PropTypes.string,
|
||
/**
|
||
* Toolbar date format.
|
||
*/
|
||
toolbarFormat: PropTypes.string,
|
||
/**
|
||
* Toolbar value placeholder—it is displayed when the value is empty.
|
||
* @default "––"
|
||
*/
|
||
toolbarPlaceholder: PropTypes.node,
|
||
toolbarVariant: PropTypes.oneOf(['desktop', 'mobile']),
|
||
value: PropTypes.any,
|
||
/**
|
||
* Currently visible picker view.
|
||
*/
|
||
view: PropTypes.oneOf(['day', 'hours', 'meridiem', 'minutes', 'month', 'seconds', 'year']).isRequired,
|
||
views: PropTypes.arrayOf(PropTypes.oneOf(['day', 'hours', 'meridiem', 'minutes', 'month', 'seconds', 'year']).isRequired).isRequired
|
||
} : void 0;
|
||
export { DateTimePickerToolbar }; |