
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
react-progressive-form
Advanced tools
| Name | Type | Description |
|---|---|---|
| steps | array | Array 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.
| Name | Type | Description |
|---|---|---|
| stepCount | int | The number of steps in the form |
| fields | array | List of field names, types, etc. |
| onSubmit | function | A callback to handle submission of the form |
| formName | string | Name 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:
| Field | Description |
|---|---|
| name | HTML input name |
| type | HTML input type |
| palceholder | HTML input placeholder |
| stepIndex | The 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} />;
};
FAQs
progressive form component
We found that react-progressive-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.