import _extends from "@babel/runtime/helpers/esm/extends"; import * as React from 'react'; import clsx from 'clsx'; import IconButton from '@mui/material/IconButton'; import Typography from '@mui/material/Typography'; import { styled, useThemeProps } from '@mui/material/styles'; import { unstable_useEnhancedEffect as useEnhancedEffect, unstable_composeClasses as composeClasses } from '@mui/utils'; import { ClockPointer } from './ClockPointer'; import { useUtils } from '../internals/hooks/useUtils'; import { WrapperVariantContext } from '../internals/components/wrappers/WrapperVariantContext'; import { getHours, getMinutes } from './shared'; import { getClockUtilityClass } from './clockClasses'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; const useUtilityClasses = ownerState => { const { classes } = ownerState; const slots = { root: ['root'], clock: ['clock'], wrapper: ['wrapper'], squareMask: ['squareMask'], pin: ['pin'], amButton: ['amButton'], pmButton: ['pmButton'] }; return composeClasses(slots, getClockUtilityClass, classes); }; const ClockRoot = styled('div', { name: 'MuiClock', slot: 'Root', overridesResolver: (_, styles) => styles.root })(({ theme }) => ({ display: 'flex', justifyContent: 'center', alignItems: 'center', margin: theme.spacing(2) })); const ClockClock = styled('div', { name: 'MuiClock', slot: 'Clock', overridesResolver: (_, styles) => styles.clock })({ backgroundColor: 'rgba(0,0,0,.07)', borderRadius: '50%', height: 220, width: 220, flexShrink: 0, position: 'relative', pointerEvents: 'none' }); const ClockWrapper = styled('div', { name: 'MuiClock', slot: 'Wrapper', overridesResolver: (_, styles) => styles.wrapper })({ '&:focus': { outline: 'none' } }); const ClockSquareMask = styled('div', { name: 'MuiClock', slot: 'SquareMask', overridesResolver: (_, styles) => styles.squareMask })(({ ownerState }) => _extends({ width: '100%', height: '100%', position: 'absolute', pointerEvents: 'auto', outline: 0, // Disable scroll capabilities. touchAction: 'none', userSelect: 'none' }, ownerState.disabled ? {} : { '@media (pointer: fine)': { cursor: 'pointer', borderRadius: '50%' }, '&:active': { cursor: 'move' } })); const ClockPin = styled('div', { name: 'MuiClock', slot: 'Pin', overridesResolver: (_, styles) => styles.pin })(({ theme }) => ({ width: 6, height: 6, borderRadius: '50%', backgroundColor: theme.palette.primary.main, position: 'absolute', top: '50%', left: '50%', transform: 'translate(-50%, -50%)' })); const ClockAmButton = styled(IconButton, { name: 'MuiClock', slot: 'AmButton', overridesResolver: (_, styles) => styles.amButton })(({ theme, ownerState }) => _extends({ zIndex: 1, position: 'absolute', bottom: ownerState.ampmInClock ? 64 : 8, left: 8 }, ownerState.meridiemMode === 'am' && { backgroundColor: theme.palette.primary.main, color: theme.palette.primary.contrastText, '&:hover': { backgroundColor: theme.palette.primary.light } })); const ClockPmButton = styled(IconButton, { name: 'MuiClock', slot: 'PmButton', overridesResolver: (_, styles) => styles.pmButton })(({ theme, ownerState }) => _extends({ zIndex: 1, position: 'absolute', bottom: ownerState.ampmInClock ? 64 : 8, right: 8 }, ownerState.meridiemMode === 'pm' && { backgroundColor: theme.palette.primary.main, color: theme.palette.primary.contrastText, '&:hover': { backgroundColor: theme.palette.primary.light } })); /** * @ignore - internal component. */ export function Clock(inProps) { const props = useThemeProps({ props: inProps, name: 'MuiClock' }); const { ampm, ampmInClock, autoFocus, children, date, getClockLabelText, handleMeridiemChange, isTimeDisabled, meridiemMode, minutesStep = 1, onChange, selectedId, type, value, disabled, readOnly, className } = props; const ownerState = props; const utils = useUtils(); const wrapperVariant = React.useContext(WrapperVariantContext); const isMoving = React.useRef(false); const classes = useUtilityClasses(ownerState); const isSelectedTimeDisabled = isTimeDisabled(value, type); const isPointerInner = !ampm && type === 'hours' && (value < 1 || value > 12); const handleValueChange = (newValue, isFinish) => { if (disabled || readOnly) { return; } if (isTimeDisabled(newValue, type)) { return; } onChange(newValue, isFinish); }; const setTime = (event, isFinish) => { let { offsetX, offsetY } = event; if (offsetX === undefined) { const rect = event.target.getBoundingClientRect(); offsetX = event.changedTouches[0].clientX - rect.left; offsetY = event.changedTouches[0].clientY - rect.top; } const newSelectedValue = type === 'seconds' || type === 'minutes' ? getMinutes(offsetX, offsetY, minutesStep) : getHours(offsetX, offsetY, Boolean(ampm)); handleValueChange(newSelectedValue, isFinish); }; const handleTouchMove = event => { isMoving.current = true; setTime(event, 'shallow'); }; const handleTouchEnd = event => { if (isMoving.current) { setTime(event, 'finish'); isMoving.current = false; } }; const handleMouseMove = event => { // event.buttons & PRIMARY_MOUSE_BUTTON if (event.buttons > 0) { setTime(event.nativeEvent, 'shallow'); } }; const handleMouseUp = event => { if (isMoving.current) { isMoving.current = false; } setTime(event.nativeEvent, 'finish'); }; const hasSelected = React.useMemo(() => { if (type === 'hours') { return true; } return value % 5 === 0; }, [type, value]); const keyboardControlStep = type === 'minutes' ? minutesStep : 1; const listboxRef = React.useRef(null); // Since this is rendered when a Popper is opened we can't use passive effects. // Focusing in passive effects in Popper causes scroll jump. useEnhancedEffect(() => { if (autoFocus) { // The ref not being resolved would be a bug in MUI. listboxRef.current.focus(); } }, [autoFocus]); const handleKeyDown = event => { // TODO: Why this early exit? if (isMoving.current) { return; } switch (event.key) { case 'Home': // annulate both hours and minutes handleValueChange(0, 'partial'); event.preventDefault(); break; case 'End': handleValueChange(type === 'minutes' ? 59 : 23, 'partial'); event.preventDefault(); break; case 'ArrowUp': handleValueChange(value + keyboardControlStep, 'partial'); event.preventDefault(); break; case 'ArrowDown': handleValueChange(value - keyboardControlStep, 'partial'); event.preventDefault(); break; default: // do nothing } }; return /*#__PURE__*/_jsxs(ClockRoot, { className: clsx(className, classes.root), children: [/*#__PURE__*/_jsxs(ClockClock, { className: classes.clock, children: [/*#__PURE__*/_jsx(ClockSquareMask, { onTouchMove: handleTouchMove, onTouchEnd: handleTouchEnd, onMouseUp: handleMouseUp, onMouseMove: handleMouseMove, ownerState: { disabled }, className: classes.squareMask }), !isSelectedTimeDisabled && /*#__PURE__*/_jsxs(React.Fragment, { children: [/*#__PURE__*/_jsx(ClockPin, { className: classes.pin }), date && /*#__PURE__*/_jsx(ClockPointer, { type: type, value: value, isInner: isPointerInner, hasSelected: hasSelected })] }), /*#__PURE__*/_jsx(ClockWrapper, { "aria-activedescendant": selectedId, "aria-label": getClockLabelText(type, date, utils), ref: listboxRef, role: "listbox", onKeyDown: handleKeyDown, tabIndex: 0, className: classes.wrapper, children: children })] }), ampm && (wrapperVariant === 'desktop' || ampmInClock) && /*#__PURE__*/_jsxs(React.Fragment, { children: [/*#__PURE__*/_jsx(ClockAmButton, { onClick: readOnly ? undefined : () => handleMeridiemChange('am'), disabled: disabled || meridiemMode === null, ownerState: ownerState, className: classes.amButton, children: /*#__PURE__*/_jsx(Typography, { variant: "caption", children: "AM" }) }), /*#__PURE__*/_jsx(ClockPmButton, { disabled: disabled || meridiemMode === null, onClick: readOnly ? undefined : () => handleMeridiemChange('pm'), ownerState: ownerState, className: classes.pmButton, children: /*#__PURE__*/_jsx(Typography, { variant: "caption", children: "PM" }) })] })] }); }