Coder Social home page Coder Social logo

react-states-machine's Introduction

React State Machine

NPM Downloads pledge

Inspired by mood this module is using the well known finite state machine pattern to alleviate some of the issues that crop up in complex React applications by strictly separating the management of states from your components. This module stay true to the original intent behind React:

  • Describe states as static components only (dynamic relationships within a component are expressed outside of the component itself)
  • Describe the logic for handling changes/updates as simple functions (called transitions).
  • Describe changes as plain objects to pass well defined and thought props.

Try online!

In addition, this module makes easy to:

  • develop stateless components (easier to understand and maintain)
  • develop components in isolation (easier to reuse and scale)
  • test components (dynamic relationships between components are tested separately)
  • manage asynchronous changes (props can be resolved by promises)

react-states-machine

Usage

A state is made of a component as well as a set of actions to be executed (called transitions). Those actions are called through transitions events and either update the current state or display a new state. A transition manages changes by passing props to the wanted state. Here's a simple example of navigation flow using react-states-machine:

import machine from 'react-states-machine'

function NavigationFlow (attrs) {
  return (
    <section>
      {
        machine({
          // welcome state
          'welcome': [
            props => <button onClick={() => props.transition('click')}>Welcome</button>,
            {
              // click event transition from welcome state to next state with a new message prop
              'click': [() => ({message: 'Hello you!'}), 'next']
            }
          ],
          // next state
          'next': [
            props => {
              return (
                <div>
                  <button onClick={() => props.goto('welcome')}>previous</button>
                  {props.message}
                  <button onClick={() => props.transition('update')}>next</button>
                </div>
              )
            },
            {
              // update event update next state with new message prop after 1 second
              'update': [() => new Promise(resolve => setTimeout(() => resolve({ message: 'This is awesome!' }), 1000))]
            }
          ]
        }, attrs)
      }
    </section>
 )
}

Getting started

A state machine is an object describing your application/component states.

machine({
  state: [
    component,
    transitions
  ]
})

A state is composed of a component as well as an optional object containing transitions to mutate this component. Here's an example that shows how to style an input when empty using a transition called validity:

machine({
  'inputState': [
    props => <input className={props.invalid ? 'invalid' : ''} onChange={e => props.transition('validity', e.target.value)}/>,
    {
      'validity': [(prev, value) => {
        return {
          invalid: !value
        }
      }]
    }
  ]
})

A transition is a function used to pass props to your component and update it. This function can return any types as well as promises (transition is resolved with the promise).

A transition is also useful to describe the passage to an other state. Here's an example:

machine({
  'formEmail': [
    props => {
      return (
        <div>
          <input type="email" />
          <button onClick={() => props.transition('next')}>next</button>
        </div>
      )
    },
    {
      next: [() => ({name: 'John Doe'}), 'formPassword']
    }
  ],
  'formPassword': [
    props => {
      return (
        <div>
          <h2>Hello {props.name}</h2>
          <input type="password" />
          <button>connect</button>
        </div>
      )
    }
  ]
})

But you also can go to an other state without transition:

machine({
  'formEmail': [
    props => {
      return (
        <div>
          <input type="email" />
          <button onClick={() => props.goto('formPassword')}>next</button>
        </div>
      )
    }
  ],
  'formPassword': [
    props => {
      return (
        <div>
          <h2>Hello {props.name}</h2>
          <input type="password" />
          <button>connect</button>
        </div>
      )
    }
  ]
})

Check out our test suite for more information.

Installation

npm install react-states-machine --save

NPM

Question

For questions and feedback please use our twitter account. For support, bug reports and or feature requests please make sure to read our community guideline and use the issue list of this repo and make sure it's not present yet in our reporting checklist.

Contribution

This is an open source project and would not exist without its community. If you want to participate please make sure to read our guideline before making a pull request. If you have any react-states-machine related project, component or other let everyone know in our wiki.

Licence

The MIT License (MIT)

Copyright (c) 2016 Olivier Wietrich

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

react-states-machine's People

Contributors

bredele avatar

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.