reax-standalone
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

reax-standalone

latest version minzipped size

Tiny, fast and dependency-free React and Preact state management in style of Vuex

Since v1.1.0 supports pure Preact without preact/compat!

Try it — Codesandbox

Features:

  • Super-simple API in the style of Vuex (mutations, getters, etc);
  • no context providers: just import and use;
  • super-easy connection for class-based components;
  • static and dynamic modules support.

Table of contents

  1. Motivation
  2. Important points
  3. Usage
    1. Usage with functional components
    2. Usage with class-based components
    3. Usage with both types of component
  4. Modules
  5. Actions
  6. Direct subscription
  7. API

Motivation

I love Vuex and find it the most convenient library for managing the application state. I already have a reax-store project, a Redux addon that provides a Vuex style API. This repository is a standalone implementation with no dependencies, neither from Redux nor anything else.

The reax-store itself is very lightweight (roughly 700 bytes), but this size does not include Redux. Reax-standalone provides its own Observable implementation, so the total compressed size of this library, which doesn't need anything else to run, is not much larger than the reax-store.

Important points

  • It is not 100% Vuex compatible. Please do not open issues related to API mismatch or the fact that some things are not quite in the places where you expect.

Usage

Install the package first:

npm install reax-standalone

Then, create a file describing your store:

// src/store/index.js

import { createStore } from "reax-standalone";

const store = createStore({
  state: {
      count: 0
  },
  mutations: {
      incrementCount(state, payload) {
          state.count += payload ?? 1
      }
  },
  getters: {
      getCount: state => state.count,
      
      // Access getters inside getters
      getCountSquared: (state, getters) => {
          const count = getters.getCount()
          return count ** 2
      }
  }
})

Usage with functional components

To optimize the size of the bundle, helpers for connecting to different types of React components have been moved to different modules.

For use with functional components, update your module with the store like this:

// src/store/index.js

import { createStore } from "reax-standalone";
// import the connection code
// for react:
import forFunctional from "reax-sandalone/forFunctional"
// this is for react too:
import forFunctional from "reax-sandalone/forFunctional/react"
// for preact:
import forFunctional from "reax-sandalone/forFunctional/preact"

const store = createStore({
  state: {
      count: 0
  },
  mutations: {
      incrementCount(state, payload) {
          state.count += payload ?? 1
      }
  }, 
  getters: {
      getCount: state => state.count,
    
      // Access getters inside getters
      getCountSquared: (state, getters) => {
          const count = getters.getCount()
          return count ** 2
      }
  }
})

// exporting a store ready to work with functional components
export default forFunctional(store)

After that you can use Reax in your components like this:

// App.jsx
import store from "./store";

function App() {
  // Please note: unlike Vuex, we must call 
  // the getter function, since in Reax this 
  // is just a wrapper over the react hooks
  const count = store.getters.getCount()
  
  return (
      <div>
        <button onClick={() => {
          store.commit('incrementCount', 3)
        }}>
          count is: {count}
        </button>
      </div>
  )
}

That's it!

Usage with class-based components

For class-components, Reax maps the results of getter functions to a state object. To get started, connect the functionality in the store module:

// src/store/index.js

import { createStore } from "reax-standalone";
// import the connection code, both react and preact
import forClasses from "reax-sandalone/forClasses"

const store = createStore({
  state: {
      count: 0
  },
  mutations: {
      incrementCount(state, payload) {
          state.count += payload ?? 1
      }
  },
  getters: {
      getCount: state => state.count,

      // Access getters inside getters
      getCountSquared: (state, getters) => {
          const count = getters.getCount()
          return count ** 2
      }
  }
})

// exporting a store ready to work with class components
export default forClasses(store)

Then, in your component:

// App.jsx
import store from "./store";

class App extends React.Component {
  state = {};
  
  constructor() {
    super();
  }

  componentDidMount() {
    // Note that it is important to pass context to the method. 
    // Then the state will update automatically.
    // You can pass more than one getter in a string array, 
    // including module getters.
    store.connectGettersToState(this, ['getCount'])
  }
  
  render() {
    return (
      <div>
        <button onClick={() => {
          store.commit('incrementCount', 3)
        }}>
          {/* The state object will contain the keys corresponding to the keys */}
          {/* of the getters. If you have included a module getter, the */}
          {/* key will include a slash (this.state[myModule/getter]) */}
          count is: {this.state['getCount']}
        </button>
      </div>
    )
  }
}

That's it!

Usage for both types of component

If you need to use Reax with both functional and class components, you can perform this:

// import the connection code, for react:
import forAll from "reax-sandalone/forAll"
// also for react:
import forAll from "reax-sandalone/forAll/react"
// for preact:
import forAll from "reax-sandalone/forAll/preact"

export default forAll(store)

Modules

As with Vuex, you can use modules. All modules are always namespaced. Accessing getters and mutations is similar to Vuex.

// src/store/index.js

