Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@indec/form-builder
Advanced tools
Install the package as dependency
$ npm install @indec/form-builder
Then you should use FormBuilder
component
import {useState} from 'react';
import {FormBuilder} from '@indec/form-builder/lib/components';
function MyComponent({sections}) {
const [page, setPage] = useState(0);
const handleNext = values => {
console.log(values); // here are the completed values of the form
setPage(page + 1);
}
return (
<FormBuilder
onPrevious={() => setPage(page - 1)}
page={page}
section={sections[page]}
isLastSection={sections.length - 1 === page}
onSubmit={handleNext}
/>
)
}
When you have a section with answers you can send the prop initialValues
to the component FormBuilder
to render those values.
import {useState} from 'react';
import {FormBuilder} from '@indec/form-builder/lib/components';
function MyComponent({sections}) {
const [page, setPage] = useState(0);
const handleNext = values => {
console.log(values); // here are the completed values of the form
setPage(page + 1);
}
return (
<FormBuilder
onPrevious={() => setPage(page - 1)}
page={page}
section={sections[page]}
isLastSection={sections.length - 1 === page}
onSubmit={handleNext}
initialValues={{
S1: [
{
id: 1,
S1P1: {
id: 1,
answer: 'test'
},
S1P2: {
id: 2,
answer: 26
},
S1P3: {
id: 3,
answer: [
{
id: 1,
value: 123456
},
{
id: 2,
value: 12345678
}
]
}
}
]
}}
/>
)
}
If you want to change the default navigation button or change the header, pass to FormBuilder component the prop components
function SectionHeader() {
return (
<Box sx={{
display: 'flex', justifyContent: 'center', backgroundColor: '#98b9ed', height: '100px'
}}
>
<Typography>My custom header</Typography>
</Box>
);
}
function NavigationButtons() {
return (
<Box sx={{display: 'flex', justifyContent: 'space-between'}}>
<Button variant="outlined">Go back</Button>
<Button variant="outlined" color="error">Next</Button>
</Box>
);
}
function MyComponent({sections}) {
const [page, setPage] = useState(0);
const handleNext = values => {
console.log(values); // here are the completed values of the form
setPage(page + 1);
}
return (
<FormBuilder
onPrevious={() => setPage(page - 1)}
page={page}
section={sections[page]}
isLastSection={sections.length - 1 === page}
onSubmit={handleNext}
components={{
SectionHeader: props => <SectionHeader {...props} />,
NavigationButtons: props => <NavigationButtons {...props} />
}}
/>
)
}
To start storybook you must run the following command:
$ npm run storybook
These are the core dependencies you'll need to get acquainted yourself with:
We use Storybook to build our UI components isolated of the application.
If you want to see our available components, please check it out here: Form Builder
To run the tests you must run the following command:
$ npm run test
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Form builder
The npm package @indec/form-builder receives a total of 81 weekly downloads. As such, @indec/form-builder popularity was classified as not popular.
We found that @indec/form-builder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.