Skip to content

Commit d6f72d7

Browse files
authored
Merge pull request #4890 from demyanm/bugfix/3429-process-multiple-update-for-the-same-new-entity
Process multiple update for the same new entity
2 parents 9fb032d + e0ef8c5 commit d6f72d7

File tree

5 files changed

+51
-5
lines changed

5 files changed

+51
-5
lines changed

packages/toolkit/src/entities/sorted_state_adapter.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,12 @@ export function createSortedStateAdapter<T, Id extends EntityId>(
160160
state,
161161
)
162162

163-
if (updated.length) {
164-
updateManyMutably(updated, state)
165-
}
166163
if (added.length) {
167164
addManyMutably(added, state, existingIdsArray)
168165
}
166+
if (updated.length) {
167+
updateManyMutably(updated, state)
168+
}
169169
}
170170

171171
function areArraysEqual(a: readonly unknown[], b: readonly unknown[]) {

packages/toolkit/src/entities/tests/sorted_state_adapter.test.ts

+22
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,28 @@ describe('Sorted State Adapter', () => {
509509
})
510510
})
511511

512+
it('should let you add a new entity then apply changes to it', () => {
513+
const firstChange = { author: TheHobbit.author }
514+
const secondChange = { title: 'Zack' }
515+
const withMany = adapter.setAll(state, [AClockworkOrange])
516+
517+
const withUpserts = adapter.upsertMany(withMany, [
518+
{...TheGreatGatsby}, { ...TheGreatGatsby, ...firstChange }, {...TheGreatGatsby, ...secondChange}
519+
])
520+
521+
expect(withUpserts).toEqual({
522+
ids: [AClockworkOrange.id, TheGreatGatsby.id],
523+
entities: {
524+
[TheGreatGatsby.id]: {
525+
...TheGreatGatsby,
526+
...firstChange,
527+
...secondChange,
528+
},
529+
[AClockworkOrange.id]: AClockworkOrange,
530+
},
531+
})
532+
})
533+
512534
it('should let you add a new entity in the state with setOne() and keep the sorting', () => {
513535
const withMany = adapter.setAll(state, [AnimalFarm, TheHobbit])
514536
const withOneMore = adapter.setOne(withMany, TheGreatGatsby)

packages/toolkit/src/entities/tests/unsorted_state_adapter.test.ts

+22
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,28 @@ describe('Unsorted State Adapter', () => {
355355
})
356356
})
357357

358+
it('should let you add a new entity then apply changes to it', () => {
359+
const firstChange = { author: TheHobbit.author }
360+
const secondChange = { title: 'Zack' }
361+
const withMany = adapter.setAll(state, [TheGreatGatsby])
362+
363+
const withUpserts = adapter.upsertMany(withMany, [
364+
{...AClockworkOrange}, { ...AClockworkOrange, ...firstChange }, {...AClockworkOrange, ...secondChange}
365+
])
366+
367+
expect(withUpserts).toEqual({
368+
ids: [TheGreatGatsby.id, AClockworkOrange.id],
369+
entities: {
370+
[TheGreatGatsby.id]: TheGreatGatsby,
371+
[AClockworkOrange.id]: {
372+
...AClockworkOrange,
373+
...firstChange,
374+
...secondChange,
375+
},
376+
},
377+
})
378+
})
379+
358380
it('should let you add a new entity in the state with setOne()', () => {
359381
const withOne = adapter.setOne(state, TheGreatGatsby)
360382
expect(withOne).toEqual({

packages/toolkit/src/entities/unsorted_state_adapter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ export function createUnsortedStateAdapter<T, Id extends EntityId>(
183183
state,
184184
)
185185

186-
updateManyMutably(updated, state)
187186
addManyMutably(added, state)
187+
updateManyMutably(updated, state)
188188
}
189189

190190
return {

packages/toolkit/src/entities/utils.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,15 @@ export function splitAddedUpdatedEntities<T, Id extends EntityId>(
5252
const existingIds = new Set<Id>(existingIdsArray)
5353

5454
const added: T[] = []
55+
const addedIds = new Set<Id>([])
5556
const updated: Update<T, Id>[] = []
5657

5758
for (const entity of newEntities) {
5859
const id = selectIdValue(entity, selectId)
59-
if (existingIds.has(id)) {
60+
if (existingIds.has(id) || addedIds.has(id)) {
6061
updated.push({ id, changes: entity })
6162
} else {
63+
addedIds.add(id)
6264
added.push(entity)
6365
}
6466
}

0 commit comments

Comments
 (0)