Skip to content

eldh/statext

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version lerna Blazing Fast License: MIT

Statext

A tiny global state management solution for React. Made for suspense & async rendering.

Why?

React has a great mechanism for state management with its component state and props. In some cases you want to share pieces of information across different parts of the app, and then using just normal state and props becomes cumbersome. This is commonly solved by using state libraries like redux or mobx.

However, these frameworks work outside the React component model and can feel heavy for simpler tasks. It's also unclear how they will work together with React's upcoming Suspense feature and async rendering.

Statext tries to provide a state management solution that feels lightweight and doesn't stray too far from the React way of doing things.

How?

Statext is really just a thin layer on top of React's context feature. This also means it's tiny, and blazing.

Statext is built to work out of the box with React's upcoming Suspense feature. Look at the examples to see how that works.

API

Wrap your component with the withSharedState higher-order component. Then use setState in your component just as you normally would in React.

Examples

There are a few runnable examples under /packages/examples, including a TodoMVC and an example using React Suspense. There are also a few examples using statext-redux, which allows you to use Statext together with redux action creators and reducers.

Counter example

This minimal example should look pretty familiar if you have worked with React before. Statext is, in essence, just React components.

The only difference from a normal React component is that this.state will be shared between all instances of CountState.

// CountState.js

import React from 'react'
import PropTypes from 'prop-types'
import { withSharedState } from 'statext'

class CountState extends React.Component {
  static propTypes = {
    render: PropTypes.func.isRequired,
  }
  state = {
    count: 0,
  }

  increaseCount = () => {
    this.setState(s => ({
      count: s.count + 1,
    }))
  }

  render() {
    return this.props.render(this.state, { increaseCount: this.increaseCount })
  }
}

export default withSharedState(CountState)

You use CountState in your application just like you would use any other component. It will render all instances with the same count value. Your application needs to be wrapped in a Provider.

// App.js

import React from 'react'
import { Provider } from 'statext'
import CountState from './components/CountState'

export default class App extends React.Component {
  render() {
    return (
      <Provider>
        <div>
          <CountState render={({ count }) => `The count is ${count}`} />
          <CountState
            render={({ count }, { increaseCount }) => (
              <button onClick={increaseCount}>{'Click me ' + count}</button>
            )}
          />
        </div>
      </Provider>
    )
  }
}

Thinking in statext

A few things worth thinking about when using Statext:

  • Use Statext as little as possible. Most of the time you will only use the state in one place, so you can just use normal React component state. Only use Statext when you need to share state. Making that change is easy.
  • Separate state and rendering. If your stateful components only take care of keeping state, not rendering, sharing that state (with Statext) will be a one-line change. Use render props!
  • Build on top of Statext. You can compose state and functionality the same way you normally would in React – using components and functions. Find the abstractions that work for you.

Getting started

If you want to use Statext in your app, run yarn install statext or npm i statext.

To start using this this repo, clone it and run yarn && lerna bootstrap in the root of the repo. Then run cd packages/examples && yarn start to start the examples.

Status

Statext is in its early phases. I don't recommend using it in production yet, but please try it out and report any issues.

About

Tiny global state management for React. Made for suspense & async rendering.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published