Socket
Socket
Sign inDemoInstall

@arthur791004/redux-lazy

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arthur791004/redux-lazy

A syntax sugar for user to quickly create types, actions and reducer. You only need to give the mapping of action name and its handler, and then redux-lazy would generate all of you want.


Version published
Maintainers
1
Created
Source

redux-lazy

A syntax sugar for user to quickly create types, actions and reducer. You only need to give the mapping of action name and its handler, and then redux-lazy would generate all of you want.

Installation

yarn add @arthur791004/redux-lazy

Usages

reduxLazy

a function needs actions and initialState as parameters and returns types, actions and reducer for you.

interface ActionHandler<State> {
  (state: State, payload: any): State;
}

type Actions<State> = {
  [key: string]: ActionHandler<State>;
};

type ActionCreators = {
  [key: string]: ActionCreator<AnyAction>;
};

type ActionTypes = {
  [key: string]: string;
};

interface ReduxLazy<State> {
  (actions: Actions<State>, initialState: State): {
    actions: ActionCreators;
    reducer: Reducer<State, AnyAction>;
    types: ActionTypes;
  };
}
Examples
import { combineReducers, createStore } from 'redux';
import reduxLazy from '@arthur791004/redux-lazy';

const initialState = {
  value: 0,
};

const { actions, reducer } = reduxLazy(
  {
    increment: (state, payload) => ({
      value: state.value + payload,
    }),

    decrement: (state, payload) => ({
      value: state.value - payload,
    }),
  },
  initialState
);

const reducers = combineReducers({
  counter: reducer,
});

const store = createStore(reducers);

store.dispatch(actions.increment(5)); // state: { counter: { value: 5 } }
store.dispatch(actions.decrement(4)); // state: { counter: { value: 1 } }

Keywords

FAQs

Package last updated on 27 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc