Skip to content

Commit

Permalink
fix(core): mergeDeep now can merge nulls (#4088)
Browse files Browse the repository at this point in the history
  • Loading branch information
YousefED committed Jun 12, 2024
1 parent 31f3746 commit fe78faa
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/core/src/utilities/mergeDeep.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,10 @@ export function mergeDeep(target: Record<string, any>, source: Record<string, an

if (isPlainObject(target) && isPlainObject(source)) {
Object.keys(source).forEach(key => {
if (isPlainObject(source[key])) {
if (!(key in target)) {
Object.assign(output, { [key]: source[key] })
} else {
output[key] = mergeDeep(target[key], source[key])
}
if (isPlainObject(source[key]) && isPlainObject(target[key])) {
output[key] = mergeDeep(target[key], source[key])
} else {
Object.assign(output, { [key]: source[key] })
output[key] = source[key]
}
})
}
Expand Down
45 changes: 45 additions & 0 deletions tests/cypress/integration/core/mergeDeep.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ describe('mergeDeep', () => {
expect(merged).to.deep.eq(result)
})

it('should merge when source has null value', () => {
const one = {
a: null,
}
const two = {
a: { c: 3 },
}
const result = {
a: { c: 3 },
}
const merged = mergeDeep(one, two)

expect(merged).to.deep.eq(result)
})

it('should not merge array', () => {
const one = {
a: [1],
Expand All @@ -34,6 +49,36 @@ describe('mergeDeep', () => {
expect(merged).to.deep.eq(result)
})

it('should merge when source has null value', () => {
const one = {
a: null,
}
const two = {
a: { c: 3 },
}
const result = {
a: { c: 3 },
}
const merged = mergeDeep(one, two)

expect(merged).to.deep.eq(result)
})

it('should allow nulling a value', () => {
const one = {
a: { c: 3 },
}
const two = {
a: { c: null },
}
const result = {
a: { c: null },
}
const merged = mergeDeep(one, two)

expect(merged).to.deep.eq(result)
})

it('should merge deep', () => {
const one = {
a: 1,
Expand Down

0 comments on commit fe78faa

Please sign in to comment.