-
-
Notifications
You must be signed in to change notification settings - Fork 445
/
Copy pathPhoneInput.tsx
78 lines (71 loc) · 2.34 KB
/
PhoneInput.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
import { forwardRef, type ComponentProps, type FC, type ReactNode } from "react";
import { FaPhoneAlt } from "react-icons/fa";
import { twMerge } from "tailwind-merge";
import { mergeDeep } from "../../helpers/merge-deep";
import { getTheme } from "../../theme-store";
import type { DeepPartial } from "../../types";
import type { FlowbiteSizes } from "../Flowbite";
import { HelperText } from "../HelperText";
export interface FlowbitePhoneInputTheme {
root: {
base: string;
input: {
base: string;
sizes: FlowbitePhoneInputSizes;
startIcon: {
base: string;
icon: string;
};
rightIcon: {
base: string;
icon: string;
};
};
};
}
export interface FlowbitePhoneInputSizes extends Pick<FlowbiteSizes, "sm" | "md" | "lg"> {
[key: string]: string;
}
export interface PhoneInputProps extends Omit<ComponentProps<"input">, "ref"> {
helperText?: ReactNode;
icon?: FC<ComponentProps<"svg">>;
rightIcon?: FC<ComponentProps<"svg">>;
sizing?: keyof FlowbitePhoneInputSizes;
theme?: DeepPartial<FlowbitePhoneInputTheme>;
}
export const PhoneInput = forwardRef<HTMLInputElement, PhoneInputProps>(
(
{ helperText, icon: LeftIcon, rightIcon: RightIcon, sizing = "md", theme: customTheme = {}, className, ...props },
ref,
) => {
const theme = mergeDeep(getTheme().phoneInput.root, customTheme);
const StartIcon = LeftIcon ? LeftIcon : FaPhoneAlt;
return (
<>
<div className={twMerge(theme.base, className)}>
<div data-testid="left-icon" className={theme.input.startIcon.base}>
<StartIcon aria-hidden className={theme.input.startIcon.icon} />
</div>
<div className={theme.input.rightIcon.base}>
{RightIcon && (
<div data-testid="right-icon" className={theme.input.rightIcon.base}>
<RightIcon className={theme.input.rightIcon.icon} />
</div>
)}
</div>
<input
type="tel"
id="phone-input"
aria-describedby="phone-input"
data-testid="phone-input-field"
className={theme.input.base}
ref={ref}
{...props}
/>
</div>
{helperText && <HelperText color="grey">{helperText}</HelperText>}
</>
);
},
);
PhoneInput.displayName = "PhoneInput";