json-immutability-helper
v4.0.1
Published
json-serialisable general-purpose reducer
Downloads
73
Readme
JSON Immutability Helper
JSON-serialisable mutability helpers for both client- and server-side code.
Originally based on
immutability-helper
,
with list, string and mathematical commands added, but now uses an
alternative syntax.
This library includes helpers for integrating with React / preact apps using hooks, but can also be used indepenently.
Install dependency
npm install --save json-immutability-helper
Motivation
When working with collaborative state shared over a network, it can be desirable to share state deltas rather than full state objects. This allows parallel editing from different editors, and reduces bandwidth requirements.
Sharing functions between browsers and servers is not desirable, as it introduces security concerns. Instead, this package provides a foundational set of primitive operations which cover typical mutations.
Because the operations are intended to be shared, all inputs are assumed to be potentially malicious, with necessary mitigations applied.
Usage
The core function update
takes an object and a spec, and returns an
updated object. The input object and spec are unchanged (considered
immutable).
Optimisations ensure that if any properties within the object are unchanged, they will be returned exactly (not a copy). This helps when detecting changes using shallow comparison.
Simple usage:
const { update } = require('json-immutability-helper');
const initialState = { foo: 3 };
const updatedState = update(initialState, { foo: ['+', 1] });
// updatedState = { foo: 4 }
// initialState is unchanged
You can define arbitrary hierarchies:
const { update } = require('json-immutability-helper');
const initialState = { foo: { bar: { baz: 1 } } };
const updatedState = update(initialState, {
foo: {
bar: {
baz: ['=', 7],
},
extra: ['=', 1]
},
});
// updatedState = { foo: { bar: { baz: 7 }, extra: 1 } }
Note that arrays in the spec define commands. To navigate to a particular item in an array, use a number as an object key:
const { update } = require('json-immutability-helper');
const initialState = { foo: [2, 8] };
const updatedState = update(initialState, {
foo: {
0: ['=', 5],
},
});
// updatedState = { foo: [5, 8] }
// To serialise as JSON, you can quote the index:
const spec = `
{
"foo": {
"0": ["=", 5]
}
}
`;
With list commands (note .with(listCommands)
):
const listCommands = require('json-immutability-helper/commands/list');
const { update } = require('json-immutability-helper').with(listCommands);
const initialState = {
items: [
{ myId: 3, myThing: 'this' },
{ myId: 28, myThing: 'that' },
],
};
// Change the property 'myThing' of the first item with myId=3
const updatedState = update(initialState, {
items: [
'update',
['first', ['myId', 3]],
{ myThing: ['=', 'updated this'] },
],
});
// Note that the spec is fully JSON-serialisable:
const spec = `
{
"items": [
"update",
["first": ["myId", 3]],
{ "myThing": ["=", "updated this"] }
]
}
`;
const updatedJsonState = update(initialState, JSON.parse(spec));
Locators
The main concepts introduced in this project are conditions and
locators. Several commands use conditions to decide which items to
update, such as if
, update
, delete
, insert
, and move
,
among others.
Locators match items in a list. The available locators are:
'all'
- matches all items in a list'first'
- matches the first item in a list'last'
- matches the last item in a list['all', <condition>]
- matches all items which meet the condition['first', <condition>]
- matches the first item which meets the condition['last', <condition>]
- matches the last item which meets the condition
first
and last
are "single" locators (they match a maximum of 1
item and can be used as both single-locator
and multi-locator
s).
all
is a "multi" locator (matching an unlimited number of items
and can only be used as a multi-locator
).
const items = [1, 2, 3, 4];
const updatedItems = update(items, [
'update',
'last',
['=', 5],
]);
// updatedItems = [1, 2, 3, 5];
Conditions
Conditions have a similar structure to specs; object hierarchies define property access, and arrays define the conditions themselves:
const items = [{ id: 1 }, { id: 2 }, { id: 3 }, { id: 4 }];
const updatedItems = update(items, [
'delete',
['first', { id: ['=', 3] }],
]);
// updatedItems = [{ id: 1 }, { id: 2 }, { id: 4 }];
Generic conditions
['=', <expected>]
matches if the value equalsexpected
(if multiple values are provided, this checks if the value matches any of them). Note that this usesObject.is
matching, sonull
andundefined
are distinct, and objects / arrays will never compare equal (only test primitive types).['!=', <expected>]
matches if the value does not equalexpected
(if multiple values are provided, this checks if the value does not match any of them)['~=', <expected>]
matches if the value loosely equalsexpected
(if multiple values are provided, this checks if the value matches any of them)['!~=', <expected>]
matches if the value does not loosely equalexpected
(if multiple values are provided, this checks if the value does not match any of them)['>', <threshold>]
matches if the value is strictly greater thanthreshold
['>=', <threshold>]
matches if the value is greater than or equal tothreshold
['<', <threshold>]
matches if the value is strictly less thanthreshold
['<=', <threshold>]
matches if the value is less than or equal tothreshold
['exists']
matches if the value is set to any value (is notundefined
)['and', <condition1>, <condition2>, ...]
matches if all of the sub-conditions match['or', <condition1>, <condition2>, ...]
matches if any of the sub-conditions match['not', <condition>]
negates the sub-condition
List conditions
Use .with(listCommands)
to enable these conditions.
['some', <condition>]
matches if any item in the list matches the sub-condition['every', <condition>]
matches if every item in the list matches the sub-condition['none', <condition>]
matches if no items in the list match the sub-condition (equivalent to['not', ['some', <condition>]]
)['length', <condition>]
checks the length of the list using the given condition
Extending
You can add new conditions with:
const modifiedUpdate = update.with({
conditions: {
// example: >
myGreaterThan: (parameters, context) => (actualValue) => {
// actualValue is the value of the object being tested
return actualValue > parameters[0];
},
// example: and
myAnd: (parameters, context) => (actualValue) => {
const predicates = parameters.map((c) => context.makeConditionPredicate(c));
return (v) => predicates.every((p) => p(v));
},
},
});
Commands reference
Generic
['=', value]
sets the value to the literal value given.['unset']
deletes the value. If the parent is an object, the property is removed. If the parent is an array, the element is removed and subsequent items re-packed. If used on the root,update
will returnundefined
(unlessallowUnset
is specified).['init', value]
if undefined, sets the value to the literal value given. Otherwise leaves the value unchanged.['if', condition, spec, elseSpec?]
applies the givenspec
if thecondition
matches, otherwise applies theelseSpec
(if provided) or does nothing.['seq', specs...]
applies the givenspec
s sequentially. This can be used to create complex updates out of simple operations.// Computes (value + 2 - 10) const updated = update(state, [ 'seq', ['+', 2], ['-', 10], ]);
(note that for mathematical operations it is usually better to use
rpn
, described below).
Object
['merge', object, initial?]
Merges the keys of object into the current target. Similar to callingObject.assign
. Note that any values set toundefined
will be skipped (to avoid behaviour differences after a JSON round-trip). Ifinitial
is provided and the target value is undefined, it will be assigned the value ofinitial
before merging (equivalent to['seq', ['init', initial], ['merge', object]]
).
Boolean
['~']
toggles the current value (true
→false
;false
→true
).
List
Use .with(listCommands)
to enable these commands.
['push', items...]
inserts one or more items at the end of the array.['unshift', items...]
inserts one or more items at the start of the array.['addUnique', items...]
inserts one or more items at the end of the array if they are not already present in the array. Note that this only works with primitive values (strings / numbers / booleans). For more complex objects, consider defining your own condition:[ 'if', ['none', { id: ['=', newID] }], ['push', { id: newID, etc }], ]
['splice', arguments...]
invokessplice
on the array repeatedly. Each argument should be an array of parameters to send thesplice
function;[offset, length, items...]
. Note that offset can be negative to count from the end of the array.['insert', 'before' | 'after', multi-locator, items...]
inserts one or more items before or after the item identified by thelocator
(or at the start / end of the array if no items match, depending on the locator type).['update', multi-locator, spec, elseInsert?]
applies the givenspec
to items in the array which match thelocator
. If no item matches andelseInsert
is set, this inserts a new item (at the end of the array) and applies thespec
to it.['delete', multi-locator]
deletes items in the array which match thelocator
. If no items match, does nothing.['swap', single-locator, single-locator]
swaps the positions of the two items matching the given locators. If either locator does not find a match, does nothing.['move', multi-locator, 'before' | 'after', single-locator]
moves all the items matching the multi-locator before or after the item matching the single locator (preserving their original order). If either locator does not find a match, does nothing.
String
Use .with(stringCommands)
to enable these commands.
['replaceAll', search, replace]
replaces all occurrences ofsearch
in the string withreplace
. Note that thesearch
is used as a literal, not as a regular expression.['rpn', operations...]
reverse Polish notation command; see below for details.
Number
['+', value]
adds the givenvalue
to the current value. This is available in the default command set and does not need an extension.['-', value]
subtracts the givenvalue
from the current value. This is available in the default command set and does not need an extension.
Use .with(mathCommands)
to enable the following
command:
['rpn', operations...]
reverse Polish notation command; see below for details.
rpn
The rpn
command lets you specify updates in reverse Polish
notation. This is especially useful for applying complex mathematical
operations or string manipulations.
Some examples:
// compute x * 2
update(5, ['rpn', 'x', 2, '*']); // = 10
// compute x * 2 + 10
update(5, ['rpn', 'x', 2, '*', 10, '+']); // = 20
// compute sin(x) + 2 * cos(x)
update(5, ['rpn', 'x', 'sin', 2, 'x', 'cos', '*', '+']); // ~= -0.3916
String manipulation is also supported, but should only be enabled if
needed due to its ability to construct large strings, which could be
used by malicious clients to launch memory exhaustion attacks against
a server. To enable string manipulation, use .with(stringCommands)
:
const stringCommands = require('json-immutability-helper/commands/string');
const { update } = require('json-immutability-helper').with(stringCommands);
// compute x.substr(4, 3)
update('foo bar baz', ['rpn', 'x', 4, 3, 'substr']); // = bar
// compute x.leftPad(2)
update('3', ['rpn', 'x', 2, 'leftPad']); // = 03
Some functions accept optional parameters or are variadic. By default
it is assumed that the minimum number of parameters are passed to
each function. To specify a different number, add :<num>
to the end
of the function name:
// compute max(x, -x, 2)
update(4, ['rpn', 'x', 'x', 'neg', 2, 'max:3']); // = 4
// compute log_2(x)
update(8, ['rpn', 'x', 2, 'log:2']); // = 3
String literals can be specified as JSON-encoded strings (this means
that for transport, strings may be double-encoded).
For example: '"foo"'
.
Available constants:
x
: the old valuepi
: the mathematical constant π (3.141…)e
: the mathematical constant e (2.718…)Inf
: positive infinityNaN
: not-a-number
Available functions/operators from mathCommands
:
value 'Number'
: converts the value to a numbera b '+'
: adds two numbersa b c ... '+:n'
: adds many numbersa b '-'
: subtractsb
froma
a b '*'
: multiplies two numbersa b '/'
: dividesa
byb
a b '//'
: dividesa
byb
, returning the truncated integer resulta b '^'
: raisesa
to the power ofb
a b '%'
: returns the remainder ofa / b
(can be negative)a b 'mod'
: returns the positive remainder ofa / b
a 'neg'
: negatesa
a 'abs'
: returns the absolute value ofa
value 'log'
: returns the natural logarithm ofvalue
value base 'log:2'
: returns the logarithm ofvalue
in basebase
value 'log2'
: returns the logarithm ofvalue
in base 2 (same asvalue 2 'log:2'
)value 'log10'
: returns the logarithm ofvalue
in base 10 (same asvalue 10 'log:2'
)value 'exp'
: returns the exponent ofvalue
(i.e.e^value
)value base 'exp:2'
: returnsbase^value
v1 v2 v3 ... 'max:n'
: returns the largest value (the default arity is 2)v1 v2 v3 ... 'min:n'
: returns the smallest value (the default arity is 2)a b 'bitor'
: returns the bitwise-or ofa
andb
a b 'bitand'
: returns the bitwise-and ofa
andb
a b 'bitxor'
: returns the bitwise-xor ofa
andb
a 'bitneg'
: returns the bitwise negation ofa
x 'sin'
: returnssin(x)
in radiansx 'cos'
: returnscos(x)
in radiansx 'tan'
: returnstan(x)
in radiansx 'asin'
: returnsasin(x)
in radiansx 'acos'
: returnsacos(x)
in radiansx 'atan'
: returnsatan(x)
in radiansx 'sinh'
: returnssinh(x)
x 'cosh'
: returnscosh(x)
x 'tanh'
: returnstanh(x)
x 'asinh'
: returnsasinh(x)
x 'acosh'
: returnsacosh(x)
x 'atanh'
: returnsatanh(x)
x 'round'
: roundsx
to the nearest integer ("round halves-up") (for control over the number of decimal places, see'String'
)x 'floor'
: returns the highest integer which is less than or equal tox
("round down")x 'ceil'
: returns the lowest integer which is greater than or equal tox
("round up")x 'trunc'
: returns the largest integer with absolute value less than or equal toabs(x)
("round towards zero")
Available functions/operators from stringCommands
:
value 'String'
: converts the value to a stringvalue dp 'String:2'
: converts the value to a rounded string (decimal places can be a positive or negative integer)string 'length'
: returns the length ofstring
in charactersa b c ... 'concat:n'
: concatenates strings (the default arity is 2)string count 'repeat'
: repeatsstring
count
timesstring search 'indexOf'
: returns the index of the first occurrence ofsearch
instring
(0-based), or -1 if it is not foundstring search start 'indexOf:3'
: returns the index of the first occurrence ofsearch
instring
, skipping the firststart
charactersstring search 'lastIndexOf'
: returns the index of the last occurrence ofsearch
instring
(0-based), or -1 if it is not foundstring search end 'lastIndexOf:3'
: returns the index of the last occurrence ofsearch
instring
within the range up toend
string length 'padStart'
: pads the start ofstring
with spaces until it is at leastlength
characters longstring length padding 'padStart:3'
: pads the start ofstring
withpadding
until it is at leastlength
characters long (fragments of thepadding
string may be used)string length 'padEnd'
: pads the end ofstring
with spaces until it is at leastlength
characters longstring length padding 'padEnd:3'
: pads the end ofstring
withpadding
until it is at leastlength
characters long (fragments of thepadding
string may be used)string from 'slice'
: returns a substring ofstring
fromfrom
to the end of the string. Iffrom
is negative, it counts from the end of the string.string from to 'slice:3'
: returns a substring ofstring
fromfrom
toto
(exclusive). Iffrom
orto
are negative, they count from the end of the string.string from length 'substr'
: returns a substring ofstring
fromfrom
of lengthlength
. Iffrom
is negative it counts from the end of the string.
As a basic protection against memory exhaution attacks, the generated
string length for all operations is capped to 1024 characters, and
String
only accepts decimal places within the range -20 – 20.
These restrictions ensure that memory usage can only be linear in the
number of operations, but could still become very high. As the risk
cannot be fully mitigated, string operations are disabled by default
and must be explicitly enabled by using stringCommands
.
Other context methods
You can access the default context, or create your own scoped context:
const defaultContext = require('json-immutability-helper');
const defaultContext = require('json-immutability-helper');
const myContext = defaultContext.with(/* extensions here */);
.with(...extensions)
returns a new context which copies the current context with the given extensions added. Does not mutate the current context. If called with no extensions, this just makes a copy of the current context, though this is generally not useful (the context is immutable anyway).Extensions can be:
listCommands
:require('json-immutability-helper/commands/list')
mathCommands
:require('json-immutability-helper/commands/math')
stringCommands
:require('json-immutability-helper/commands/string')
Or a custom extension (all fields are optional; any omitted field is left unchanged):
const myExtension = { commands: { myCommand: (object, args, context) => newValue, /* etc. */ }, conditions: { myCondition: (params, context) => (actual) => boolean, /* etc. */ }, limits: { stringLength: 1024, recursionDepth: 10, recursionBreadth: 10000, }, isEquals: Object.is, copy: (o) => myCopyFunction(o), }
The
commands
section defines new commands which can be used in the same places as built-in commands.object
is the previous value for the current position.args
is an array of parameters (excluding the command name).context
is an object which contains the methods listed here, as well asupdate
.The
conditions
section defines new conditions which can be used in the same places as built-in conditions.The
limits
are used by various built-in commands to ensure resource usage does not grow too high. You can omit the entire section or individual entries to leave the defaults, or specify higher or lower limits.isEquals
is the function used internally to determine whether a command caused a value to change (if this returnsfalse
, the original value will be used rather than the new value)copy
is the function used internally to make shallow copies of data structures. The default implementation can clone objects, arrays, and primitive values.Note that as a convenience it is also possible to call
.with
on theupdate
function itself. This does the same thing, but returns a newupdate
function rather than a newcontext
(equivalent to callingupdate.context.with(...).update
)..combine(specs)
generates a single spec which is equivalent to applying all the given specs sequentially. Conceptually this is identical to using['seq', ...specs]
, butcombine
optimises common paths where possible. Note that the specs must be provided in an array, not as variadic parameters..makeConditionPredicate(condition)
generates a predicate for the provided condition. This should be used by custom commands when filtering based on a provided condition is required..invariant(check, message?)
throws an exception ifcheck
is false. Includes the message if specified (can be a string or a function which returns a string).
The default context's update
, combine
and invariant
are also
available as direct imports:
const { update, combine, invariant } = require('json-immutability-helper');
Extending with .with()
By default, json-immutability-helper
exposes minimal commands for
reduced code size and increased security. If you need additional
commands, you can add built-in extensions (see the command list above
to see which commands need which extensions). Note that if you do not
need a particular extension you should not enable it, as all of these
have tradeoffs with bundle size and potential attacks (e.g. resource
exhaustion by generating large strings).
const listCommands = require('json-immutability-helper/commands/list');
const mathCommands = require('json-immutability-helper/commands/math');
const stringCommands = require('json-immutability-helper/commands/string');
const { update } = require('json-immutability-helper').with(listCommands, mathCommands, stringCommands);
or with ES6 imports:
import listCommands from 'json-immutability-helper/commands/list';
import mathCommands from 'json-immutability-helper/commands/math';
import stringCommands from 'json-immutability-helper/commands/string';
import context from 'json-immutability-helper';
const { update } = context.with(listCommands, mathCommands, stringCommands);
Avoid calling .with
inside functions or in loops. Ideally it should
be called once, and the resulting update
function can be called
many times.
Helpers
Some common helpers are also included:
const { getScopedState, makeScopedSpec, makeScopedReducer } = require('json-immutability-helper/helpers/scoped');
const { makeHooks } = require('json-immutability-helper/helpers/hooks');
getScopedState(context, state, path[, defaultValue])
const context = require('json-immutability-helper');
const { getScopedState } = require('json-immutability-helper/helpers/scoped');
const value = { foo: { bar: [{ baz: 7 }] } };
const sub = getScopedState(context, value, ['foo', 'bar', 0, 'baz']);
// sub = 7
const value2 = { foo: [{ id: 1, bar: 'a' }, { id: 2, bar: 'b' }] };
const sub2 = getScopedState(context, value, ['foo', { id: ['=', 2] }]);
// sub2 = { id: 2, bar: 'b' }
Navigates multiple layers of the object, returning the state at the
requested path, or the default value / undefined
if any part of the
path could not be followed.
The path elements can be:
string
s (object lookup)- integer
number
s (array lookup) Condition
s (see above)
Note that because state is immutable, this is a static copy of the current state; it will not automatically update to reflect changes to the original state.
makeScopedSpec(path, spec[, options])
const { makeScopedSpec } = require('json-immutability-helper/helpers/scoped');
const subSpec = makeScopedSpec(['foo', 'bar', 0, 'baz'], ['=', 7]);
// subSpec = { foo: { bar: { 0: { baz: ['=', 7] } } } }
const subSpec2 = makeScopedSpec(['foo', { id: ['=', 2] }, 'bar'], ['=', 7]);
// subSpec2 = { foo: ['update', ['all', { id: ['=', 2] }], { bar: ['=', 7] }] }
Wraps the given spec in a nested path. This is the spec equivalent to
fetching a sub-state from a state using getScopedState
.
The path elements can be:
string
s (object lookup)- integer
number
s (array lookup) Condition
s (see above)
The available options
are:
initialisePath
(boolean, defaults totrue
ifinitialiseValue
is set, elsefalse
): iftrue
, any missing path elements will be initialised automatically as either empty objects or empty arrays (depending on the index type):const subSpec = makeScopedSpec(['foo', 0], ['=', 7], { initialisePath: true }); // subSpec = ['seq', ['init', {}], { foo: ['seq', ['init', []], { 0: ['=', 7] }] }]
initialiseValue
(value, defaults to undefined): if set, the innermost element will be initialised to this value if it is not already set, before the spec is applied.const subSpec = makeScopedSpec(['foo', 0], ['+', 1], { initialiseValue: 0 }); // subSpec = { foo: { 0: ['seq', ['init', 0], ['+', 1]] } }
makeScopedReducer(context, reducer, path[, options])
Returns a scoped reducer (an object containing { state, dispatch }
which delegates to the given reducer (also an object containing
{ state, dispatch }
). Uses getScopedState
and makeScopedSpec
internally.
Note that because state is immutable, the returned state is a static
copy of the current state; it will not automatically update to
reflect changes to the original state (nor will it update if the
returned dispatch
method is called).
The available options
are:
initialisePath
(boolean, defaults totrue
ifinitialiseValue
is set, elsefalse
): iftrue
, the dispatch will automatically initialise any missing path elements as either empty objects or empty arrays (depending on the index type):initialiseValue
(value, defaults to undefined): returned if the value at the given path is not set. Also applied as aninit
value when dispatching changes.const sub = makeScopedReducer(context, reducer, ['foo'], { initialiseValue: [] }); sub.dispatch(['push', 1]); // safe even if foo was not already set, because it will be initialised to [] first
makeHooks(path, spec)
const React = require('react');
const context = require('json-immutability-helper');
const { makeHooks } = require('json-immutability-helper/helpers/hooks');
const { useJSONReducer, useWrappedJSONReducer, useScopedReducer } = makeHooks(context, React);
This is a convenience for making common React (or Preact) hooks from the context. The second argument should be an object which contains at least:
useState
useRef
useLayoutEffect
oruseEffect
- optionally
useMemo
- optionally
useReducer
For React
, the main React object covers this requirement. For
Preact
, you can use the preact/hooks
extension.
The returned hooks are:
useJSONReducer(initialArg, init?)
: wraps React'suseReducer
, withcontext.update
as the reducer. Returns an object with{ state, dispatch }
.useWrappedJSONReducer(next)
: same asuseJSONReducer
, but delegates storage tonext
, which should be a 2-element array:[state, setState]
(as returned from e.g.useState
). Returns an object with{ state, dispatch }
.useScopedReducer(reducer, path, options?)
: returns a scoped reducer, usinggetScopedState
andmakeScopedSpec
internally. Thereducer
parameter should be an object with{ state, dispatch }
(as returned byuseJSONReducer
/useWrappedJSONReducer
, or anotheruseScopedReducer
).The available options are the same as for
makeScopedReducer
.
The returned dispatch
functions are always stable references.
The returned objects are memoised, so only change when the state
changes (unless useMemo
was not provided).
Note that makeScopedReducer
and useScopedReducer
have the same
behaviour, but useScopedReducer
is a better option in siturations
where hooks can be used, as it will return a stable dispatch function
and memoises the returned entity (helping to reduce unnecessary
re-rendering).
As a convenience, a user-space useEvent
hook is also returned,
because it is used internally. If you prefer, you can also pass in
your own useEvent
hook (removes the need for useRef
and
useLayoutEffect
/ useEffect
).
Example usage of hooks:
const React = require('react');
const context = require('json-immutability-helper');
const { makeHooks } = require('json-immutability-helper/helpers/hooks');
const { useJSONReducer, useScopedReducer } = makeHooks(context, React);
const App = () => {
const scope = useJSONReducer({ items: [] });
return <MyList scope={scope} />
};
const MyList = ({ scope }) => {
const localScope = useScopedReducer(scope, ['items']);
const add = () => localScope.dispatch(['push', { id: crypto.randomUUID(), label: '' }]);
return (
<ul>
{localScope.state.map((item) => (
<li key={item.id}>
<MyItem scope={localScope} id={item.id} />
</li>
))}
<li><button type="button" onClick={add}>Add</button></li>
</ul>
);
};
const MyItem = ({ scope, id }) => {
const localScope = useScopedReducer(scope, [['id', id]]);
return (
<>
<input
type="text" value={localScope.state.label}
onChange={(e) => localScope.dispatch({ label: ['=', e.currentTarget.value] })}
/>
<button onClick={() => localScope.dispatch(['unset'])}>Remove</button>
</>
);
};