File tree 2 files changed +22
-2
lines changed
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,15 @@ export const useRifm = (props: Args): RenderProps => {
100
100
// in case of isDeleleteButtonDown cursor should move differently vs backspace
101
101
const deleteWasNoOp = isDeleleteButtonDown && isNoOperation ;
102
102
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
+
103
112
// Create string from only accepted symbols
104
113
const clean = str => ( str . match ( props . accept || / \d / g) || [ ] ) . join ( '' ) ;
105
114
@@ -200,7 +209,7 @@ export const useRifm = (props: Args): RenderProps => {
200
209
}
201
210
202
211
input . selectionStart = input . selectionEnd =
203
- start + ( deleteWasNoOp ? 1 : 0 ) ;
212
+ start + ( deleteWasNoOp ? 1 + charsToSkipAfterDelete : 0 ) ;
204
213
} ;
205
214
} ) ;
206
215
}
Original file line number Diff line number Diff line change 1
1
// @flow
2
2
3
- import { formatFixedPointNumber , formatFloatingPointNumber } from './format' ;
3
+ import { formatFixedPointNumber , formatFloatingPointNumber , formatPhone } from './format' ;
4
4
import { createExec } from './utils/exec' ;
5
5
6
6
test ( 'format works' , async ( ) => {
@@ -155,3 +155,14 @@ it('replace is applied to input value', () => {
155
155
156
156
exec ( { type : 'MOVE_CARET' , payload : - 5 } ) . toMatchInlineSnapshot ( `"|hello"` ) ;
157
157
} ) ;
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
+ } ) ;
You can’t perform that action at this time.
0 commit comments