-
Notifications
You must be signed in to change notification settings - Fork 362
Expand file tree
/
Copy pathTextField.tsx
More file actions
498 lines (478 loc) 路 15.7 KB
/
Copy pathTextField.tsx
File metadata and controls
498 lines (478 loc) 路 15.7 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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
import cx from "classnames";
import React, { type ChangeEventHandler, forwardRef, useCallback, useEffect, useMemo, useRef, useState } from "react";
import { useDebounceEvent } from "@vibe/hooks";
import { Icon } from "@vibe/icon";
import { Loader } from "@vibe/loader";
import { Text } from "@vibe/typography";
import FieldLabel from "../FieldLabel/FieldLabel";
import { FEEDBACK_CLASSES, SIZE_MAPPER, TextFieldAriaLabel } from "./TextFieldConstants";
import { type TextFieldType, type TextFieldSize } from "./TextField.types";
import {
useMergeRef,
NOOP,
ComponentDefaultTestId,
ComponentVibeId,
getTestId,
type VibeComponentProps
} from "@vibe/shared";
import { Clickable } from "@vibe/clickable";
import styles from "./TextField.module.scss";
import { Tooltip } from "@vibe/tooltip";
import { HiddenText } from "@vibe/a11y";
export interface TextFieldProps extends VibeComponentProps {
/**
* The placeholder text displayed when the input is empty.
*/
placeholder?: string;
/**
* Configures the browser's autocomplete behavior.
*/
autoComplete?: string;
/**
* The current value of the text field.
*/
value?: string;
/**
* Callback fired when the text field value changes.
*/
onChange?: (
value: string,
event: React.ChangeEvent<HTMLInputElement> | Pick<React.ChangeEvent<HTMLInputElement>, "target">
) => void;
/**
* Callback fired when the text field loses focus.
*/
onBlur?: (event: React.FocusEvent) => void;
/**
* Callback fired when the text field gains focus.
*/
onFocus?: (event: React.FocusEvent) => void;
/**
* Callback fired when a key is pressed inside the text field.
*/
onKeyDown?: (event: React.KeyboardEvent) => void;
/**
* Callback fired when the mouse wheel is used inside the text field.
*/
onWheel?: (event: React.WheelEvent) => void;
/**
* The debounce rate for input value changes.
*/
debounceRate?: number;
/**
* If true, the input is automatically focused on mount.
*/
autoFocus?: boolean;
/**
* If true, disables the text field.
*/
disabled?: boolean;
/**
* If true, makes the text field read-only.
*/
readonly?: boolean;
/**
* A function to set a reference to the input element.
*/
setRef?: (node: HTMLElement) => void;
/**
* The primary icon displayed inside the text field.
*/
icon?: string | React.FunctionComponent | null;
/**
* The secondary icon displayed inside the text field.
*/
secondaryIconName?: string | React.FunctionComponent | null;
/**
* The label displayed above the text field.
*/
title?: string;
/**
* The size of the text field.
*/
size?: TextFieldSize;
/**
* Validation state for the text field.
*/
validation?: { status?: "error" | "success"; text?: string | React.ReactNode };
/**
* Class name applied to the text field wrapper.
*/
wrapperClassName?: string;
/**
* Callback fired when the icon inside the text field is clicked.
*/
onIconClick?: (icon: string | React.FunctionComponent | null) => void;
/**
* If true, clears the input when the icon is clicked.
*/
clearOnIconClick?: boolean;
/**
* The icon displayed inside the label.
*/
labelIconName?: string | React.FunctionComponent | null;
/**
* If true, displays the character count.
*/
showCharCount?: boolean;
/**
* The ARIA label for the input field.
*/
inputAriaLabel?: string;
/**
* The ID of the container where search results are displayed.
*/
searchResultsContainerId?: string;
/**
* The ID of the currently active search result.
*/
activeDescendant?: string;
/**
* Accessible label for the primary icon.
*/
iconLabel?: string;
/**
* Accessible label for the secondary icon.
*/
secondaryIconLabel?: string;
/**
* The type of the text field.
*/
type?: TextFieldType;
/**
* The maximum number of characters allowed.
*/
maxLength?: number;
/**
* If true, allows the user to exceed the character limit set by `maxLength`.
*/
allowExceedingMaxLength?: boolean;
/**
* If true, trims whitespace from the input value.
*/
trim?: boolean;
/**
* The ARIA role of the text field.
*/
role?: string;
/**
* If true, marks the input as required.
*/
required?: boolean;
/**
* The error message displayed when a required field is left empty.
*/
requiredErrorText?: string;
/**
* If true, displays a loading indicator inside the text field.
*/
loading?: boolean;
/**
* Test ID for the secondary icon.
*/
secondaryDataTestId?: string;
/**
* The tab order of the input field.
*/
tabIndex?: number;
/**
* The name attribute for the input field.
*/
name?: string;
/**
* If true, renders only an underline style for the text field.
*/
underline?: boolean;
/**
* If true, the component is controlled by an external state.
*/
controlled?: boolean;
/**
* Tooltip content for the primary icon.
*/
iconTooltipContent?: string;
/**
* Tooltip content for the secondary icon.
*/
secondaryTooltipContent?: string;
/**
* The text direction of the input.
*/
dir?: "ltr" | "rtl" | "auto";
}
const TextField = forwardRef(
(
{
className = "",
placeholder = "",
autoComplete = "off",
value,
onChange = NOOP,
onBlur = NOOP,
onFocus = NOOP,
onKeyDown = NOOP,
onWheel = NOOP,
debounceRate = 0,
autoFocus = false,
disabled = false,
readonly = false,
setRef = NOOP,
icon: iconName,
secondaryIconName,
id = "input",
title = "",
size = "small",
validation = null,
wrapperClassName = "",
onIconClick = NOOP,
clearOnIconClick = false,
labelIconName,
showCharCount = false,
inputAriaLabel,
searchResultsContainerId = "",
activeDescendant = "",
iconLabel,
secondaryIconLabel,
type = "text",
maxLength = null,
allowExceedingMaxLength = false,
trim = false,
role = "",
required = false,
requiredErrorText = "",
loading = false,
"data-testid": dataTestId,
secondaryDataTestId,
tabIndex,
underline = false,
name,
controlled = false,
iconTooltipContent,
secondaryTooltipContent,
dir
}: TextFieldProps,
ref: React.ForwardedRef<unknown>
) => {
const [isRequiredAndEmpty, setIsRequiredAndEmpty] = useState(false);
const inputRef = useRef(null);
const mergedRef = useMergeRef(ref, inputRef, setRef);
const onBlurCallback = useCallback(
(e: React.FocusEvent<HTMLInputElement>) => {
if (required && !e.target.value) {
setIsRequiredAndEmpty(true);
}
onBlur(e);
},
[onBlur, required]
);
const onChangeCallback = useCallback(
(value: string, e?: React.ChangeEvent<HTMLInputElement>) => {
if (isRequiredAndEmpty && value) {
setIsRequiredAndEmpty(false);
}
const event = e || { target: inputRef.current };
onChange(value, event);
},
[onChange, isRequiredAndEmpty]
);
const {
inputValue: uncontrolledInput,
onEventChanged,
clearValue
} = useDebounceEvent({
delay: debounceRate,
onChange: onChangeCallback,
initialStateValue: value,
trim
});
const inputValue = useMemo(() => {
return controlled ? value : uncontrolledInput;
}, [controlled, value, uncontrolledInput]);
const handleChange = useCallback<ChangeEventHandler<HTMLInputElement>>(
event => {
controlled ? onChangeCallback(event.target.value, event) : onEventChanged(event);
},
[controlled, onChangeCallback, onEventChanged]
);
const currentStateIconName = useMemo(() => {
if (secondaryIconName) {
return inputValue ? secondaryIconName : iconName;
}
return iconName;
}, [iconName, secondaryIconName, inputValue]);
const onIconClickCallback = useCallback(() => {
if (disabled) {
return;
}
if (clearOnIconClick) {
if (inputRef.current) {
inputRef.current.focus();
}
// Do it cause otherwise the value is not cleared in target object
inputRef.current.value = "";
controlled ? onChangeCallback("") : clearValue();
}
onIconClick(currentStateIconName);
}, [disabled, clearOnIconClick, onIconClick, currentStateIconName, controlled, onChangeCallback, clearValue]);
const validationClass = useMemo(() => {
if (typeof maxLength === "number" && inputValue && inputValue.length > maxLength) {
return FEEDBACK_CLASSES.error;
}
if ((!validation || !validation.status) && !isRequiredAndEmpty) {
return "";
}
const status = isRequiredAndEmpty ? "error" : validation.status;
return FEEDBACK_CLASSES[status];
}, [maxLength, validation, isRequiredAndEmpty, inputValue]);
const hasIcon = iconName || secondaryIconName;
const hasValidationText = !!((validation && validation.text) || (isRequiredAndEmpty && requiredErrorText));
const shouldShowExtraText = showCharCount || hasValidationText;
const isSecondary = secondaryIconName === currentStateIconName;
const isPrimary = iconName === currentStateIconName;
const shouldFocusOnPrimaryIcon =
(onIconClick !== NOOP || iconLabel || iconTooltipContent) && inputValue && iconName.length && isPrimary;
const shouldFocusOnSecondaryIcon = (secondaryIconName || secondaryTooltipContent) && isSecondary && !!inputValue;
const allowExceedingMaxLengthTextId = allowExceedingMaxLength ? `${id}-allow-exceeding-max-length-text` : undefined;
const validationTextId = hasValidationText ? `${id}-validation-text` : undefined;
const describedBy = [validationTextId, allowExceedingMaxLengthTextId].filter(Boolean).join(" ") || undefined;
useEffect(() => {
if (!inputRef?.current || !autoFocus) {
return;
}
const animationFrame = requestAnimationFrame(() => inputRef.current.focus());
return () => cancelAnimationFrame(animationFrame);
}, [inputRef, autoFocus]);
const isIconContainerClickable = onIconClick !== NOOP || clearOnIconClick;
const primaryIconAriaLabel = iconLabel || iconTooltipContent;
const secondaryIconAriaLabel = secondaryIconLabel || secondaryTooltipContent;
return (
<div
className={cx(styles.textField, wrapperClassName, {
[styles.disabled]: disabled,
[styles.onlyUnderline]: underline
})}
role={role}
aria-busy={loading}
>
<div className={cx(styles.labelWrapper)}>
<FieldLabel labelText={title} icon={labelIconName} labelFor={id} required={required} />
<div className={cx(styles.inputWrapper, SIZE_MAPPER[size], validationClass)}>
{/*Programatical input (tabIndex={-1}) is working fine with aria-activedescendant attribute despite the rule*/}
{/*eslint-disable-next-line jsx-a11y/aria-activedescendant-has-tabindex*/}
<input
className={cx(className, styles.input, {
[styles.inputHasIcon]: !!hasIcon,
[styles.readOnly]: readonly
})}
placeholder={placeholder}
autoComplete={autoComplete}
value={inputValue}
onChange={handleChange}
disabled={disabled}
readOnly={readonly}
ref={mergedRef}
type={type}
id={id}
data-testid={dataTestId || getTestId(ComponentDefaultTestId.TEXT_FIELD, id)}
data-vibe={ComponentVibeId.TEXT_FIELD}
name={name}
onBlur={onBlurCallback}
onFocus={onFocus}
onKeyDown={onKeyDown}
onWheel={onWheel}
maxLength={typeof maxLength === "number" && !allowExceedingMaxLength ? maxLength : undefined}
role={searchResultsContainerId && "combobox"} // For voice reader
aria-label={inputAriaLabel || placeholder}
aria-invalid={(validation && validation.status === "error") || isRequiredAndEmpty}
aria-owns={searchResultsContainerId || undefined}
aria-activedescendant={activeDescendant || undefined}
aria-required={required}
aria-describedby={describedBy}
required={required}
tabIndex={tabIndex}
dir={dir}
/>
{loading && (
<div
className={cx(styles.loaderContainer, {
[styles.loaderContainerHasIcon]: hasIcon
})}
>
<div className={cx(styles.loader)}>
<Loader className={cx(styles.loaderSvg)} />
</div>
</div>
)}
{iconName && (
<Tooltip
content={isPrimary ? iconTooltipContent : undefined}
referenceWrapperClassName={styles.tooltipContainer}
>
<Clickable
className={cx(styles.iconContainer, {
[styles.iconContainerHasIcon]: hasIcon,
[styles.iconContainerActive]: isPrimary,
[styles.iconContainerClickable]: isIconContainerClickable
})}
onClick={onIconClickCallback}
tabIndex={shouldFocusOnPrimaryIcon ? 0 : -1}
aria-label={primaryIconAriaLabel}
>
<Icon
icon={iconName}
className={cx(styles.icon)}
type="font"
size={size === "small" ? "16px" : "18px"}
/>
</Clickable>
</Tooltip>
)}
{secondaryIconName && (
<Tooltip
content={isSecondary ? secondaryTooltipContent : undefined}
addKeyboardHideShowTriggersByDefault
referenceWrapperClassName={styles.tooltipContainer}
>
<Clickable
className={cx(styles.iconContainer, {
[styles.iconContainerHasIcon]: hasIcon,
[styles.iconContainerActive]: isSecondary,
[styles.iconContainerClickable]: isIconContainerClickable
})}
onClick={onIconClickCallback}
tabIndex={shouldFocusOnSecondaryIcon ? 0 : -1}
data-testid={secondaryDataTestId || getTestId(ComponentDefaultTestId.TEXT_FIELD_SECONDARY_BUTTON, id)}
aria-label={secondaryIconAriaLabel}
>
<Icon
icon={secondaryIconName}
className={cx(styles.icon)}
type="font"
size={size === "small" ? "16px" : "18px"}
/>
</Clickable>
</Tooltip>
)}
</div>
{shouldShowExtraText && (
<Text type="text2" color="secondary" className={cx(styles.subTextContainer)}>
{hasValidationText && (
<span id={validationTextId} className={cx(styles.subTextContainerStatus)}>
{isRequiredAndEmpty ? requiredErrorText : validation.text}
</span>
)}
{showCharCount && (
<span className={cx(styles.counter)} aria-label={TextFieldAriaLabel.CHAR}>
{(inputValue && inputValue.length) || 0}
{typeof maxLength === "number" && `/${maxLength}`}
<HiddenText id={allowExceedingMaxLengthTextId} text={`Maximum of ${maxLength} characters`} />
</span>
)}
</Text>
)}
</div>
</div>
);
}
);
export default TextField;