@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
189 lines (188 loc) • 5.51 kB
JavaScript
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { styled, useThemeProps } from '@mui/material/styles';
import composeClasses from '@mui/utils/composeClasses';
import { pickersLayoutClasses, getPickersLayoutUtilityClass } from "./pickersLayoutClasses.js";
import usePickerLayout from "./usePickerLayout.js";
import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
const useUtilityClasses = ownerState => {
const {
isLandscape,
classes
} = ownerState;
const slots = {
root: ['root', isLandscape && 'landscape'],
contentWrapper: ['contentWrapper']
};
return composeClasses(slots, getPickersLayoutUtilityClass, classes);
};
export const PickersLayoutRoot = styled('div', {
name: 'MuiPickersLayout',
slot: 'Root',
overridesResolver: (props, styles) => styles.root
})({
display: 'grid',
gridAutoColumns: 'max-content auto max-content',
gridAutoRows: 'max-content auto max-content',
[`& .${pickersLayoutClasses.actionBar}`]: {
gridColumn: '1 / 4',
gridRow: 3
},
variants: [{
props: {
isLandscape: true
},
style: {
[`& .${pickersLayoutClasses.toolbar}`]: {
gridColumn: 1,
gridRow: '2 / 3'
},
[`.${pickersLayoutClasses.shortcuts}`]: {
gridColumn: '2 / 4',
gridRow: 1
}
}
}, {
props: {
isLandscape: true,
isRtl: true
},
style: {
[`& .${pickersLayoutClasses.toolbar}`]: {
gridColumn: 3
}
}
}, {
props: {
isLandscape: false
},
style: {
[`& .${pickersLayoutClasses.toolbar}`]: {
gridColumn: '2 / 4',
gridRow: 1
},
[`& .${pickersLayoutClasses.shortcuts}`]: {
gridColumn: 1,
gridRow: '2 / 3'
}
}
}, {
props: {
isLandscape: false,
isRtl: true
},
style: {
[`& .${pickersLayoutClasses.shortcuts}`]: {
gridColumn: 3
}
}
}]
});
export const PickersLayoutContentWrapper = styled('div', {
name: 'MuiPickersLayout',
slot: 'ContentWrapper',
overridesResolver: (props, styles) => styles.contentWrapper
})({
gridColumn: 2,
gridRow: 2,
display: 'flex',
flexDirection: 'column'
});
/**
* Demos:
*
* - [Custom layout](https://mui.com/x/react-date-pickers/custom-layout/)
*
* API:
*
* - [PickersLayout API](https://mui.com/x/api/date-pickers/pickers-layout/)
*/
const PickersLayout = /*#__PURE__*/React.forwardRef(function PickersLayout(inProps, ref) {
const props = useThemeProps({
props: inProps,
name: 'MuiPickersLayout'
});
const {
toolbar,
content,
tabs,
actionBar,
shortcuts
} = usePickerLayout(props);
const {
sx,
className,
isLandscape,
wrapperVariant
} = props;
const classes = useUtilityClasses(props);
return /*#__PURE__*/_jsxs(PickersLayoutRoot, {
ref: ref,
sx: sx,
className: clsx(classes.root, className),
ownerState: props,
children: [isLandscape ? shortcuts : toolbar, isLandscape ? toolbar : shortcuts, /*#__PURE__*/_jsx(PickersLayoutContentWrapper, {
className: classes.contentWrapper,
children: wrapperVariant === 'desktop' ? /*#__PURE__*/_jsxs(React.Fragment, {
children: [content, tabs]
}) : /*#__PURE__*/_jsxs(React.Fragment, {
children: [tabs, content]
})
}), actionBar]
});
});
process.env.NODE_ENV !== "production" ? PickersLayout.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "pnpm proptypes" |
// ----------------------------------------------------------------------
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
className: PropTypes.string,
disabled: PropTypes.bool,
isLandscape: PropTypes.bool.isRequired,
/**
* `true` if the application is in right-to-left direction.
*/
isRtl: PropTypes.bool.isRequired,
isValid: PropTypes.func.isRequired,
onAccept: PropTypes.func.isRequired,
onCancel: PropTypes.func.isRequired,
onChange: PropTypes.func.isRequired,
onClear: PropTypes.func.isRequired,
onClose: PropTypes.func.isRequired,
onDismiss: PropTypes.func.isRequired,
onOpen: PropTypes.func.isRequired,
onSelectShortcut: PropTypes.func.isRequired,
onSetToday: PropTypes.func.isRequired,
onViewChange: PropTypes.func.isRequired,
/**
* Force rendering in particular orientation.
*/
orientation: PropTypes.oneOf(['landscape', 'portrait']),
readOnly: PropTypes.bool,
/**
* The props used for each component slot.
* @default {}
*/
slotProps: PropTypes.object,
/**
* Overridable component slots.
* @default {}
*/
slots: PropTypes.object,
/**
* 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]),
value: PropTypes.any,
view: PropTypes.oneOf(['day', 'hours', 'meridiem', 'minutes', 'month', 'seconds', 'year']),
views: PropTypes.arrayOf(PropTypes.oneOf(['day', 'hours', 'meridiem', 'minutes', 'month', 'seconds', 'year']).isRequired).isRequired,
wrapperVariant: PropTypes.oneOf(['desktop', 'mobile'])
} : void 0;
export { PickersLayout };