Giter VIP home page Giter VIP logo

redux-cli's Introduction

This repo aim to speed up your dev by auto generate three basic redux components

  • ACTIONS
  • REDUCER
  • DISPATCHER

HOW TO USE

  • git clone [email protected]:tsaowe/redux-cli.git
  • cd redux-cli
  • mkdir .redux
  • touch .redux/actions.json

vim .redux/actions.json

{
  "setFileStatus": ["filePath","mode"],
  "setActiveIndex": ["index","parent"],
  "openWindow": []
}
  • node src/index.js

  • cat .redux/output.js

import produce from "immer"

/***************************************ACTIONS start******************************************************************/
export const ACTIONS = {
  SET_FILE_STATUS: 'REDUX-CLI@SET_FILE_STATUS',
  SET_ACTIVE_INDEX: 'REDUX-CLI@SET_ACTIVE_INDEX',
  OPEN_WINDOW: 'REDUX-CLI@OPEN_WINDOW'
};
/***************************************ACTIONS end  ******************************************************************/


/***************************************reducer start******************************************************************/
export const reducer = (state = []/*todo*/, action) => {
  const {type} = action;
  switch (type) {
    case ACTIONS.SET_FILE_STATUS:
      const {filePath, mode} = action;
      return produce(state, draftState => {
        // todo
      });
    case ACTIONS.SET_ACTIVE_INDEX:
      const {index, parent} = action;
      return produce(state, draftState => {
        // todo
      });
    case ACTIONS.OPEN_WINDOW:
      return produce(state, draftState => {
        // todo
      });
    default:
      return state;
  }
};
/***************************************reducer end********************************************************************/


/***************************************dispatcher start***************************************************************/
export const dispatchers = {
  setFileStatus: (filePath, mode) => ({
    type: ACTIONS.SET_FILE_STATUS,
    filePath,
    mode
  }),
  setActiveIndex: (index, parent) => ({
    type: ACTIONS.SET_ACTIVE_INDEX,
    index,
    parent
  }),
  openWindow: () => ({
    type: ACTIONS.OPEN_WINDOW
  })
};
/***************************************dispatcher end*****************************************************************/

I use immer as my immutable state tool, but you can use your own immutable~ enjoy

Any feature or suggestion please submit an issue

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.