@material-ui/lab
Version:
Laboratory for new Material-UI modules.
92 lines (87 loc) • 3.14 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
var _ClockIcon, _CalendarIcon, _PenIcon;
import * as React from 'react';
import clsx from 'clsx';
import Grid from '@material-ui/core/Grid';
import Typography from '@material-ui/core/Typography';
import IconButton from '@material-ui/core/IconButton';
import { styled } from '@material-ui/core/styles';
import { generateUtilityClasses } from '@material-ui/unstyled';
import PenIcon from '../svg-icons/Pen';
import CalendarIcon from '../svg-icons/Calendar';
import ClockIcon from '../svg-icons/Clock';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
const classes = generateUtilityClasses('PrivatePickersToolbar', ['root', 'dateTitleContainer']);
const PickersToolbarRoot = styled('div', {
skipSx: true
})(({
theme,
styleProps
}) => _extends({
display: 'flex',
flexDirection: 'column',
alignItems: 'flex-start',
justifyContent: 'space-between',
padding: theme.spacing(2, 3)
}, styleProps.isLandscape && {
height: 'auto',
maxWidth: 160,
padding: 16,
justifyContent: 'flex-start',
flexWrap: 'wrap'
}));
const PickersToolbarGrid = styled(Grid, {
skipSx: true
})({
flex: 1
});
const getViewTypeIcon = viewType => viewType === 'clock' ? _ClockIcon || (_ClockIcon = /*#__PURE__*/_jsx(ClockIcon, {
color: "inherit"
})) : _CalendarIcon || (_CalendarIcon = /*#__PURE__*/_jsx(CalendarIcon, {
color: "inherit"
}));
function defaultGetKeyboardInputSwitchingButtonText(isKeyboardInputOpen, viewType) {
return isKeyboardInputOpen ? `text input view is open, go to ${viewType} view` : `${viewType} view is open, go to text input view`;
}
const PickersToolbar = /*#__PURE__*/React.forwardRef(function PickersToolbar(props, ref) {
const {
children,
className,
getMobileKeyboardInputViewButtonText = defaultGetKeyboardInputSwitchingButtonText,
isLandscape,
isMobileKeyboardViewOpen,
landscapeDirection = 'column',
penIconClassName,
toggleMobileKeyboardView,
toolbarTitle,
viewType = 'calendar'
} = props;
const styleProps = props;
return /*#__PURE__*/_jsxs(PickersToolbarRoot, {
ref: ref,
className: clsx(classes.root, className),
styleProps: styleProps,
children: [/*#__PURE__*/_jsx(Typography, {
color: "text.secondary",
variant: "overline",
children: toolbarTitle
}), /*#__PURE__*/_jsxs(PickersToolbarGrid, {
container: true,
justifyContent: "space-between",
className: classes.dateTitleContainer,
direction: isLandscape ? landscapeDirection : 'row',
alignItems: isLandscape ? 'flex-start' : 'flex-end',
children: [children, /*#__PURE__*/_jsx(IconButton, {
onClick: toggleMobileKeyboardView,
className: penIconClassName,
color: "inherit",
"aria-label": getMobileKeyboardInputViewButtonText(isMobileKeyboardViewOpen, viewType),
children: isMobileKeyboardViewOpen ? getViewTypeIcon(viewType) : _PenIcon || (_PenIcon = /*#__PURE__*/_jsx(PenIcon, {
color: "inherit"
}))
})]
})]
});
});
export default PickersToolbar;