Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@meronex/form
Advanced tools
Very simple react form validation component for React Material UI (and potential other)
🚧 Note that this an early version and still being tested, feel free to open any issue_
Install npm i @meronex/form
Import import Form from '@meronex/form';
Add the form
<Form ref={validatedForm} onUpdate={(_formData) => { setFormData(_formData); }} blurDelay={500}> ... React MUI Fields Here </Form
Notice that we've a ref
attached which exposes a validatedForm.reset(
) method and we've an onUpdate
method which is triggered every time there change to the form. The blurDelay default is zero, and it used to delay blur validation to allow time for animation etc.
Add the @material-ui fields with name, defaultValue and validator attribute.
<TextField name={'name'} label="Name" defaultValue={'a'} validate={(v) => { if (!v || v === '') return 'Name is required..!!'; return true; }} />
That's it! The onUpdate will be triggered with all the form data, you can then set it to the state object.
I wanted a validation component for few inputs I have, and I found the existing libraries to be either too complex or too rigid for my use case.
The Form component will bind methods/props to the child fields. The value, onBlur, onChange, error and helperText
props are automatically handled, a form object is created to capture the state of the form and that object is passed to the onUpdate method with every change.
FAQs
A simple react form for React Material UI (and potential other)
The npm package @meronex/form receives a total of 0 weekly downloads. As such, @meronex/form popularity was classified as not popular.
We found that @meronex/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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.