Skip to content

Commit d337d85

Browse files
authored
Fix cursor position after delete with multiple non-accepted chars after (#101)
* Add failing test * Fix by accounting for additional non-accepted chars
1 parent d832f00 commit d337d85

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

src/Rifm.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,15 @@ export const useRifm = (props: Args): RenderProps => {
100100
// in case of isDeleleteButtonDown cursor should move differently vs backspace
101101
const deleteWasNoOp = isDeleleteButtonDown && isNoOperation;
102102

103+
const valueAfterSelectionStart = eventValue.slice(input.selectionStart);
104+
105+
const acceptedCharIndexAfterDelete = valueAfterSelectionStart.search(
106+
props.accept || /\d/g
107+
);
108+
109+
const charsToSkipAfterDelete =
110+
acceptedCharIndexAfterDelete !== -1 ? acceptedCharIndexAfterDelete : 0;
111+
103112
// Create string from only accepted symbols
104113
const clean = str => (str.match(props.accept || /\d/g) || []).join('');
105114

@@ -200,7 +209,7 @@ export const useRifm = (props: Args): RenderProps => {
200209
}
201210

202211
input.selectionStart = input.selectionEnd =
203-
start + (deleteWasNoOp ? 1 : 0);
212+
start + (deleteWasNoOp ? 1 + charsToSkipAfterDelete : 0);
204213
};
205214
});
206215
}

tests/RifmFormat.test.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @flow
22

3-
import { formatFixedPointNumber, formatFloatingPointNumber } from './format';
3+
import { formatFixedPointNumber, formatFloatingPointNumber, formatPhone } from './format';
44
import { createExec } from './utils/exec';
55

66
test('format works', async () => {
@@ -155,3 +155,14 @@ it('replace is applied to input value', () => {
155155

156156
exec({ type: 'MOVE_CARET', payload: -5 }).toMatchInlineSnapshot(`"|hello"`);
157157
});
158+
159+
it('moves cursor to expected position when deleting with more than 1 non-accepted chars after cursor', () => {
160+
const exec = createExec({
161+
format: formatPhone,
162+
accept: /\d+/g,
163+
initialValue: '1 (234) 567',
164+
});
165+
166+
exec({ type: 'MOVE_CARET', payload: 6 }).toMatchInlineSnapshot(`"1 (234|) 567"`);
167+
exec({ type: 'DELETE' }).toMatchInlineSnapshot(`"1 (234) |567"`);
168+
});

0 commit comments

Comments
 (0)