-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathDateField.tsx
More file actions
425 lines (400 loc) · 15.1 KB
/
DateField.tsx
File metadata and controls
425 lines (400 loc) · 15.1 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/*
* Copyright 2022 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
import {AriaDateFieldProps, AriaTimeFieldProps, DateValue, HoverEvents, mergeProps, TimeValue, useDateField, useDateSegment, useFocusRing, useHover, useLocale, useTimeField} from 'react-aria';
import {
ClassNameOrFunction,
ContextValue,
dom,
Provider,
RACValidation,
removeDataAttributes,
RenderProps,
SlotProps,
StyleRenderProps,
useContextProps,
useRenderProps,
useSlot,
useSlottedContext
} from './utils';
import {createCalendar} from '@internationalized/date';
import {DateFieldState, DateSegmentType, DateSegment as IDateSegment, TimeFieldState, useDateFieldState, useTimeFieldState} from 'react-stately';
import {FieldErrorContext} from './FieldError';
import {filterDOMProps, useObjectRef} from '@react-aria/utils';
import {FormContext} from './Form';
import {forwardRefType, GlobalDOMAttributes} from '@react-types/shared';
import {Group, GroupContext} from './Group';
import {HiddenDateInput} from './HiddenDateInput';
import {Input, InputContext} from './Input';
import {LabelContext} from './Label';
import React, {cloneElement, createContext, ForwardedRef, forwardRef, JSX, ReactElement, useContext, useRef} from 'react';
import {TextContext} from './Text';
export interface DateFieldRenderProps {
/**
* State of the date field.
*/
state: DateFieldState,
/**
* Whether the date field is invalid.
* @selector [data-invalid]
*/
isInvalid: boolean,
/**
* Whether the date field is disabled.
* @selector [data-disabled]
*/
isDisabled: boolean,
/**
* Whether the date field is read only.
* @selector [data-readonly]
*/
isReadOnly: boolean,
/**
* Whether the date field is required.
* @selector [data-required]
*/
isRequired: boolean
}
export interface DateFieldProps<T extends DateValue> extends Omit<AriaDateFieldProps<T>, 'label' | 'description' | 'errorMessage' | 'validationState' | 'validationBehavior'>, RACValidation, RenderProps<DateFieldRenderProps>, SlotProps, GlobalDOMAttributes<HTMLDivElement> {
/**
* The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.
* @default 'react-aria-DateField'
*/
className?: ClassNameOrFunction<DateFieldRenderProps>
}
export interface TimeFieldProps<T extends TimeValue> extends Omit<AriaTimeFieldProps<T>, 'label' | 'description' | 'errorMessage' | 'validationState' | 'validationBehavior'>, RACValidation, RenderProps<DateFieldRenderProps>, SlotProps, GlobalDOMAttributes<HTMLDivElement> {
/**
* The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.
* @default 'react-aria-TimeField'
*/
className?: ClassNameOrFunction<DateFieldRenderProps>
}
export const DateFieldContext = createContext<ContextValue<DateFieldProps<any>, HTMLDivElement>>(null);
export const TimeFieldContext = createContext<ContextValue<TimeFieldProps<any>, HTMLDivElement>>(null);
export const DateFieldStateContext = createContext<DateFieldState | null>(null);
export const TimeFieldStateContext = createContext<TimeFieldState | null>(null);
/**
* A date field allows users to enter and edit date and time values using a keyboard.
* Each part of a date value is displayed in an individually editable segment.
*/
export const DateField = /*#__PURE__*/ (forwardRef as forwardRefType)(function DateField<T extends DateValue>(props: DateFieldProps<T>, ref: ForwardedRef<HTMLDivElement>) {
[props, ref] = useContextProps(props, ref, DateFieldContext);
let {validationBehavior: formValidationBehavior} = useSlottedContext(FormContext) || {};
let validationBehavior = props.validationBehavior ?? formValidationBehavior ?? 'native';
let {locale} = useLocale();
let state = useDateFieldState({
...props,
locale,
createCalendar,
validationBehavior
});
let fieldRef = useRef<HTMLDivElement>(null);
let [labelRef, label] = useSlot(
!props['aria-label'] && !props['aria-labelledby']
);
let inputRef = useRef<HTMLInputElement>(null);
let {labelProps, fieldProps, inputProps, descriptionProps, errorMessageProps, ...validation} = useDateField({
...removeDataAttributes(props),
label,
inputRef,
validationBehavior
}, state, fieldRef);
let renderProps = useRenderProps({
...removeDataAttributes(props),
values: {
state,
isInvalid: state.isInvalid,
isDisabled: state.isDisabled,
isReadOnly: state.isReadOnly,
isRequired: props.isRequired || false
},
defaultClassName: 'react-aria-DateField'
});
let DOMProps = filterDOMProps(props, {global: true});
delete DOMProps.id;
return (
<Provider
values={[
[DateFieldStateContext, state],
[GroupContext, {...fieldProps, ref: fieldRef, isInvalid: state.isInvalid, isDisabled: state.isDisabled}],
[InputContext, {...inputProps, ref: inputRef}],
[LabelContext, {...labelProps, ref: labelRef, elementType: 'span'}],
[TextContext, {
slots: {
description: descriptionProps,
errorMessage: errorMessageProps
}
}],
[FieldErrorContext, validation]
]}>
<dom.div
{...DOMProps}
{...renderProps}
ref={ref}
slot={props.slot || undefined}
data-invalid={state.isInvalid || undefined}
data-disabled={state.isDisabled || undefined}
data-readonly={state.isReadOnly || undefined}
data-required={props.isRequired || undefined} />
<HiddenDateInput
autoComplete={props.autoComplete}
name={props.name}
isDisabled={props.isDisabled}
state={state} />
</Provider>
);
});
/**
* A time field allows users to enter and edit time values using a keyboard.
* Each part of a time value is displayed in an individually editable segment.
*/
export const TimeField = /*#__PURE__*/ (forwardRef as forwardRefType)(function TimeField<T extends TimeValue>(props: TimeFieldProps<T>, ref: ForwardedRef<HTMLDivElement>) {
[props, ref] = useContextProps(props, ref, TimeFieldContext);
let {validationBehavior: formValidationBehavior} = useSlottedContext(FormContext) || {};
let validationBehavior = props.validationBehavior ?? formValidationBehavior ?? 'native';
let {locale} = useLocale();
let state = useTimeFieldState({
...props,
locale,
validationBehavior
});
let fieldRef = useRef<HTMLDivElement>(null);
let [labelRef, label] = useSlot(
!props['aria-label'] && !props['aria-labelledby']
);
let inputRef = useRef<HTMLInputElement>(null);
let {labelProps, fieldProps, inputProps, descriptionProps, errorMessageProps, ...validation} = useTimeField({
...removeDataAttributes(props),
label,
inputRef,
validationBehavior
}, state, fieldRef);
let renderProps = useRenderProps({
...props,
values: {
state,
isInvalid: state.isInvalid,
isDisabled: state.isDisabled,
isReadOnly: state.isReadOnly,
isRequired: props.isRequired || false
},
defaultClassName: 'react-aria-TimeField'
});
let DOMProps = filterDOMProps(props, {global: true});
delete DOMProps.id;
return (
<Provider
values={[
[TimeFieldStateContext, state],
[GroupContext, {...fieldProps, ref: fieldRef, isInvalid: state.isInvalid, isDisabled: state.isDisabled}],
[InputContext, {...inputProps, ref: inputRef}],
[LabelContext, {...labelProps, ref: labelRef, elementType: 'span'}],
[TextContext, {
slots: {
description: descriptionProps,
errorMessage: errorMessageProps
}
}],
[FieldErrorContext, validation]
]}>
<dom.div
{...DOMProps}
{...renderProps}
ref={ref}
slot={props.slot || undefined}
data-invalid={state.isInvalid || undefined}
data-disabled={state.isDisabled || undefined}
data-readonly={state.isReadOnly || undefined}
data-required={props.isRequired || undefined} />
</Provider>
);
});
export interface DateInputRenderProps {
/**
* Whether the date input is currently hovered with a mouse.
* @selector [data-hovered]
*/
isHovered: boolean,
/**
* Whether an element within the date input is focused, either via a mouse or keyboard.
* @selector [data-focus-within]
*/
isFocusWithin: boolean,
/**
* Whether an element within the date input is keyboard focused.
* @selector [data-focus-visible]
*/
isFocusVisible: boolean,
/**
* Whether the date input is disabled.
* @selector [data-disabled]
*/
isDisabled: boolean,
/**
* Whether the date input is invalid.
* @selector [data-invalid]
*/
isInvalid: boolean
}
export interface DateInputProps extends SlotProps, StyleRenderProps<DateInputRenderProps>, GlobalDOMAttributes<HTMLDivElement> {
/**
* The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.
* @default 'react-aria-DateInput'
*/
className?: ClassNameOrFunction<DateInputRenderProps>,
children: (segment: IDateSegment) => ReactElement
}
/**
* A date input groups the editable date segments within a date field.
*/
export const DateInput = /*#__PURE__*/ (forwardRef as forwardRefType)(function DateInput(props: DateInputProps, ref: ForwardedRef<HTMLDivElement>): JSX.Element {
// If state is provided by DateField/TimeField, just render.
// Otherwise (e.g. in DatePicker), we need to call hooks and create state ourselves.
let dateFieldState = useContext(DateFieldStateContext);
let timeFieldState = useContext(TimeFieldStateContext);
return dateFieldState || timeFieldState
? <DateInputInner {...props} ref={ref} />
: <DateInputStandalone {...props} ref={ref} />;
});
const DateInputStandalone = forwardRef((props: DateInputProps, ref: ForwardedRef<HTMLDivElement>) => {
let [dateFieldProps, fieldRef] = useContextProps({slot: props.slot} as DateFieldProps<any>, ref, DateFieldContext);
let {locale} = useLocale();
let state = useDateFieldState({
...dateFieldProps,
locale,
createCalendar
});
let inputRef = useRef<HTMLInputElement>(null);
let {fieldProps, inputProps} = useDateField({...dateFieldProps, inputRef}, state, fieldRef);
return (
<Provider
values={[
[DateFieldStateContext, state],
[InputContext, {...inputProps, ref: inputRef}],
[GroupContext, {...fieldProps, ref: fieldRef, isInvalid: state.isInvalid, isDisabled: state.isDisabled}]
]}>
<DateInputInner {...props} />
</Provider>
);
});
const DateInputInner = forwardRef((props: DateInputProps, ref: ForwardedRef<HTMLDivElement>) => {
let {className, children} = props;
let dateFieldState = useContext(DateFieldStateContext);
let timeFieldState = useContext(TimeFieldStateContext);
let state = dateFieldState ?? timeFieldState!;
return (
<>
<Group
{...props}
ref={ref}
slot={props.slot || undefined}
className={className ?? 'react-aria-DateInput'}
isReadOnly={state.isReadOnly}
isInvalid={state.isInvalid}
isDisabled={state.isDisabled}>
{state.segments.map((segment, i) => cloneElement(children(segment), {key: i}))}
</Group>
<Input className="" />
</>
);
});
export interface DateSegmentRenderProps extends Omit<IDateSegment, 'isEditable'> {
/**
* Whether the segment is currently hovered with a mouse.
* @selector [data-hovered]
*/
isHovered: boolean,
/**
* Whether the segment is focused, either via a mouse or keyboard.
* @selector [data-focused]
*/
isFocused: boolean,
/**
* Whether the segment is keyboard focused.
* @selector [data-focus-visible]
*/
isFocusVisible: boolean,
/**
* Whether the value is a placeholder.
* @selector [data-placeholder]
*/
isPlaceholder: boolean,
/**
* Whether the segment is read only.
* @selector [data-readonly]
*/
isReadOnly: boolean,
/**
* Whether the date field is disabled.
* @selector [data-disabled]
*/
isDisabled: boolean,
/**
* Whether the date field is in an invalid state.
* @selector [data-invalid]
*/
isInvalid: boolean,
/**
* The type of segment. Values include `literal`, `year`, `month`, `day`, etc.
* @selector [data-type="..."]
*/
type: DateSegmentType
}
export interface DateSegmentProps extends RenderProps<DateSegmentRenderProps, 'span'>, HoverEvents, GlobalDOMAttributes<HTMLSpanElement> {
/**
* The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.
* @default 'react-aria-DateSegment'
*/
className?: ClassNameOrFunction<DateSegmentRenderProps>,
segment: IDateSegment
}
/**
* A date segment displays an individual unit of a date and time, and allows users to edit
* the value by typing or using the arrow keys to increment and decrement.
*/
export const DateSegment = /*#__PURE__*/ (forwardRef as forwardRefType)(function DateSegment({segment, ...otherProps}: DateSegmentProps, ref: ForwardedRef<HTMLSpanElement>) {
let dateFieldState = useContext(DateFieldStateContext);
let timeFieldState = useContext(TimeFieldStateContext);
let state = dateFieldState ?? timeFieldState!;
let domRef = useObjectRef(ref);
let {segmentProps} = useDateSegment(segment, state, domRef);
let {focusProps, isFocused, isFocusVisible} = useFocusRing();
let {hoverProps, isHovered} = useHover({...otherProps, isDisabled: state.isDisabled || segment.type === 'literal'});
let renderProps = useRenderProps({
...otherProps,
values: {
...segment,
isReadOnly: state.isReadOnly,
isInvalid: state.isInvalid,
isDisabled: state.isDisabled,
isHovered,
isFocused,
isFocusVisible
},
defaultChildren: segment.text,
defaultClassName: 'react-aria-DateSegment'
});
return (
<dom.span
{...mergeProps(filterDOMProps(otherProps, {global: true}), segmentProps, focusProps, hoverProps)}
{...renderProps}
style={segmentProps.style}
ref={domRef}
data-placeholder={segment.isPlaceholder || undefined}
data-invalid={state.isInvalid || undefined}
data-readonly={state.isReadOnly || undefined}
data-disabled={state.isDisabled || undefined}
data-type={segment.type}
data-hovered={isHovered || undefined}
data-focused={isFocused || undefined}
data-focus-visible={isFocusVisible || undefined} />
);
});