npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

update-js

v1.9.1

Published

JS object immutability helper

Downloads

582

Readme

update-js

JS object immutability helper

build status npm version

Installation

npm install --save update-js

Usage

Basic Usage

import update from 'update-js';

const obj = { foo: { bar: [{ baz: 1 }, { baz: 2 }] }, bak: { barbaz: 1 } };
const upd = update(obj, 'foo.bar.1.baz', 3);
// ^ the same as:
// const upd = { ...obj, foo: { ...obj.foo, bar: [obj.foo.bar[0], { ...obj.foo.bar[1], baz: 3 }] } };

// all of the following is true:
upd.foo.bar[1].baz === 3;
upd                !== obj;
upd.foo            !== obj.foo;
upd.foo.bar        !== obj.foo.bar;
upd.foo.bar[0]     === obj.foo.bar[0];
upd.foo.bar[1]     !== obj.foo.bar[1];
upd.bak            === obj.bak;

Updating Multiple Keys at Once

By passing object instead of string path you can update multiple values with one operation. In this case object keys are used as paths at which corresponding object values should be assigned.

const obj = { foo: { bar: 'baz' }, baz: [{ bak: 'foo' }] };
const upd = update(obj, {
  'foo.bar': 'baz2',
  'foo.baz.0.bak': 'foo2'
});

upd.foo.bar // => 'baz2'
upd.foo.baz[0].bak // => 'foo2'

Using Helper Methods in Multi-Keys Updates

You can also use helper methods when updating multiple keys at once. When calling them, you just have to omit first two obj and path arguments:

const obj = { foo: true, bar: { baz: [1, 2], bak: [{ a: 'a1' }, { a: 'a2' }] } };
const upd = update(obj, {
  foo: false,
  'bar.baz': update.push(3),
  'bar.bak.{a:a2}': update.assign({ b: 'b2' })
});

upd // => { foo: false, bar: { baz: [1, 2, 3], bak: [{ a: 'a1' }, { a: 'a2', b: 'b2' }] } }

Using Custom Updater Function

You can use update.with function that accepts updater function instead of value. The current value at the path is passed as only argument to this function:

const obj = { foo: { bar: [1, 2, 3, 4] }, bak: { barbaz: 1 } };
const upd = update.with(obj, 'foo.bar', (old) => old.filter(i => i % 2 === 0));

upd.foo.bar // => [2, 4]

Be careful not to update old object in place when using updater function.

Using Object Lookup Keys

Lookup keys are used to index objects in array by their property values. For example:

import update from 'update-js';

const obj = {
  foo: {
    items: [
      { id: 1, bar: 2 },
      { id: 2, bar: 3 },
      { id: 3, bar: 4 }
    ]
  }
}
const upd = update(obj, 'foo.items.{id:2}.bar', 5);

upd.foo.items[1].bar === 5 // true

Notes on object lookup:

  • Object auto-generation is not supported when using path with object lookup, i.e. both collection and object specified by lookup key should exist. If no object exists, update action will be ignored.
  • Lookup should be used with simple values since it uses == comparison.
  • It is possible to specify several lookup fields, like {type:foo,name:bar}.

Handling Missing Objects

When update encounters lookup key that doesn't correspond to any object in collection, it invokes update.onLookupMissingObject handler, passing collection and lookup key to that function. There may be different strategies for handling such cases, depending on execution environment and your needs.

update-js provides 3 predefined handlers, available from update-js/utils:

import update from 'update-js';
import { warnOnMissing, throwOnMissing, noop } from 'update-js/utils';

update.onLookupMissingObject = warnOnMissing;
// ^ this will `console.warn` message regarding attempt to update missing object

update.onLookupMissingObject = throwOnMissing;
// ^ this will throw exception on attempt to update missing object

update.onLookupMissingObject = noop;
// ^ this will ignore attempt entirely

The default value for update.onLookupMissingObject is noop.

update-js/fp Module

Aside from main functionality of update function, update-js also provides update-js/fp module. The updateFp function imported from it generates a transformation-currying function that accepts a subject of update as it's only argument. It can be used as a callback for some state-updater function. For example, one may have something like:

import update from 'update-js/fp';

setState(update('foo.bar.baz', 5));
// ^ with `update` from 'update-js' it is the same as:
// setState((state) => {
//   return update(state, 'foo.bar.baz', 5);
// });

updateFp function has the same helper methods as it's update counterpart, for example:

import update from 'update';
import updateFp from 'update/fp';

update.add(state, 'list.items', obj);
// ^ the same as:
updateFp.add('list.items', obj)(state);

NOTE: if you want to use update helpers in multi-key updates, you have to use the ones provided by base update package.

Helper Methods

Array Update Helpers

update.unshift

Adds item to the array at the beginning of it.

import update from 'update-js';

const obj = { foo: { bar: [1, 2] } };
const upd = update.unshift(obj, 'foo.bar', 3);

upd.foo.bar // => [3, 1, 2];

Alias: update.prepend

update.push

Adds item to the array.

import update from 'update-js';

const obj = { foo: { bar: [1, 2] } };
const upd = update.push(obj, 'foo.bar', 3);

upd.foo.bar // => [1, 2, 3];

Alias: update.add

update.remove

Removes item from the array by index or lookup key.

import update from 'update-js';

const obj = { foo: { bar: [1, 2, 3, 4] } };
const upd = update.remove(obj, 'foo.bar.1');

upd.foo.bar // => [1, 3, 4];

With lookup key:

const obj = {
  foo: {
    items: [
      { id: 1, bar: 2 },
      { id: 2, bar: 3 },
      { id: 3, bar: 4 }
    ]
  }
}
const upd = update.remove(obj, 'foo.items.{id:2}');

upd.foo.items // => [{ id: 1, bar: 2 }, { id: 3, bar: 4 }]

Note that this helper cannot be used to remove item from array if the latter is used as target object, i.e. update.remove(obj, '1') won't work.

Object Update Helpers

update.assign

Assigns properties of the given object to the one specified by the path.

import update from 'update-js';

const obj = { foo: { bar: { baz: 'bak' } } };
const upd = update.assign(obj, 'foo.bar', { bak: 'baz' });

upd.foo.bar // => { baz: 'bak', bak: 'baz' };

update.del

Deletes object property at specified path.

import update from 'update-js';

const obj = { foo: { bar: { baz: 'bak', bak: 'baz' } } };
const upd = update.del(obj, 'foo.bar.baz');

upd.foo.bar // => { bak: 'baz' };

Note that this helper cannot be used to delete property for target object itself, i.e. update.del(obj, 'foo') won't work.

Credits

License

MIT