npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-view-flow

v1.3.5

Published

A component view flow/stepper for React

Downloads

20

Readme

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

| Name | Default | Type | Description | | ------------- | ------------------------------- | ------- | -------------------------------------------- | | initialStep | 1 | Number, String | | hashKey | step | String | The default key to use in url hash if prop withHashState is true | maintainHashKey | false | Boolean | When the component unmounts it will clear the url hash key unless this prop is true | noAnimation | false | Boolean | Do not show animations on step transitions | onComplete | () => void | Function | A callback that is fired when nextStep() is called and there are no more steps | onStep | (stepNumber) => void | Function | A callback that is fired after step change | instance | ({ complete: Function, currentStep: Number, firstStep: Function, goToStep: Function, lastStep: Function, nextStep: Function, previousStep: Function, totalSteps: Number }) => void | Function | A callback fired with an object of methods to manipulate the <ViewFlow /> instance | transitionDirection | 'horizontal' | String, horizontal or vertical | Optionally set the direction of transition animations | | withHashState | 'false' | Boolean | Keep the step state in the URL hash |

<Step /> Component

Props

| Name | Default | Type | Description | | ------------- | ------------------------------- | ------- | -------------------------------------------- | | id | | String | If 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 | () => void | Function | If you pass a function to this prop it will be invoked with the <Step /> mounts | onUnmount | () => void | Function | If 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

| Name | Default | Type | Description | | ---- | ------- | ---- | ----------- | | currentStep | Number | Number | The step number | firstStep | () => void | Func | Method to go to the first step | goToStep | () => void | Func | Method to go to a specific step number | lastStep | () => void | Func | Method to go to the last step | nextStep | () => void | Func | Method to go to the next step | previousStep | () => void | Func | Method to go to the previous step | totalSteps | Number | Number | The 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