const LetterModule = {
  state: {
      text: 'a'
  },
  mutations: {
      addA(state) {
          state.text += 'a'
      }
  },
  getters: {
      getText: state => state.text
  }
}

const store = {
  state: {
      count: 0
  },
  mutations: {
      incrementCount(state, payload) {
          state.count += payload ?? 1
      }
  },
  getters: {
      getCount: state => state.count
  },
  modules: {
      LetterModule
  }
}
// App.jsx
import store from "./store";

function App() {
  const count = store.getters.getCount()
  const letters = store.getters['LetterModule/getText']()
  
  return (
      <div>
        <p>{count}</p>
        <p>{text}</p>
        <button onClick={() => {
          store.commit('incrementCount', 3)
          store.commit('LetterModule/addA')
        }}>
          count is: {count}
        </button>
      </div>
  )
}

You can register and unregister modules dynamically using the registerModule and unregisterModule methods of the store instance.

// src/store/index.js

export const LetterModule = {
  state: {
      text: 'a'
  },
  mutations: {
      addA(state) {
          state.text += 'a'
      }
  },
  getters: {
      getText: state => state.text
  }
}

const store = {
  state: {
      count: 0
  },
  mutations: {
      incrementCount(state, payload) {
          state.count += payload ?? 1
      }
  },
  getters: {
      getCount: state => state.count
  }
}
// App.jsx
import store, { LetterModule } from "./store";

store.registerModule('LetterModule', LetterModule)

function App() {
  useEffect(() => {
      return () => store.unregisterModule('LetterModule')
  }, [])
    
  const count = store.getters.getCount()
  const letters = store.getters['LetterModule/getText']()
  
  return (
      <div>
        <p>{count}</p>
        <p>{text}</p>
        <button onClick={() => {
          store.commit('incrementCount', 3)
          store.commit('LetterModule/addA')
        }}>
          count is: {count}
        </button>
      </div>
  )
}

Actions

Since version 1.0.0, "actions" have been added to reax - asynchronous functions that have direct access to storage mutations and getters, allowing you to conveniently manage data flows and application state.

An important point: actions are always asynchronous. They can return values, but you have to use either the promise syntax or async/await.

To add an action, write the following in the store descriptor:

const store = {
  state: {
      count: 0
  },
  mutations: {
      incrementCount(state, payload) {
          state.count += payload ?? 1
      }
  },
  actions: {
      increaseWithTimeout(context, payload) {
          return new Promise(resolve => {
              setTimeout(() => {
                  context.commit('incrementCount', payload)
              }, 1000)
          })
      }
  },
  getters: {
      getCount: state => state.count
  }
}

Then, in the components, you can call the dispatch method, passing the text action key and payload as arguments.

// App.jsx
import store from "./store";

function App() {
    
  const count = store.getters.getCount()
  
  return (
      <div>
        <p>{count}</p>
        <button onClick={() => {
          store.dispatch('increaseWithTimeout', 3)
        }}>
          count is: {count}
        </button>
      </div>
  )
}

context consists of three things: commit, dispatch, and getters. The first two methods are used to invoke mutations and actions, respectively. The getters object consists of getter functions, which must be accessed in the same way as in components.

actions: {
  squareSum(context, payload) {
      const count = context.getters.getCount()
      const sum = count + payload
      context.commit('incrementCount', sum ** 2)
  }
},

Direct subscription

You can subscribe to update the store state directly via the subscribe method. As an argument, pass a callback that will accept the updated state of the store. Calling the subscribe method will return an unsubscribe function: call it when the subscription is no longer needed.

import store from './store';

const unsubscribe = store.subscribe(value => {
    // ...
})

// Calling unsubscribe: the above handler is no longer needed
unsubscribe()

API

  • store.state - get current value of state. The root state is located at the zero nesting level, the state of the modules will be placed in the keys corresponding to the names of the modules;
  • store.commit(mutation: string, payload?: any) - invoking a mutation producing a state update, triggers re-render;
  • store.dispatch(action: string, payload?: any): Promise<any> - action call;
  • store.registerModule(name: string, descriptor: StoreDescriptor) - dynamically add a module to the store;
  • store.unregisterModule(name: string) - remove module from store;
  • store.$$getterFunctions - getter function map according to modules;
  • store.$$instance - direct access to the observable object;
    • $$instance.value - current value of observable;
    • $$instance.subscribe(listener: Function) - subscribe a callback to value update, returns unsubscribe function;

API for forFunctional store

  • store.getters - get hooks for connecting getters to functional components;
  • store.$$rebuildGetters() - rebuild hooks; used when registering modules.

API for forClasses store

  • store.connectGettersToState(context: React.Component, getters: string|string[]) - redirect the value of getters to the state of the component.

Readme

Keywords

Package Sidebar

Install

npm i reax-standalone

Weekly Downloads

0

Version

1.1.1

License

MIT

Unpacked Size

215 kB

Total Files

48

Last publish

Collaborators

  • lyohaplotinka