-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuse-mask.ts
273 lines (242 loc) · 7.49 KB
/
use-mask.ts
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
import React from 'react';
import MaskFunctions from '../utils/mask';
import type { MaskGenerator } from '../types/mask-generator';
const { getExpectedCursorPos, mask, processValue } = MaskFunctions;
export interface UseMaskProps {
outerValue?: string;
maskGenerator?: MaskGenerator;
onChange?: (value: string) => void;
getCursorPosition?: () => number;
setCursorPosition?: (cursorPosition: number) => void;
keepMask?: boolean;
}
export const useMask = ({
outerValue,
maskGenerator,
onChange,
getCursorPosition,
setCursorPosition,
keepMask,
}: UseMaskProps) => {
const lastOuterValueRef = React.useRef(outerValue);
const lastValueRef = React.useRef(outerValue);
const lastDisplayValueRef = React.useRef(outerValue);
const lastCursorPositionRef = React.useRef(outerValue?.length ?? 0);
const cursorBeforeMaskValueRef = React.useRef(outerValue);
const lastWentBackRef = React.useRef(false);
const lastMaskRef = React.useRef(maskGenerator);
const lastCursorMaskRef = React.useRef(maskGenerator);
const [value, setValue] = React.useState(outerValue);
const [displayValue, setDisplayValue] = React.useState(value);
const [lastCursorValue, setLastCursorValue] = React.useState(displayValue);
const [lastMaskValue, setLastMaskValue] = React.useState<
string | undefined
>();
const [needUpdateCursor, setNeedUpdateCursor] = React.useState(false);
const updateDisplayValue = React.useCallback(
(value: string, userInput?: boolean) => {
if (userInput && getCursorPosition) {
// Remove static chars after the cursor position to not be duplicated
// after the mask is applied (when the mask starts with static chars,
// but the user types before those chars, the mask generator will
// add the static chars automatically)
// See: https://github.com/lucasbasquerotto/react-masked-input/issues/3
if (value && maskGenerator) {
const cursorPosition = getCursorPosition();
const afterStr =
cursorPosition <= value?.length
? value?.substring(cursorPosition)
: undefined;
if (afterStr) {
const currentMask = maskGenerator.generateMask(value);
let initialStaticChars = '';
let idx = 0;
let currentChar = currentMask?.charAt(idx);
while (currentChar && !maskGenerator.rules.has(currentChar)) {
initialStaticChars += currentChar;
idx++;
currentChar = currentMask?.charAt(idx);
}
if (initialStaticChars) {
let startChars = '';
let afterChars = initialStaticChars;
while (
afterChars &&
value.startsWith(startChars) &&
!afterStr.startsWith(afterChars)
) {
startChars += afterChars?.charAt(0);
afterChars = afterChars.substring(1);
}
if (
afterChars &&
value.startsWith(startChars) &&
afterStr.startsWith(afterChars)
) {
value =
value.substring(0, cursorPosition) +
value.substring(cursorPosition + afterChars.length);
}
}
}
}
// Updates the cursor position when the user types a char
const cursorPosition = getCursorPosition();
lastCursorPositionRef.current = cursorPosition;
cursorBeforeMaskValueRef.current = value;
setNeedUpdateCursor(true);
}
if ((value ?? '').trim() === '') {
setDisplayValue('');
setValue('');
lastMaskRef.current = undefined;
lastOuterValueRef.current = '';
return { displayValue: '' };
} else if (maskGenerator) {
const {
maskedValue,
mask: currentMask,
transformOffset,
} = mask(value, maskGenerator);
const processedValue = processValue(maskedValue ?? '', maskGenerator);
setDisplayValue(maskedValue ?? undefined);
setValue(processedValue ?? undefined);
lastMaskRef.current = maskGenerator;
lastOuterValueRef.current = processedValue ?? undefined;
if (transformOffset && userInput && getCursorPosition) {
const cursorPosition = getCursorPosition();
const newCursorPosition = cursorPosition + transformOffset;
lastCursorPositionRef.current = newCursorPosition;
cursorBeforeMaskValueRef.current = value;
setNeedUpdateCursor(true);
}
return { displayValue: maskedValue, mask: currentMask };
} else {
setDisplayValue(value);
setValue(value);
lastMaskRef.current = undefined;
lastOuterValueRef.current = value ?? undefined;
return { displayValue: value };
}
},
[maskGenerator, getCursorPosition],
);
const updateCursor = React.useCallback(
({
displayValue,
oldDisplayValue,
newMask,
oldMask,
force,
}: {
displayValue: string;
oldDisplayValue: string;
newMask?: MaskGenerator;
oldMask?: MaskGenerator;
force?: boolean;
}) => {
if (setCursorPosition && getCursorPosition) {
let { position: newExpectedCursorPos, wentBack = false } =
getExpectedCursorPos({
displayValue,
oldDisplayValue,
valueBeforeMask: cursorBeforeMaskValueRef.current ?? '',
newMask,
oldMask,
cursorPosition: lastCursorPositionRef.current,
lastWentBack: lastWentBackRef.current,
});
if (force || lastCursorPositionRef.current !== newExpectedCursorPos) {
lastCursorPositionRef.current = newExpectedCursorPos;
setCursorPosition(newExpectedCursorPos);
}
lastWentBackRef.current = wentBack;
}
},
[setCursorPosition, getCursorPosition],
);
React.useEffect(() => {
const maskValue =
(maskGenerator?.generateMask &&
maskGenerator?.generateMask(value ?? '')) ||
undefined;
if (
maskValue !== lastMaskValue ||
outerValue !== lastOuterValueRef.current
) {
setLastMaskValue(maskValue);
lastOuterValueRef.current = outerValue;
if (maskValue !== lastMaskValue || outerValue !== value) {
updateDisplayValue(outerValue ?? '');
}
}
}, [
lastMaskValue,
setLastMaskValue,
maskGenerator,
outerValue,
value,
updateDisplayValue,
]);
React.useEffect(() => {
if (value !== lastValueRef.current) {
lastValueRef.current = value;
updateDisplayValue(value ?? '');
if (!keepMask && onChange) {
onChange(value ?? '');
}
}
}, [value, maskGenerator, updateDisplayValue, keepMask, onChange]);
React.useEffect(() => {
if (displayValue !== lastDisplayValueRef.current) {
const { displayValue: newDisplayValue } = updateDisplayValue(
displayValue ?? '',
);
if ((newDisplayValue ?? '') === (displayValue ?? '')) {
lastDisplayValueRef.current = newDisplayValue ?? undefined;
if (keepMask && onChange) {
onChange(newDisplayValue ?? '');
}
}
}
}, [displayValue, updateDisplayValue, keepMask, onChange]);
React.useEffect(() => {
const newPos = getCursorPosition
? getCursorPosition()
: lastCursorPositionRef.current;
const force = newPos !== lastCursorPositionRef.current;
if (
displayValue === lastDisplayValueRef.current &&
(lastCursorValue !== lastDisplayValueRef.current ||
force ||
needUpdateCursor)
) {
setNeedUpdateCursor(false);
setLastCursorValue(lastDisplayValueRef.current);
lastCursorMaskRef.current = lastMaskRef.current;
updateCursor({
displayValue: lastDisplayValueRef.current ?? '',
oldDisplayValue: lastCursorValue ?? '',
newMask: lastMaskRef.current,
oldMask: lastCursorMaskRef.current,
force,
});
}
}, [
lastCursorValue,
displayValue,
needUpdateCursor,
getCursorPosition,
updateCursor,
]);
const result = React.useMemo(
() => ({
displayValue,
setDisplayValue: (value: string) => {
updateDisplayValue(value, true);
},
}),
[displayValue, updateDisplayValue],
);
return result;
};