0.0.9 • Published 6 years ago

revuex v0.0.9

Weekly downloads
3
License
MIT
Repository
-
Last release
6 years ago

Revuex

Revuex is a state manager based upon redux and inspired by vuex. You can manipulate state of your react/redux app in the vuex-like way.

What's wrong with redux?

What Problems Revuex Solved?

The switch-case-in-reducer pattern is vulnerable because all the code inside a switch block share a same scope.

Features

  • Fully modularize your redux store.

Installation

npm install revuex

Usage

Check the detailed example.

Terminology

store

A revuex store instance is an enhanced redux store with more methods.

rootState

The root state of a revuex store. It must not be mutated.

actionCreators, or simply creators

In revuex, an actionCreator is merely a function in which you can invoke other actionCreators or dispatch actions.

API Reference

Top-level

createStore(options: Object): Store

Create and return a revuex store instance.

Example:
import * as Redux from 'redux';
import Revuex from 'revuex';
const store = Revuex.createStore({
  redux: Redux,
  state: {
    name: 'app'
  },
  modules: {
  },
  creators: {
    init({ state, rootState, invoke, dispatch }) {
    }
  },
  actions: {}
});

Store

getState(): Object

Return the current rootState of the store.

const state = store.getState();

ensure(pathArr: string[], rawModule: Object)

If no module was registered to the given path, register the module to it, otherwise nothing will happen.

import rawModuleC from './baz.js';
// Try to register a module
store.ensure(['foo', 'baz'], rawModuleC);

invoke(path: string, payload?: Object)

Invoke an action creator.

store.invoke('foo/bar/do_something', payload);

dispatch(path: string, payload?: Object)

Dispatch an action.

store.dispatch('foo/bar/LIKE', {
  comment_id: 118
});

License

MIT

0.0.9

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago