Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
react-form-validator-component
Advanced tools
React Form Validator exposes a single React component which uses the render prop pattern to validate the input on its child form. It is built as a pure React component, with no additional dependencies, making it efficient and cheap to add to any React
React Form Validator exposes a single React component which uses the render prop pattern to validate the input on its child form.
It is built as a pure React component, with no additional dependencies, making it efficient and cheap to add to any React project. Due to interacting with underlying basic HTML tags, it is compatible with popular design Frameworks like Semantic or Bootstrap out of the box.
Additional Info
yarn add react-validator-component
import { Validator } from 'react-validator-component'
git clone git@github.com:JDLT-Ltd/react-form-validator-component.git
class ExampleForm extends React.Component {
constructor(props) {
super(props)
this.state = {
fields: {
emailAddress: {
rules: ['isEmail', 'isRequired']
}
}
}
}
render() {
return (
<Validator fields={this.state.fields} parent={this}>
{({ isFormValid, fields, onChange, errors }) => {
return (
<form>
<label>Your Emails</label>
<input name="emailAddress" onChange={onChange} />
{errors.emailAddress.map((error, i) => {
return <span key={i}>{error}</span>
})}
{isFormValid && <button type="submit">Submit</button>}
</form>
)
}}
</Validator>
)
}
}
Validator
has one required props
fields
- an object with one property per input fieldname
attribute of the input field it refers to, and its value is an object with one property: a rules
array of any combination of strings referring to our predefined validation rules and user-defined custom rules. You can optionally provide a defaultValue
property for each field. This is only required if you want to validate your form on load but are using form field components which don't correlate one-to-one with actual DOM nodes. E.g. semantic-ui-react
's DropDown
component. In that case, the Validator's default method of checking values on load will fail.It also has three optional props
parent
- a reference to the component whose state Validator
should add validated form data to.parent
's state with a key equal to the name
attribute of its input
and a value equal to the valid input.onValidate
- A handler defining what to do with validated input.Validator
will set parent.state[fieldName]
to be either valid input or null if input is invalid.You need to provide at least one of parent
or onValidate
validateOnLoad
- a booleanValidator
will attempt to validate every field that is prepopulated on componentDidMount
. (empty fields will not dsiplay errors - however they will prevent set isFormValid to false).RFVC let's you use a mixture of predefined rules and your personal custom rules, just as it let's you provide your own functionality for onPassValidation
.
fields: {
emailAddress: {
rules: ['isEmail', 'isRequired']
}
}
We are currently still working on creating a comprehensive list of default rules, please check src/lib/rules.js
for now.
fields: {
emailAddress: {
rules: [
'isEmail',
{
validator: data => {
if (data) return true
return false
},
error: 'Please provide a value'
}
]
}
}
You can write custom rules and simply use them inside the rules Array as long as they follow RFVC's format of
{
validator: {Your Code},
error: {Your Error Message}
}
Where validator
is a function returning a boolean and error
is the desired error message.
The following arguments are provided to the render prop function:
isFormValid
A boolean. true
when all inputs are validated.
isFieldValid
An object with a property for each field which will be true
if it's valid and false
if it's not.
fields
An array of objects which can optionally be used in the render prop function to build your form using a map. Each object will contain within its value
property all properties that were passed into Validator
.
fields: {
emailAddress: {
rules: ['isEmail', 'isRequired'],
label: 'email address'
}
}
;[
{
key: 'emailAddress',
value: {
rules: ['isEmail', 'isRequired'],
label: 'email address'
}
}
]
onChange
onChange
will validate the input provided and then update the parent components state, adding any valid input and removing possible invalid input.
errors
Validator
will also provide an errors
object, which contains a key for each validated input, the value of which is an array containing all applicable errors.
These can be displayed as a group or be mapped in order to produce individual error labels.
RFVC supports group validation, where only one member of a group needs to pass it's validation in order for the whole group to be validated.
In order to use group validation, simply replace the value of the required key on fields with the groupname.
i.e.
fields = {
emailAddresses: {
name: 'emailAddresses',
rules: ['isEmailArray'],
required: 'test',
label: 'Email addresses'
},
something: {
name: 'something',
rules: ['isPhoneNumber'],
required: 'test',
label: 'Something'
}
}
FAQs
React Form Validator exposes a single React component which uses the render prop pattern to validate the input on its child form. It is built as a pure React component, with no additional dependencies, making it efficient and cheap to add to any React
The npm package react-form-validator-component receives a total of 33 weekly downloads. As such, react-form-validator-component popularity was classified as not popular.
We found that react-form-validator-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.