Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A statically-typed update helper for immutable data.

License

NotificationsYou must be signed in to change notification settings

hydux/hydux-mutator

Repository files navigation

Build Statusnpmnpm

A statically-typed immutable update helper library.

ForHydux.

Features

  • Statically-typed
  • Support class state
    • Using constructor to create new instance
    • Class can define ashallowClone method to customize shallow clone.

install

yarn add hydux-mutator# or npm i hydux-mutator

Usage

import{setIn,updateIn}from'hydux-mutator'classUser{name='aa'age=0}letuser=newUser()user=setIn(user,_=>_.name,'bb')user=updateIn(user,_=>_.age,a=>a+10)

Note: The accessor lambda function only support plain object/array. e.g.

setIn(user,_=>_.name,'a')setIn(user,_=>_.teacher.name,'a')setIn(user,_=>_['tags'][0],'a')setIn(user,_=>_.tags[0],'a')

Whichnot support:

  • Map/Set/Third-party collection library
  • Function calls

But how can I use it in these scenarios? The answer is nesting:

letstate={userMap:newMap<string,User>(),userObjMap:{}as{[key:string]:User},}letkey='a'state=updateIn(state,_=>_.userMap,map=>(map=newMap(map),map.set(key,setIn(map.get(key),_=>_.name,'new name')),map))

Dynamic keys

Because hydux-mutator get the deep key path by parsing the lambda string, we cannot get the dynamic path in the accessor scope, so we have to pass it to the function as ctx, see:

letstate={userObjMap:{}as{[key:string]:User},}letkey='some key'state=setIn(state,_=>_.userObjMap[key],'new name',[key])

NOTE: The order of ctx should be the same as the occurrence order of dynamic keys.

Collections

We also provide some immutable collections likeimmutable-js, which has O(1) - O(logN) performance for update operations.

Note: Polyfill forSymbol.iterator is required!

All these collections can work seamlessly withsetIn/updateIn/getIn/unsetIn functions!

import{setIn}from'hydux-mutator'importImmuListfrom'hydux-mutator/lib/collections/list'constbook={title:'book1'}conststate={list:newImmuList([book,book,book])}setIn(state,_=>_.list.get(0).title,'new title')

We also support fb'simmutable-js or others contains.get(key: string | number) and.set(key: string | number, value: any) methods.

Immer like api.

Note: This is based ones6 Proxy, you might need aproxy polyfill if you want to use in es5 environment.

importimmerfrom'hydux-mutator/lib/immer'conststate={subState:{nestedSubState:1}}constnextState=immer(state,(draft,state)=>{draft.subState.nestedSubState=state.subState.nestedSubState+1})// nextState => {//   subState: {//     nestedSubState: 2//   }// }

What's the difference withmonolite

The main difference ismonolite is using es6'sProxy<T> under the hood, which might not support well in many browsers.

hydux-mutator is implement by parsing lambda function's source string(fn.toString()), this have better browser support. And the parsing part can easily be cached, which means it can have better performance.

What's more,hydux-mutator support class state, which I rarely see in other immuatble update helpers.

import*asmutatorfrom'hydux-mutator'classUser{constructor(name='',age=0){// constructor should have an overload of zero parameters.this.name=namethis.age=age}}letstate={user:newUser()}state=mutator.setIn(state,_=>_.user.name,'New Name')state.userinstanceofUser// true!

Known Issues

  • flow has bug in checkingsetIn, see:#5569

Benchmark

Start Suit: Set 1 keyimmutable x 932,328 ops/sec ±14.93% (46 runs sampled)seamless-immutable x 67,021 ops/sec ±16.99% (44 runs sampled)timm x 881,627 ops/sec ±17.53% (62 runs sampled)monolite x 151,347 ops/sec ±13.51% (46 runs sampled)mutator x 219,049 ops/sec ±5.03% (71 runs sampled)Fastest is immutable,timmStart Suit: Set 2 keyimmutable x 732,474 ops/sec ±9.49% (57 runs sampled)seamless-immutable x 28,802 ops/sec ±12.65% (53 runs sampled)timm x 715,487 ops/sec ±9.31% (55 runs sampled)monolite x 97,454 ops/sec ±12.41% (55 runs sampled)mutator x 147,161 ops/sec ±16.37% (53 runs sampled)Fastest is immutable,timmStart Suit: Set 5 keyimmutable x 374,647 ops/sec ±13.05% (55 runs sampled)seamless-immutable x 19,725 ops/sec ±8.40% (62 runs sampled)timm x 217,508 ops/sec ±9.00% (43 runs sampled)monolite x 80,403 ops/sec ±6.32% (69 runs sampled)mutator x 111,625 ops/sec ±4.92% (65 runs sampled)Fastest is immutableStart Suit: Set 10 keyimmutable x 257,998 ops/sec ±4.59% (69 runs sampled)seamless-immutable x 11,238 ops/sec ±10.45% (59 runs sampled)timm x 219,370 ops/sec ±8.29% (59 runs sampled)monolite x 32,778 ops/sec ±7.16% (48 runs sampled)mutator x 54,496 ops/sec ±8.72% (60 runs sampled)Fastest is immutable

License

MIT

About

A statically-typed update helper for immutable data.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp