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

react-progressive-form

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-progressive-form

progressive form component

latest
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Progressive Forms

FormWizard

  • Cycle through a list of components. Much like a carousel, but without all the complication and overhead.

Props

NameTypeDescription
stepsarrayArray of components to be cycled through

The FormWizard takes a list of components and cycles through them sequentially. Each component is passed two props that are used to move forward and backward (onNext and onBack).

const SomeComponent = ({ onNext, onBack }) => (
  <div>
    <h1 onClick={onNext}>Next</h1>
    <h1 onClick={onBack}>Back</h1>
  </div>
);

const WizArd = () => {
  return <FormWizard steps={[SomeComponent]} />;
};

Likely the callbacks would be called inside of a form submit handler. But you do you.

Progressive Form

  • Take a list of fields, turn it into a multi-step form

Props

NameTypeDescription
stepCountintThe number of steps in the form
fieldsarrayList of field names, types, etc.
onSubmitfunctionA callback to handle submission of the form
formNamestringName and ID of the single progressive form

The ProgressiveForm takes a list of fields and displays them as a series of stepCount steps. The fields prop should contain a list of field definitions including:

FieldDescription
nameHTML input name
typeHTML input type
palceholderHTML input placeholder
stepIndexThe step on which this field should be displayed
const fields = [
  { name: 'fieldOne', type: 'text', placeholder: 'field 1', stepIndex: 0 },
  { name: 'fieldTwo', type: 'number', placeholder: 'field 2', stepIndex: 0 },
  { name: 'fieldThree', placeholder: 'field 3', stepIndex: 0 },
  { name: 'fieldFour', placeholder: 'field 4', stepIndex: 1 },
];

const Progression = ({ onSubmit }) => {
  return <ProgressiveForm stepCount={2} fields={fields} onSubmit={onSubmit} />;
};

Keywords

react

FAQs

Package last updated on 16 Apr 2019

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