-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOtpInput.tsx
217 lines (198 loc) · 5.33 KB
/
OtpInput.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
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
"use client";
import * as React from "react";
import OutlinedInput from "@mui/material/OutlinedInput";
import Box from "@mui/material/Box";
function OTP({
separator,
length,
value,
onChange,
}: {
separator: React.ReactNode;
length: number;
value: string;
onChange: React.Dispatch<React.SetStateAction<string>>;
}) {
const inputRefs = React.useRef<HTMLInputElement[]>(
new Array(length).fill(null)
);
const focusInput = (targetIndex: number) => {
const targetInput = inputRefs.current[targetIndex];
targetInput.focus();
};
const selectInput = (targetIndex: number) => {
const targetInput = inputRefs.current[targetIndex];
targetInput.select();
};
const handleKeyDown = (
event: React.KeyboardEvent<HTMLInputElement>,
currentIndex: number
) => {
switch (event.key) {
case "ArrowUp":
case "ArrowDown":
case " ":
event.preventDefault();
break;
case "ArrowLeft":
event.preventDefault();
if (currentIndex > 0) {
focusInput(currentIndex - 1);
selectInput(currentIndex - 1);
}
break;
case "ArrowRight":
event.preventDefault();
if (currentIndex < length - 1) {
focusInput(currentIndex + 1);
selectInput(currentIndex + 1);
}
break;
case "Delete":
event.preventDefault();
onChange((prevOtp) => {
const otp =
prevOtp.slice(0, currentIndex) + prevOtp.slice(currentIndex + 1);
return otp;
});
break;
case "Backspace":
event.preventDefault();
if (currentIndex > 0) {
focusInput(currentIndex - 1);
selectInput(currentIndex - 1);
}
onChange((prevOtp) => {
const otp =
prevOtp.slice(0, currentIndex) + prevOtp.slice(currentIndex + 1);
return otp;
});
break;
default:
break;
}
};
const handleChange = (
event: React.ChangeEvent<HTMLInputElement>,
currentIndex: number
) => {
const currentValue = event.target.value;
let indexToEnter = 0;
while (indexToEnter <= currentIndex) {
if (
inputRefs.current[indexToEnter].value &&
indexToEnter < currentIndex
) {
indexToEnter += 1;
} else {
break;
}
}
onChange((prev) => {
const otpArray = prev.split("");
const lastValue = currentValue[currentValue.length - 1];
otpArray[indexToEnter] = lastValue;
return otpArray.join("");
});
if (currentValue !== "") {
if (currentIndex < length - 1) {
focusInput(currentIndex + 1);
}
}
};
const handleClick = (
event: React.MouseEvent<HTMLInputElement, MouseEvent>,
currentIndex: number
) => {
selectInput(currentIndex);
};
const handlePaste = (
event: React.ClipboardEvent<HTMLInputElement>,
currentIndex: number
) => {
event.preventDefault();
const clipboardData = event.clipboardData;
// Check if there is text data in the clipboard
if (clipboardData.types.includes("text/plain")) {
let pastedText = clipboardData.getData("text/plain");
pastedText = pastedText.substring(0, length).trim();
let indexToEnter = 0;
while (indexToEnter <= currentIndex) {
if (
inputRefs.current[indexToEnter].value &&
indexToEnter < currentIndex
) {
indexToEnter += 1;
} else {
break;
}
}
const otpArray = value.split("");
for (let i = indexToEnter; i < length; i += 1) {
const lastValue = pastedText[i - indexToEnter] ?? " ";
otpArray[i] = lastValue;
}
onChange(otpArray.join(""));
}
};
return (
<Box sx={{ display: "flex", gap: 1, alignItems: "center" }}>
{new Array(length).fill(null).map((_, index) => (
<React.Fragment key={index}>
<OutlinedInput
aria-label={`Digit ${index + 1} of OTP`}
inputRef={(ele) => {
inputRefs.current[index] = ele;
}}
onKeyDown={(event) =>
handleKeyDown(
event as React.KeyboardEvent<HTMLInputElement>,
index
)
}
onChange={(event) =>
handleChange(event as React.ChangeEvent<HTMLInputElement>, index)
}
onClick={(event) =>
handleClick(event as React.MouseEvent<HTMLInputElement>, index)
}
onPaste={(event) =>
handlePaste(
event as React.ClipboardEvent<HTMLInputElement>,
index
)
}
value={value[index] ?? ""}
inputProps={{
sx: {
textAlign: "center",
},
}}
sx={{ width: "2.5rem", height: "2.5rem" }}
/>
{index === length - 1 ? null : separator}
</React.Fragment>
))}
</Box>
);
}
export default function OTPInput() {
const [otp, setOtp] = React.useState("");
return (
<Box
sx={{
display: "flex",
flexDirection: "column",
gap: 2,
}}
>
<OTP
separator={<span>-</span>}
value={otp}
onChange={setOtp}
length={5}
/>
<span>Entered value: {otp}</span>
</Box>
);
}