New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

flowgo

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flowgo

Navigate the routes of your react app using a state machine configuration.

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

What's this thing?

flowgo lets you send transitions, as defined by a state machine, to your React components.

example configuration

machine.js define your state machine

export default {
  // key is the route name
  first: {
    progress: 1,
    transitions: {
      continue: ({loggedin}) => loggedin ? 'second' : 'third'
    }
  },
  'second': {
    progress: 2,
    transitions: {
      continue: 'twopointfive',
      skip: 'fifth'
    }
  },
  'twopointfive': {
    transitions: {
      continue: 'third'
    }
  },
  third: {
    transitions: {
      continue: 'fourth',
      skip: 'fifth'
    }
  },
  fourth: {
    transitions: {
      continue: 'fifth'
    }
  },
  fifth: { }
}

main.js set up your app

import {FlowWrapper} from 'flowgo'

...

// FlowWrapper puts machine config, dataObservable, and stateObservable in child context using getChildContext

import {
  FlowWrapper,
  observeHistoryPathname,
  observeReduxStore
} from 'flowgo'


...

<FlowWrapper
  machine={machineConfig}
  dataObservable={observeReduxStore(store)} // dataObservable's value is passed to computed transitions
  stateObservable={observeHistoryPathname(history)}
>
  <MyApp>
    <ButtonBar />
  </MyApp>
</FlowWrapper>

button-bar.js some component that needs to know what's next

import {flow} from 'flowgo'
@flow
class ButtonBar extends React.Component {
  const {
    /* totalSteps,*/
    /* currentStepIndex, */
    percentDone
  } = this.props.flow.estimateProgress({start: first, end: fifth})
  render() {
    <div>
      <div className='percentComplete'>{`{Math.floor(100 * percentDone)}% complete`}</div>
      <div className='buttonBar'>
        {this.props.flow.transitions.map((destination, key) => <Link key={key} to={destination}>{key}</Link>)
      </div>
    </div>
  }
}

FAQs

Package last updated on 19 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts