UNPKG

@mui/x-date-pickers

Version:

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

148 lines (147 loc) 4.99 kB
'use client'; import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; const _excluded = ["value", "isLandscape", "onChange", "toolbarFormat", "toolbarPlaceholder", "views", "className", "onViewChange", "view"]; import * as React from 'react'; import clsx from 'clsx'; import PropTypes from 'prop-types'; import Typography from '@mui/material/Typography'; import { styled, useThemeProps } from '@mui/material/styles'; import composeClasses from '@mui/utils/composeClasses'; import { PickersToolbar } from "../internals/components/PickersToolbar.js"; import { usePickersTranslations } from "../hooks/usePickersTranslations.js"; import { useUtils } from "../internals/hooks/useUtils.js"; import { getDatePickerToolbarUtilityClass } from "./datePickerToolbarClasses.js"; import { resolveDateFormat } from "../internals/utils/date-utils.js"; import { jsx as _jsx } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { classes } = ownerState; const slots = { root: ['root'], title: ['title'] }; return composeClasses(slots, getDatePickerToolbarUtilityClass, classes); }; const DatePickerToolbarRoot = styled(PickersToolbar, { name: 'MuiDatePickerToolbar', slot: 'Root', overridesResolver: (_, styles) => styles.root })({}); const DatePickerToolbarTitle = styled(Typography, { name: 'MuiDatePickerToolbar', slot: 'Title', overridesResolver: (_, styles) => styles.title })({ variants: [{ props: { isLandscape: true }, style: { margin: 'auto 16px auto auto' } }] }); /** * Demos: * * - [DatePicker](https://mui.com/x/react-date-pickers/date-picker/) * - [Custom components](https://mui.com/x/react-date-pickers/custom-components/) * * API: * * - [DatePickerToolbar API](https://mui.com/x/api/date-pickers/date-picker-toolbar/) */ export const DatePickerToolbar = /*#__PURE__*/React.forwardRef(function DatePickerToolbar(inProps, ref) { const props = useThemeProps({ props: inProps, name: 'MuiDatePickerToolbar' }); const { value, isLandscape, toolbarFormat, toolbarPlaceholder = '––', views, className } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const utils = useUtils(); const translations = usePickersTranslations(); const classes = useUtilityClasses(props); const dateText = React.useMemo(() => { if (!value) { return toolbarPlaceholder; } const formatFromViews = resolveDateFormat(utils, { format: toolbarFormat, views }, true); return utils.formatByString(value, formatFromViews); }, [value, toolbarFormat, toolbarPlaceholder, utils, views]); const ownerState = props; return /*#__PURE__*/_jsx(DatePickerToolbarRoot, _extends({ ref: ref, toolbarTitle: translations.datePickerToolbarTitle, isLandscape: isLandscape, className: clsx(classes.root, className) }, other, { children: /*#__PURE__*/_jsx(DatePickerToolbarTitle, { variant: "h4", align: isLandscape ? 'left' : 'center', ownerState: ownerState, className: classes.title, children: dateText }) })); }); process.env.NODE_ENV !== "production" ? DatePickerToolbar.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "pnpm proptypes" | // ---------------------------------------------------------------------- /** * Override or extend the styles applied to the component. */ classes: PropTypes.object, 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, value: PropTypes.object, /** * Currently visible picker view. */ view: PropTypes.oneOf(['day', 'month', 'year']).isRequired, /** * Available views. */ views: PropTypes.arrayOf(PropTypes.oneOf(['day', 'month', 'year']).isRequired).isRequired } : void 0;