36 lines
1.5 KiB
JavaScript
36 lines
1.5 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import { singleItemFieldValueManager, singleItemValueManager } from '../internals/utils/valueManagers';
|
|
import { useField } from '../internals/hooks/useField';
|
|
import { validateTime } from '../internals/utils/validation/validateTime';
|
|
import { useUtils } from '../internals/hooks/useUtils';
|
|
import { splitFieldInternalAndForwardedProps } from '../internals/utils/fields';
|
|
const useDefaultizedTimeField = props => {
|
|
var _props$ampm, _props$disablePast, _props$disableFuture, _props$format;
|
|
const utils = useUtils();
|
|
const ampm = (_props$ampm = props.ampm) != null ? _props$ampm : utils.is12HourCycleInCurrentLocale();
|
|
const defaultFormat = ampm ? utils.formats.fullTime12h : utils.formats.fullTime24h;
|
|
return _extends({}, props, {
|
|
disablePast: (_props$disablePast = props.disablePast) != null ? _props$disablePast : false,
|
|
disableFuture: (_props$disableFuture = props.disableFuture) != null ? _props$disableFuture : false,
|
|
format: (_props$format = props.format) != null ? _props$format : defaultFormat
|
|
});
|
|
};
|
|
export const useTimeField = ({
|
|
props: inProps,
|
|
inputRef
|
|
}) => {
|
|
const props = useDefaultizedTimeField(inProps);
|
|
const {
|
|
forwardedProps,
|
|
internalProps
|
|
} = splitFieldInternalAndForwardedProps(props, 'time');
|
|
return useField({
|
|
inputRef,
|
|
forwardedProps,
|
|
internalProps,
|
|
valueManager: singleItemValueManager,
|
|
fieldValueManager: singleItemFieldValueManager,
|
|
validator: validateTime,
|
|
valueType: 'time'
|
|
});
|
|
}; |