@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
46 lines • 1.61 kB
JavaScript
import { createIsAfterIgnoreDatePart } from "../internals/utils/time-utils.js";
import { singleItemValueManager } from "../internals/utils/valueManagers.js";
export const validateTime = ({
adapter,
value,
timezone,
props
}) => {
if (value === null) {
return null;
}
const {
minTime,
maxTime,
minutesStep,
shouldDisableTime,
disableIgnoringDatePartForTimeValidation = false,
disablePast,
disableFuture
} = props;
const now = adapter.utils.date(undefined, timezone);
const isAfter = createIsAfterIgnoreDatePart(disableIgnoringDatePartForTimeValidation, adapter.utils);
switch (true) {
case !adapter.utils.isValid(value):
return 'invalidDate';
case Boolean(minTime && isAfter(minTime, value)):
return 'minTime';
case Boolean(maxTime && isAfter(value, maxTime)):
return 'maxTime';
case Boolean(disableFuture && adapter.utils.isAfter(value, now)):
return 'disableFuture';
case Boolean(disablePast && adapter.utils.isBefore(value, now)):
return 'disablePast';
case Boolean(shouldDisableTime && shouldDisableTime(value, 'hours')):
return 'shouldDisableTime-hours';
case Boolean(shouldDisableTime && shouldDisableTime(value, 'minutes')):
return 'shouldDisableTime-minutes';
case Boolean(shouldDisableTime && shouldDisableTime(value, 'seconds')):
return 'shouldDisableTime-seconds';
case Boolean(minutesStep && adapter.utils.getMinutes(value) % minutesStep !== 0):
return 'minutesStep';
default:
return null;
}
};
validateTime.valueManager = singleItemValueManager;