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

redux-actions-creator

v1.3.6

Published

redux helper to create redux actions & reducers with Immutable(seamless-immutable)

Downloads

39

Readme

redux-actions-creator

redux actions创建助手,集成redux, react-actions, immutable(seamless-immutable)

使用redux常常需要创建大量的常量字面量,手动创建actions, 以及相应的reducers进行数据处理,redux-actions-creator 简化这类的流程,基于两个方法buildRedux和buildListRedux来减少重复性的工作. 返回对象包含actions, types, reducer

安装

yarn install redux-actions-creator
# or
# npm install redux-actions-creator

使用

redux.js

import { buildListRedux, buildRedux } from 'redux-actions-creator'
import { combineReducers } from 'redux'

export const companyListRedux = buildListRedux('company_list')
export const companyAddRedux = buildRedux('company_add')

export default combineReducers({
  list: companyListRedux.reducer,
  add: companyAddRedux.reducer
})

container.js

...
import {companyListRedux, companyAddRedux} from './redux'

class ContainerComponent extends React.Component { ... }


export default connect(
  state => ({
    ...
  }),
  dispatch => bindActionCreators({
    actionList: (page, limit, params) => companyListRedux.actions.start(page, limit, params), // list
    actionAdd: (data) => companyAddRedux.actions.start(data), // add
  }, dispatch),
)(ContainerComponent)

API

buildRedux(actionName, defaultData)

| params | type | description | | ----------- | ------ | ------------------------------- | | actionName | string | Redux action name | | defaultData | object | data to extend the initial data |

初始值(state)

{
  loading: false,
  error: false,
  success: false,
  errorMessage: '',
  params: null,
  ...defaultData
}

返回值

{
  reducer, 
  types: {  // 常量
    START,
    SUCCESS,
    RESET,
    ERROR,
  },
  actions: {  // actions
    start,     // action: params => params
    success,   // action: data => ({data})
    error,     // action: errorMessage => ({errorMessage})
    reset,     // action
  },
}

buildListRedux(actionName, defaultData)

| params | type | description | | ----------- | ------ | ------------------------------- | | actionName | string | Redux action name | | defaultData | object | data to extend the initial data |

初始值(state)

{
  loading: false,
  error: false,
  success: false,
  errorMessage: '',
  params: null,
  data: {
    page: 1,
    per_page: 10,
    total_count: 0,
    total_page: 0,
    entries: [],
  },
  ...defaultData
}

返回值

return {
  reducer, 
  types: {  // 常量
    START,
    SUCCESS,
    RESET,
    ERROR,
  },
  actions: {  // actions
    start,     // action: (page, limit, params) => ({page, limit, params})
    success,   // action: data => ({data})
    error,     // action: errorMessage => ({errorMessage})
    reset,     // action
  },
}

状态变更

/* initial data */
{
  loading: false,
  success: false,
  error: false,
}


actions.start() // => loading: true 
actions.success() // => success: true
actions.error() // => error: true, errorMessage(optional)
actions.reset() // => initial data

Connect Sagas

API 额外提供的reducer create actions与sagas处理合并

  1. 初始化store, 合并sagas
import { allSagas, init } from 'react-actions-creator'
import doFetch from 'your fetch funciton file' // fetch

init(doFetch) // 初始化fetch方法

...

export default function* rootSaga(getState) {
    yield all(sagas.concat(allSagas))
}
  1. 使用

buildListReduxConnectSaga(actionName, initData)(object) actionName, initData参数跟方法buildListRedux一致 object是saga的监听方法, 两次调用返回值跟buildListRedux一致,返回types, actions, reducer, 具体参数如下:

import { buildListReduxConnectSaga, buildReduxConnectSaga } from 'react-actions-creator'

export const companyListRedux = buildListReduxConnectSaga('company_list', {})({
  url: (payload, {}) => {
    return API.company.list(payload.page, payload.limit) + payload.params
  },
  method: 'GET',
  data: function*(data, payload, {}) {
    ...
  },
  resultHandler: function*() {
    ...
  },
  after: function*() {
    ...
  }
})

buildListReduxConnectSaga(actionName, initData)(object) object参数


参数方式1 - 对象

| name | type | description | | ------------- | ----------------------------------------------------- | ------------------------------------------------------------ | | url | String | (payload, sagaActions) => string | 请求地址 | | method | String | 'GET', 'POST' ... | | data | (payload, sagaActions) => data | 请求发送请求(常用put, post方法)以前针对body部分的data的处理 | | resultHandler | (data, payload, sagaActions, allReduxActions) => data | 请求数据成功以后, 处理data后返回,自动调用该actions.success(data)方法 | | after | (data, payload, sagaActions, allReduxActions) => void | resultHandler执行完毕后调用 | | catch | (e, payload, sagaActions, allReduxActions) => void | e为异常error |


import { buildListRedux, buildRedux, buildListReduxConnectSaga } from 'redux-actions-creator'
import { obj2params } from 'utils/objectHelper'
import { API } from 'conf/api'
import { mockDataWrapper } from 'utils/mockDataHelper'

...

export const companyListRedux = buildListReduxConnectSaga('company_list')({
  url: (payload) => {
    console.log('load list', payload)
    const { page = 1, limit = 10, params } = payload
    const tranParams = obj2params(params)
    return API.company.list(page, limit) + (tranParams ? '&' + tranParams : '')
  },
  method: 'GET',
  
  // fetch请求后
  resultHandler: (data, payload, { put }, actions, allReduxActions) => {
    const { page = 1, limit = 10, params } = payload
    return mockDataWrapper(data, page, limit)
  },
  // resultHandler执行完以后
  after: function* (data, payload, { put }, actions) {
    const { page = 1, limit = 10, params } = payload
    if (page === 1) {
      yield new Promise(r => { setTimeout(() => r(), 1000)})
    }
  },
  
  // 错误异常
  catch: async (e) => {
    await new Promise(resolve => setTimeout(() => resolve(), 1000)) // 异步1s
    console.log(e)
  }
})

注意,resultHandler, after, catch方法, 可以接受三种函数,分别分同步, sync异步,或者generator function

  1. 当方法不需要异步操作时,直接使用同步方法
  2. 当需要异步操作时,使用 async () => any 的方法
  3. 当需要异步并且还使用到put等saga的function,使用generator, function*() => yield any

参数方式2 - generator function

function* (payload, sagaActions, actions, allReduxActions) { ... }

| name | type | description | | --------------- | ------ | ------------------------------------------------------------ | | payload | object | action.payload对象 | | sagaActions | object | saga的API: 包含put, select, call, delay | | actions | object | 当前创建的actions: 包含start, success, reset, error | | allReduxActions | object | 全局其他地方创建的redux action, 比如 allReduxActions['companyList'].start()其中companyListbuildRedux, buildListRedux, buildReduxConnectSaga, buildListReduxConnectSaga方法传入的第一个actionName参数的驼峰形式 |

...

export const companyListRedux = buildListReduxConnectSaga('companyList')(
  function* (payload, { put, call }, actions) {
    try {
      let { page, limit, params } = payload
      page = page || 1
      limit = limit || 10
      const tranParams = obj2params(params) // 序列化
      const url = API.company.list(page, limit) + (tranParams ? '&' + tranParams : '')
      const data = yield call(doFetch, { url, method: 'GET' })
      yield put(actions.success(mockDataWrapper(data, page, limit)))
    } catch(e) {
      console.log(e)
      actions.reset()
    }
  }
)