-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
TimeInput.tsx
134 lines (117 loc) · 3.45 KB
/
TimeInput.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import cx from 'clsx';
import {
__BaseInputProps,
__InputStylesNames,
BoxProps,
ElementProps,
factory,
Factory,
InputBase,
StylesApiProps,
useProps,
useResolvedStylesApi,
} from '@mantine/core';
import classes from './TimeInput.module.css';
export interface TimeInputProps
extends BoxProps,
__BaseInputProps,
StylesApiProps<TimeInputFactory>,
ElementProps<'input', 'size'> {
/** Determines whether seconds input should be rendered */
withSeconds?: boolean;
/** Minimum possible string time, if withSeconds is true, time should be in format HH:mm:ss, otherwise HH:mm */
minTime?: string;
/** Maximum possible string time, if withSeconds is true, time should be in format HH:mm:ss, otherwise HH:mm */
maxTime?: string;
}
export type TimeInputFactory = Factory<{
props: TimeInputProps;
ref: HTMLInputElement;
stylesNames: __InputStylesNames;
}>;
const defaultProps: Partial<TimeInputProps> = {};
export const TimeInput = factory<TimeInputFactory>((_props, ref) => {
const props = useProps('TimeInput', defaultProps, _props);
const {
classNames,
styles,
unstyled,
vars,
withSeconds,
minTime,
maxTime,
value,
onChange,
...others
} = props;
const { resolvedClassNames, resolvedStyles } = useResolvedStylesApi<TimeInputFactory>({
classNames,
styles,
props,
});
/**
* Check if time is within limits or not
* If the given value is within limits, return 0
* If the given value is greater than the maxTime, return 1
* If the given value is less than the minTime, return -1
*/
const checkIfTimeLimitExceeded = (val: string) => {
if (minTime !== undefined || maxTime !== undefined) {
const [hours, minutes, seconds] = val.split(':').map(Number);
if (minTime) {
const [minHours, minMinutes, minSeconds] = minTime.split(':').map(Number);
if (
hours < minHours ||
(hours === minHours && minutes < minMinutes) ||
(withSeconds && hours === minHours && minutes === minMinutes && seconds < minSeconds)
) {
return -1;
}
}
if (maxTime) {
const [maxHours, maxMinutes, maxSeconds] = maxTime.split(':').map(Number);
if (
hours > maxHours ||
(hours === maxHours && minutes > maxMinutes) ||
(withSeconds && hours === maxHours && minutes === maxMinutes && seconds > maxSeconds)
) {
return 1;
}
}
}
return 0;
};
const onTimeBlur = (event: React.FocusEvent<HTMLInputElement>) => {
props.onBlur?.(event);
if (minTime !== undefined || maxTime !== undefined) {
const val = event.currentTarget.value;
if (val) {
const check = checkIfTimeLimitExceeded(val);
if (check === 1) {
event.currentTarget.value = maxTime!;
props.onChange?.(event);
} else if (check === -1) {
event.currentTarget.value = minTime!;
props.onChange?.(event);
}
}
}
};
return (
<InputBase
classNames={{ ...resolvedClassNames, input: cx(classes.input, resolvedClassNames?.input) }}
styles={resolvedStyles}
unstyled={unstyled}
ref={ref}
value={value}
{...others}
step={withSeconds ? 1 : 60}
onChange={onChange}
onBlur={onTimeBlur}
type="time"
__staticSelector="TimeInput"
/>
);
});
TimeInput.classes = InputBase.classes;
TimeInput.displayName = '@mantine/dates/TimeInput';