1.3.5 • Published 6 years ago

react-view-flow v1.3.5

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

React View Flow

A view/screen/component stepper with optional transition animations and URL hash state. Very flexible and extendable through suedo-controlled component API.

Inspired by this awesome project react-step-wizard

npm version flow Build Status semantic-release Commitizen friendly

2018-06-18 10 09 00

2018-06-19 15 32 05

2018-06-19 15 33 27

Getting Started

npm install react-view-flow

// or using yarn

yarn add react-view-flow
import { ViewFlow, Step } from 'react-view-flow'

Examples

<ViewFlow>
  <Step>
    <MyFirstScreen />
  </Step>
  <Step>
    <MySecondScreen />
  </Step>
  <Step>
    <SomeOtherComponent />
  </Step>
  ...
</ViewFlow>

Your app defines the step screens and is handed down props to control the flow

import React from 'react'

const MyFirstScreen = ({ currentStep, nextStep }) => (
    <div>
        <h1>Step # {currentStep}</h1>

        <button onClick={nextStep}>Next</button>
    </div>
)

const MySecondScreen = ({ currentStep, nextStep, previousStep }) => (
    <div>
        <h1>Step # {currentStep}</h1>

        <button onClick={previousStep}>Back</button>
        {' '}
        <button onClick={nextStep}>Next</button>
    </div>
)

const ExampleFlow = () => (
    <ViewFlow>
      <Step>
        <MyFirstScreen />
      </Step>

      <Step>
        <MySecondScreen />
      </Step>
    </ViewFlow>
)

All <ViewFlow /> Props

<ViewFlow
  hashKey="step"
  initialStep="2"
  maintainHashKey={false}
  noAnimation
  onComplete={() => {
    /* fired after last step */
  }}
  onStep={() => {
    /* fired on step change */
  }}
  instance={el => (this.viewflowRef = el)}
  transitionDirection="horizontal"
  withHashState
>
  <Step>
    <MyFirstScreen />
  </Step>
  <Step>
    <MySecondScreen />
  </Step>
  <Step>
    <SomeOtherComponent />
  </Step>
  ...
</ViewFlow>

More examples in example/ directory. Easy to run locally, pull the git repo then run npm i && npm run dev -> http://localhost:8080

<ViewFlow /> Component

The <ViewFlow /> component is the meat and potatoes of this lib. The <ViewFlow /> component must only contain <Step /> components as children.

Props

NameDefaultTypeDescription
initialStep1Number, String
hashKeystepStringThe default key to use in url hash if prop withHashState is true
maintainHashKeyfalseBooleanWhen the component unmounts it will clear the url hash key unless this prop is true
noAnimationfalseBooleanDo not show animations on step transitions
onComplete() => voidFunctionA callback that is fired when nextStep() is called and there are no more steps
onStep(stepNumber) => voidFunctionA callback that is fired after step change
instance({ complete: Function, currentStep: Number, firstStep: Function, goToStep: Function, lastStep: Function, nextStep: Function, previousStep: Function, totalSteps: Number }) => voidFunctionA callback fired with an object of methods to manipulate the <ViewFlow /> instance
transitionDirection'horizontal'String, horizontal or verticalOptionally set the direction of transition animations
withHashState'false'BooleanKeep the step state in the URL hash

<Step /> Component

Props

NameDefaultTypeDescription
idStringIf you would like to use a custom id instead of the step number to reference a step, use this prop. You can then reference the step like this: goToStep('id_string') and also in a hndler for the prop <ViewFlow onStep={(stepId) => {...}} />
onMount() => voidFunctionIf you pass a function to this prop it will be invoked with the <Step /> mounts
onUnmount() => voidFunctionIf you pass a function to this prop it will be invoked with the <Step /> unmounts

The <Step /> component must be a child of <ViewFlow /> and must also contain a child component.

Props Pass to Step Children

NameDefaultTypeDescription
currentStepNumberNumberThe step number
firstStep() => voidFuncMethod to go to the first step
goToStep() => voidFuncMethod to go to a specific step number
lastStep() => voidFuncMethod to go to the last step
nextStep() => voidFuncMethod to go to the next step
previousStep() => voidFuncMethod to go to the previous step
totalStepsNumberNumberThe number of steps in the <ViewFlow /> container

<Step /> Child Component Props

The child component of each <Step /> has access to it's parent <ViewFlow /> state via props.

// MyStepComponent.jsx

import React from 'react'

const MyStepComponent = props => (
  <div>
    <h1>Step {props.currentStep}</h1>

    <div>Total Steps: {props.totalSteps}</div>

    <button onClick={props.previousStep}>Previous Step</button>

    <button onClick={props.nextStep}>Next Step</button>

    <button onClick={() => props.goToStep(2)}>Step 2</button>

    <button onClick={props.firstStep}>First Step</button>

    <button onClick={props.lastStep}>Last Step</button>
  </div>
)

export default MyStepComponent
1.3.5

6 years ago

1.3.4

6 years ago

1.3.3

6 years ago

1.3.2

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago