Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@felte/multi-step
Advanced tools
Due to the complex nature of multi page forms, and the changes that have been occuring within the core of Felte
(e.g. supporting SolidJS
), many issues have arised with this package so its usage is not recommended. A custom solution for your own use-case will most likely be simpler than the API of this package. For now, refer to the updated documentation for an example on how to handle multi page forms without using a package.
A package to help you handle multi step forms. This is a simple helper whose API might change a lot and might end up being part of the core package eventually. I would not consider it as a best practice yet.
npm install --save @felte/multi-step
# Or, if you use yarn
yarn add @felte/multi-step
Instead of importing createForm
from Felte, import createForms
from @felte/multi-step
(you still need Felte as part of your dependencies). This function accepts an object with two properties, an initialStep
value if you wish to initialize the form in a different step than 0 (the default), and a pages
property which is an array of objects. Each of them being an individual form's configuration.
import { createForms } from '@felte/multi-step';
const { step, pages, increaseStep, decreaseStep, totalSteps } = createForms({
initialStep: 1,
pages: [
{
onSubmit: ({ increaseStep }) => increaseStep(),
},
{
onSubmit: ({ allValues }) => console.log(allValues),
},
],
});
As you may have noticed, the signature for the onSubmit
function differs to the one used in Felte. It passes an object to you with the following properties:
values
: The values submitted on the current step.allValues
: The current value of all the forms on submission.increaseStep
: A helper function to go to the next step.decreaseStep
: A helper function to go to the previous step.step
: A writable store that contains the current step.currentStep
: The current step the form is in.The object returned by createForms
contains the following properties:
totalSteps
: A number that represents the total steps of the form.increaseStep
: A helper function to go to the next step.decreaseStep
: A helper function to go to the previous step.step
: A writable store that contains the current step.pages
: An array of objects, the same object returned by Felte's createForm
for each form.createForms
accepts a generic argument, it should be a tuple that contains the Data
shape for each form. Typescript support is still spotty, though. And there's no way to add an "extended" signature as you can do with Felte's createForm
.
import { createForms } from '@felte/multi-step';
type Page1 = {
name: string;
}
type Page2 = {
address: string;
}
const { pages } = createForms<[Page1, Page2]>({
initialStep: 1,
pages: [
{
onSubmit: ({ increaseStep }) => increaseStep(),
},
{
onSubmit: ({ allValues }) => console.log(allValues),
},
],
});
FAQs
A helper package to handle multistep forms
We found that @felte/multi-step 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.