0.4.5 • Published 4 months ago

hydrogen-store-immer-plugin v0.4.5

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

hydrogen-store-immer-plugin

使用 immerPlugin,可以使用 immer 的语法简化编写 reducer // TODO 暂时不能与 hydrogen-store-redux-plugin 同时使用,将在下个版本支持

用法

// 使用前
const reducers = {
  testAction: (state, payload) => ({
    ...state,
    data: {
      ...state.data,
      a: {
        ...state.data.a,
        b: 2,
      },
    },
  }),
}

// 使用后
const reducers = {
  testAction: (state, payload) => {
    state.data.a.b = 2
  },
}
import { createStore } from 'hydrogen-store'
import immerPlugin from 'hydrogen-store-immer-plugin'

const testModel = {
  state: { data: { a: { b: 1 } } },
  reducers: {
    testAction: (state, payload) => {
      state.data.a.b = 2
    },
  },
  effects: {},
}

export const singleStore = createStore({
  modules: {
    test: testModel,
  },
  plugins: [effectPlugin, immerPlugin],
})
0.4.5

4 months ago

0.3.8

2 years ago

0.4.0

1 year ago

0.3.2

2 years ago

0.3.1

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.31

2 years ago

0.1.32

2 years ago

0.1.30

3 years ago

0.1.29

3 years ago

0.1.28

3 years ago