Easy State provides a healthy balance of local and global state management in a simple, scalable way.
- Installation
- Usage
- Examples
- Platform support
- Performance
- State management overview
- How does it work?
- Contributing
- The NX Framework
npm install react-easy-state
Easy State consists of two functions:
easyComp
makes React's own component level state management simpler.easyStore
creates global state stores for complex apps.
Wrapping your components with the easyComp
function provides the following benefits.
-
It allows you to mutate the component's state directly, without calling
setState
. -
It binds your component's methods to the component.
import React, { Component } from 'react'
import { easyComp } from 'react-easy-state'
class Hello extends Component {
state = {
name: 'World!'
}
// this is bound to the component, so it can be safely passed as a callback
onChange (ev) {
// the state can be modified directly
this.state.name = ev.target.value
}
// the render is triggered whenever state.name changes
render () {
const { onChange } = this
const { name } = this.state
return (
<div>
<input value={name} onChange={onChange} />
<div>Hello {name}!</div>
</div>
)
}
}
// the component must be wrapped with easyComp
export default easyComp(Hello)
Make sure to wrap all of your components - including stateful and stateless ones - before you export them.
In addition to the boilerplate reduction, easyComp
comes with a bunch of additional benefits that may not be obvious at first glance.
-
The state becomes a simple object, which updates synchronously. You don't have to worry about immutable state updates or the asynchronous nature of
setState
. If you are not sure about the meaning of this check out this article aboutsetState
. -
The render method is only triggered if it is affected by the state mutations. If it doesn't use the mutated part of the state or the mutation doesn't change the state, the render method is not triggered.
-
The render method is never executed immediately. Triggered renders are collected and executed asynchronously in one batch.
-
Renders always run before the next repaint.
-
Duplicates renders are removed. A render never runs twice in one batch - no matter how many times it got triggered.
-
Renders may trigger others renders by mutating the state. In this case loops are automatically resolved.
-
Easy State implements an optimal
shouldComponentUpdate
for your components.
As a result the state is always fresh and a stable and a fresh view is always achieved before the next repaint with the minimal number of required renders.
easyStore
creates global state stores, to handle data that do not fit into component state. Wrapping an object with easyStore
has to following effects.
-
It transforms the object into a reactive data store, which triggers appropriate renders on mutations.
-
It binds your object's methods to the object.
import React, { Component } from 'react'
import { easyComp, easyStore } from 'react-easy-state'
// this creates a global state store
const store = easyStore({
name: 'Hello',
// this is bound to the object, so it can be safely passed as a callback
setName (ev) {
this.name = ev.target.value
}
})
// the render is triggered whenever store.name changes
function Hello () {
const { name, setName } = store
return (
<div>
<input value={name} onChange={setName} />
<div>Hello {name}!</div>
</div>
)
}
// the component must be wrapped with easyComp
export default easyComp(Hello)
Make sure to wrap your component with easyComp
even if it uses global stores only and no local state.
-
Global stores are simple objects and there is no limitation on what you can do with them. As an example feel free to use expando properties, arrays, deeply nested objects, ES6 collections or getters/setters in your stores.
-
Render methods are only triggered if they are affected by the store mutations. If they don't use the mutated part of the store or the mutation doesn't change the store, the render method is not triggered.
-
Render methods are never executed immediately. Triggered renders are collected and executed asynchronously in one batch.
-
Renders always run before the next repaint.
-
Duplicates renders are removed. A render never runs twice in one batch - no matter how many times it got triggered.
-
Renders may trigger others renders by mutating the store again. In this case loops are automatically resolved.
As a result the stores are always fresh and a stable and a fresh view is always achieved before the next repaint with the minimal number of required renders.
- Node: 6 and above
- Chrome: 49 and above
- Firefox: 38 and above
- Safari: 10 and above
- Edge: 12 and above
- Opera: 36 and above
- React native is not yet supported
- IE is not supported
You can compare Easy State with plain React and other state management libraries with the below benchmarks. Easy State performs a bit better than MobX, a bit worse than plain optimized React and similarly to Redux.
The list of benchmarks will expand in the future.
Finding the right balance between local component state and global state stores is not always a trivial task. This section gives you some general guide lines when to use which.
This is an easy decision. Always use local component state for reusable components. Depending on global stores would interfere with their reusability and break them. Check out the introductory clock example for some code.
Application state should usually be managed in global stores. It is singleton and its is usually persistent while the app is open. You can find a few candidates for global storage below.
-
The currently logged in user is a good example. There is only one user at a time and user data should be easily available anywhere anytime. It is a perfect candidate for a singleton global store.
-
User inputs, which should go into the URL or change the browser history are also great examples. These are inherently global because they affect global concepts - like the URL and browser history. Some example for these are filters, date ranges and sorting primitives.
Not everything fits in global stores though. You can find a few cases below when using the local component state makes more sense then global stores.
- Utility and meta data should go into component state. For example you may have a component which handles recent history for an input field. It may make sense to receive the data for the input from a global store and manage the history meta data in the local state. Check out the contacts table example for some code.
Application pages deserve a special mention. A typical app has several pages but, only one of them is active at a time. This makes them a nice candidate for singleton global state stores. However pages are not as persistent as the app's user for example, which makes them lean towards local state management.
Page state usually has properties, which belong in the URL and browser history. In this case it is inherently global and it should be handled in a global store. These stores persist between page transitions, but this is perfectly fine. As a bonus you get a faster transition, because you don't always have to re-fetch all of the data. If you do not want data to linger around clean up the relevant parts in componentWillUnmount
.
Under the hood Easy State uses the @nx-js/observer-util library, which relies on ES6 Proxies to observe state changes. Thanks to the Proxies it doesn't have edge cases or limitations. You can write any JS code without worrying about the render function. This blog post gives a little sneak peek under the hood of the observer-util
.
Contributions are always welcome. Just send a PR against the master branch or open a new issue. Please make sure that the tests and the linter pass and the coverage remains decent. Thanks!
This library is a side project of the front-end framework I have been working on in the past year. Please take a look at the NX Framework if you have some time. Thanks and have a nice day!