Skip to content

Commit de4a5ab

Browse files
authoredJul 13, 2019
Fixed moving of fields of different shapes (#31)
1 parent ced46c6 commit de4a5ab

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed
 

‎src/move.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,12 @@ const move: Mutator = (
5959
state.fields[destKey] = {
6060
...source,
6161
name: destKey,
62-
change: state.fields[destKey].change, // prevent functions from being overwritten
63-
blur: state.fields[destKey].blur,
64-
focus: state.fields[destKey].focus,
62+
// prevent functions from being overwritten
63+
// if the state.fields[destKey] does not exist, it will be created
64+
// when that field gets registered, with its own change/blur/focus callbacks
65+
change: state.fields[destKey] && state.fields[destKey].change,
66+
blur: state.fields[destKey] && state.fields[destKey].blur,
67+
focus: state.fields[destKey] && state.fields[destKey].focus,
6568
lastFieldState: undefined // clearing lastFieldState forces renotification
6669
}
6770
}

‎src/move.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ describe('move', () => {
465465
}
466466
}
467467
move(['foo', 0, 1], state, { changeValue })
468-
expect(state).toEqual({
468+
expect(state).toMatchObject({
469469
formState: {
470470
values: {
471471
foo: [{ dog: 'banana dog' }, { dog: 'apple dog', cat: 'apple cat' }]

0 commit comments

Comments
 (0)
Please sign in to comment.