mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-04-27 11:43:42 +03:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { DiffContext, DiffPatcher } from 'jsondiffpatch';
|
|
|
|
const defaultObjectHash = (o: any, idx: number) =>
|
|
(o === null && '$$null') ||
|
|
(o && (o.id || o.id === 0) && `$$id:${JSON.stringify(o.id)}`) ||
|
|
(o && (o._id || o._id === 0) && `$$_id:${JSON.stringify(o._id)}`) ||
|
|
`$$index:${idx}`;
|
|
|
|
const defaultPropertyFilter = (name: string, context: DiffContext) =>
|
|
typeof context.left[name] !== 'function' &&
|
|
typeof context.right[name] !== 'function';
|
|
|
|
const defaultDiffPatcher = new DiffPatcher({
|
|
arrays: { detectMove: false } as {
|
|
detectMove: boolean;
|
|
includeValueOnMove: boolean;
|
|
},
|
|
objectHash: defaultObjectHash,
|
|
propertyFilter: defaultPropertyFilter,
|
|
});
|
|
|
|
export default function createDiffPatcher(
|
|
objectHash: ((item: unknown, index: number) => string) | undefined,
|
|
propertyFilter: ((name: string, context: DiffContext) => boolean) | undefined
|
|
) {
|
|
if (!objectHash && !propertyFilter) {
|
|
return defaultDiffPatcher;
|
|
}
|
|
|
|
return new DiffPatcher({
|
|
arrays: { detectMove: false } as {
|
|
detectMove: boolean;
|
|
includeValueOnMove: boolean;
|
|
},
|
|
objectHash: objectHash || defaultObjectHash,
|
|
propertyFilter: propertyFilter || defaultPropertyFilter,
|
|
});
|
|
}
|