-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputBox.tsx
79 lines (78 loc) · 1.82 KB
/
InputBox.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
import * as React from 'react';
const InputBox = React.forwardRef(
(
{
value,
active,
onChange,
onFocus,
showInput,
onKeyDown,
error,
}: {
value: string | undefined;
active: boolean;
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
onFocus: () => void;
showInput: boolean;
onKeyDown: (e: any) => boolean;
error: boolean;
},
ref: React.ForwardedRef<HTMLInputElement>
) => {
return (
<div
style={{
width: 50,
height: 50,
border: active
? `3px solid ${!value.length ? 'blue' : error ? 'red' : 'green'}`
: error && value.length
? '1px solid red'
: value.length && !error
? '2px solid green'
: '1px solid black',
borderRadius: 2,
display: 'grid',
placeItems: 'center',
cursor: 'pointer',
position: 'relative',
}}
>
<input
style={{
width: '100%',
height: '100%',
top: 0,
left: 0,
fontSize: '2rem',
border: 'none',
textAlign: 'center',
outline: 'none',
background: 'none',
position: 'absolute',
opacity: showInput ? 1 : 0,
caretColor: 'transparent',
}}
onFocus={onFocus}
onKeyDown={onKeyDown}
type="tel"
onChange={onChange}
value={value}
ref={ref}
/>
{value && !showInput && (
<span
style={{
width: 8,
height: 8,
background: '#000',
borderRadius: '50%',
}}
/>
)}
</div>
);
}
);
export default InputBox;