mutative
Version:
A JavaScript library for efficient immutable updates
151 lines (148 loc) • 4.73 kB
text/typescript
import { Operation, DraftType } from './interface';
import type {
Draft,
Patches,
ApplyMutableOptions,
ApplyOptions,
ApplyResult,
} from './interface';
import { deepClone, get, getType, isDraft, unescapePath } from './utils';
import { create } from './create';
/**
* `apply(state, patches)` to apply patches to state
*
* ## Example
*
* ```ts
* import { create, apply } from '../index';
*
* const baseState = { foo: { bar: 'str' }, arr: [] };
* const [state, patches] = create(
* baseState,
* (draft) => {
* draft.foo.bar = 'str2';
* },
* { enablePatches: true }
* );
* expect(state).toEqual({ foo: { bar: 'str2' }, arr: [] });
* expect(patches).toEqual([{ op: 'replace', path: ['foo', 'bar'], value: 'str2' }]);
* expect(state).toEqual(apply(baseState, patches));
* ```
*/
export function apply<
T extends object,
F extends boolean = false,
A extends ApplyOptions<F> = ApplyOptions<F>,
>(state: T, patches: Patches, applyOptions?: A): ApplyResult<T, F, A> {
let i: number;
for (i = patches.length - 1; i >= 0; i -= 1) {
const { value, op, path } = patches[i];
if (
(!path.length && op === Operation.Replace) ||
(path === '' && op === Operation.Add)
) {
state = value;
break;
}
}
if (i > -1) {
patches = patches.slice(i + 1);
}
const mutate = (draft: Draft<T> | T) => {
patches.forEach((patch) => {
const { path: _path, op } = patch;
const path = unescapePath(_path);
let base: any = draft;
for (let index = 0; index < path.length - 1; index += 1) {
const parentType = getType(base);
let key = path[index];
if (typeof key !== 'string' && typeof key !== 'number') {
key = String(key);
}
if (
((parentType === DraftType.Object ||
parentType === DraftType.Array) &&
(key === '__proto__' || key === 'constructor')) ||
(typeof base === 'function' && key === 'prototype')
) {
throw new Error(
`Patching reserved attributes like __proto__ and constructor is not allowed.`
);
}
// use `index` in Set draft
base = get(parentType === DraftType.Set ? Array.from(base) : base, key);
if (typeof base !== 'object') {
throw new Error(`Cannot apply patch at '${path.join('/')}'.`);
}
}
const type = getType(base);
// ensure the original patch is not modified.
const value = deepClone(patch.value);
const key = path[path.length - 1];
switch (op) {
case Operation.Replace:
switch (type) {
case DraftType.Map:
return base.set(key, value);
case DraftType.Set:
throw new Error(`Cannot apply replace patch to set.`);
default:
return (base[key] = value);
}
case Operation.Add:
switch (type) {
case DraftType.Array:
// If the "-" character is used to
// index the end of the array (see [RFC6901](https://datatracker.ietf.org/doc/html/rfc6902)),
// this has the effect of appending the value to the array.
return key === '-'
? base.push(value)
: base.splice(key as number, 0, value);
case DraftType.Map:
return base.set(key, value);
case DraftType.Set:
return base.add(value);
default:
return (base[key] = value);
}
case Operation.Remove:
switch (type) {
case DraftType.Array:
return base.splice(key as number, 1);
case DraftType.Map:
return base.delete(key);
case DraftType.Set:
return base.delete(patch.value);
default:
return delete base[key];
}
default:
throw new Error(`Unsupported patch operation: ${op}.`);
}
});
};
if ((applyOptions as ApplyMutableOptions)?.mutable) {
if (__DEV__) {
if (
Object.keys(applyOptions!).filter((key) => key !== 'mutable').length
) {
console.warn(
'The "mutable" option is not allowed to be used with other options.'
);
}
}
mutate(state);
return undefined as ApplyResult<T, F, A>;
}
if (isDraft(state)) {
if (applyOptions !== undefined) {
throw new Error(`Cannot apply patches with options to a draft.`);
}
mutate(state as Draft<T>);
return state as ApplyResult<T, F, A>;
}
return create<T, F>(state, mutate, {
...applyOptions,
enablePatches: false,
}) as T as ApplyResult<T, F, A>;
}