refactor: Improved logic of clone utility
This commit is contained in:
parent
fd780cd585
commit
343bdb16cb
@ -1,9 +1,12 @@
|
|||||||
import has from '@/utils/has'
|
import has from '@/utils/has'
|
||||||
import { RecordLike, Scalar, isScalar } from '@/types'
|
import {
|
||||||
|
RecordLike,
|
||||||
|
Scalar,
|
||||||
|
isRecordLike,
|
||||||
|
isScalar,
|
||||||
|
} from '@/types'
|
||||||
|
|
||||||
type Cloneable = Scalar|Date|RecordLike<unknown>
|
const cloneInstance = <T>(original: T): T => {
|
||||||
|
|
||||||
export const cloneInstance = <T>(original: T): T => {
|
|
||||||
return Object.assign(Object.create(Object.getPrototypeOf(original)), original)
|
return Object.assign(Object.create(Object.getPrototypeOf(original)), original)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -11,7 +14,7 @@ export const cloneInstance = <T>(original: T): T => {
|
|||||||
* A simple (somewhat non-comprehensive) clone function, valid for our use
|
* A simple (somewhat non-comprehensive) clone function, valid for our use
|
||||||
* case of needing to unbind reactive watchers.
|
* case of needing to unbind reactive watchers.
|
||||||
*/
|
*/
|
||||||
export default function clone (value: Cloneable): Cloneable {
|
export default function clone (value: unknown): unknown {
|
||||||
if (isScalar(value)) {
|
if (isScalar(value)) {
|
||||||
return value as Scalar
|
return value as Scalar
|
||||||
}
|
}
|
||||||
@ -20,18 +23,16 @@ export default function clone (value: Cloneable): Cloneable {
|
|||||||
return new Date(value)
|
return new Date(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isRecordLike(value)) {
|
||||||
|
return cloneInstance(value)
|
||||||
|
}
|
||||||
|
|
||||||
const source: RecordLike<unknown> = value as RecordLike<unknown>
|
const source: RecordLike<unknown> = value as RecordLike<unknown>
|
||||||
const copy: RecordLike<unknown> = Array.isArray(source) ? [] : {}
|
const copy: RecordLike<unknown> = Array.isArray(source) ? [] : {}
|
||||||
|
|
||||||
for (const key in source) {
|
for (const key in source) {
|
||||||
if (has(source, key)) {
|
if (has(source, key)) {
|
||||||
if (isScalar(source[key])) {
|
copy[key] = clone(source[key])
|
||||||
copy[key] = source[key]
|
|
||||||
} else if (source[key] instanceof Date) {
|
|
||||||
copy[key] = new Date(source[key] as Date)
|
|
||||||
} else {
|
|
||||||
copy[key] = clone(source[key] as Cloneable)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,34 +1,5 @@
|
|||||||
import clone, { cloneInstance } from '@/utils/clone'
|
import clone from '@/utils/clone'
|
||||||
|
|
||||||
describe('clone', () => {
|
|
||||||
test('Basic objects stay the same', () => {
|
|
||||||
const obj = { a: 123, b: 'hello' }
|
|
||||||
expect(clone(obj)).toEqual(obj)
|
|
||||||
})
|
|
||||||
|
|
||||||
test('Basic nested objects stay the same', () => {
|
|
||||||
const obj = { a: 123, b: { c: 'hello-world' } }
|
|
||||||
expect(clone(obj)).toEqual(obj)
|
|
||||||
})
|
|
||||||
|
|
||||||
test('Simple pojo reference types are re-created', () => {
|
|
||||||
const c = { c: 'hello-world' }
|
|
||||||
expect(clone({ a: 123, b: c }).b === c).toBe(false)
|
|
||||||
})
|
|
||||||
|
|
||||||
test('Retains array structures inside of a pojo', () => {
|
|
||||||
const obj = { a: 'abc', d: ['first', 'second'] }
|
|
||||||
expect(Array.isArray(clone(obj).d)).toBe(true)
|
|
||||||
})
|
|
||||||
|
|
||||||
test('Removes references inside array structures', () => {
|
|
||||||
const obj = { a: 'abc', d: ['first', { foo: 'bar' }] }
|
|
||||||
expect(clone(obj).d[1] === obj.d[1]).toBe(false)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('cloneInstance', () => {
|
|
||||||
test('creates a copy of a class instance', () => {
|
|
||||||
class Sample {
|
class Sample {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.fieldA = 'fieldA'
|
this.fieldA = 'fieldA'
|
||||||
@ -38,8 +9,51 @@ describe('cloneInstance', () => {
|
|||||||
doSomething () {}
|
doSomething () {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
describe('clone', () => {
|
||||||
|
test.each([
|
||||||
|
[{ a: 123, b: 'hello' }],
|
||||||
|
[{ a: 123, b: { c: 'hello-world' } }],
|
||||||
|
[{
|
||||||
|
id: 123,
|
||||||
|
addresses: [{
|
||||||
|
street: 'Baker Street',
|
||||||
|
building: '221b',
|
||||||
|
}],
|
||||||
|
}],
|
||||||
|
])('recreates object, preserving its structure', state => {
|
||||||
|
expect(clone(state)).toEqual(state)
|
||||||
|
expect(clone({ ref: state }).ref === state).toBe(false)
|
||||||
|
})
|
||||||
|
|
||||||
|
test('retains array structures inside of a pojo', () => {
|
||||||
|
const obj = { a: 'abc', d: ['first', 'second'] }
|
||||||
|
expect(Array.isArray(clone(obj).d)).toBe(true)
|
||||||
|
})
|
||||||
|
|
||||||
|
test('removes references inside array structures', () => {
|
||||||
|
const obj = { a: 'abc', d: ['first', { foo: 'bar' }] }
|
||||||
|
expect(clone(obj).d[1] === obj.d[1]).toBe(false)
|
||||||
|
})
|
||||||
|
|
||||||
|
test('creates a copy of a date', () => {
|
||||||
|
const date = new Date()
|
||||||
|
const copy = clone(date)
|
||||||
|
|
||||||
|
expect(date === copy).toBeFalsy()
|
||||||
|
expect(copy.toISOString()).toStrictEqual(date.toISOString())
|
||||||
|
})
|
||||||
|
|
||||||
|
test('creates a copy of a nested date', () => {
|
||||||
|
const date = new Date()
|
||||||
|
const copy = clone({ date })
|
||||||
|
|
||||||
|
expect(date === copy.date).toBeFalsy()
|
||||||
|
expect(copy.date.toISOString()).toStrictEqual(date.toISOString())
|
||||||
|
})
|
||||||
|
|
||||||
|
test('creates a copy of a class instance', () => {
|
||||||
const sample = new Sample()
|
const sample = new Sample()
|
||||||
const copy = cloneInstance(sample)
|
const copy = clone(sample)
|
||||||
|
|
||||||
expect(sample === copy).toBeFalsy()
|
expect(sample === copy).toBeFalsy()
|
||||||
|
|
||||||
@ -50,12 +64,16 @@ describe('cloneInstance', () => {
|
|||||||
expect(copy.doSomething).not.toThrow()
|
expect(copy.doSomething).not.toThrow()
|
||||||
})
|
})
|
||||||
|
|
||||||
test('creates a broken copy of builtins', () => {
|
test('creates a copy of a nested class instance', () => {
|
||||||
const sample = new Date()
|
const sample = new Sample()
|
||||||
const copy = cloneInstance(sample)
|
const copy = clone({ sample })
|
||||||
|
|
||||||
expect(sample === copy).toBeFalsy()
|
expect(sample === copy.sample).toBeFalsy()
|
||||||
expect(copy).toBeInstanceOf(Date)
|
|
||||||
expect(() => copy.toISOString()).toThrow()
|
expect(copy.sample).toBeInstanceOf(Sample)
|
||||||
|
expect(copy.sample.fieldA).toEqual('fieldA')
|
||||||
|
expect(copy.sample.fieldB).toEqual('fieldB')
|
||||||
|
expect(copy.sample.doSomething).toBeTruthy()
|
||||||
|
expect(copy.sample.doSomething).not.toThrow()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user