@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
90 lines (89 loc) • 3.26 kB
JavaScript
'use client';
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["onAccept", "onClear", "onCancel", "onSetToday", "actions"];
import * as React from 'react';
import PropTypes from 'prop-types';
import Button from '@mui/material/Button';
import DialogActions from '@mui/material/DialogActions';
import { usePickersTranslations } from "../hooks/usePickersTranslations.js";
import { jsx as _jsx } from "react/jsx-runtime";
/**
* Demos:
*
* - [Custom slots and subcomponents](https://mui.com/x/react-date-pickers/custom-components/)
* - [Custom layout](https://mui.com/x/react-date-pickers/custom-layout/)
*
* API:
*
* - [PickersActionBar API](https://mui.com/x/api/date-pickers/pickers-action-bar/)
*/
function PickersActionBar(props) {
const {
onAccept,
onClear,
onCancel,
onSetToday,
actions
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const translations = usePickersTranslations();
if (actions == null || actions.length === 0) {
return null;
}
const buttons = actions?.map(actionType => {
switch (actionType) {
case 'clear':
return /*#__PURE__*/_jsx(Button, {
onClick: onClear,
children: translations.clearButtonLabel
}, actionType);
case 'cancel':
return /*#__PURE__*/_jsx(Button, {
onClick: onCancel,
children: translations.cancelButtonLabel
}, actionType);
case 'accept':
return /*#__PURE__*/_jsx(Button, {
onClick: onAccept,
children: translations.okButtonLabel
}, actionType);
case 'today':
return /*#__PURE__*/_jsx(Button, {
onClick: onSetToday,
children: translations.todayButtonLabel
}, actionType);
default:
return null;
}
});
return /*#__PURE__*/_jsx(DialogActions, _extends({}, other, {
children: buttons
}));
}
process.env.NODE_ENV !== "production" ? PickersActionBar.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "pnpm proptypes" |
// ----------------------------------------------------------------------
/**
* Ordered array of actions to display.
* If empty, does not display that action bar.
* @default `['cancel', 'accept']` for mobile and `[]` for desktop
*/
actions: PropTypes.arrayOf(PropTypes.oneOf(['accept', 'cancel', 'clear', 'today']).isRequired),
/**
* If `true`, the actions do not have additional margin.
* @default false
*/
disableSpacing: PropTypes.bool,
onAccept: PropTypes.func.isRequired,
onCancel: PropTypes.func.isRequired,
onClear: PropTypes.func.isRequired,
onSetToday: PropTypes.func.isRequired,
/**
* 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])
} : void 0;
export { PickersActionBar };