npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-form-keeper

v1.1.2

Published

Validate your input fields using this NPM Package. This Library is very useful for any React JS developer who wants to make the validation of his/her forms easier!

Downloads

4

Readme

React-Form-Keeper

Validate your input fields using this NPM Package. This Library is very useful for any React JS developer who wants to make the validation of his/her forms easier!

INSTALLATION

npm i react-form-keeper

USAGE

First, you need to import the library (including the validators if need be) like this:

import validator, {isEmailAddress, isMobileNumber} from 'react-form-keeper'

After that you need to create an object that will represent each field from your form that you want to validate. Your object should look like this:

const fields = {
                email:{
                  isRequired: true,
                  validator: isEmailAddress, //from the library
                  errorMessage: 'Invalid Email Address' //the message that you want to be shown if the validator rejects the user input
                },
                mobile:{
                  isRequired: true,
                  validator: isMobileNumber, //from the library
                  errorMessage: 'Invalid mobile Number' //the message that you want to be shown if the validator rejects the user input
                }
               }
        

Destructure the hook properties as you create an instance of the validator

const { state, updateFieldValue, isDisabled } = validator(fields)

HOOK PROPERTIES AND USAGE

  • state - it contains all the fields together with the following sub properties: value (The value inserted by the user to the input field), error (Error message specific to a field) , isTouched (A boolean that determines as to whether or not an input field has been touched or modified)

  • isDisabled - it is a boolean. It shall serve as your determinant if all required fields are filled-out with proper values.

  • updateFieldValue - it is a function which needs to be called to update the value, as well as the corresponding properties like error message, of the field, This requires two parameters: fieldName (the name of the field that you want to update) and value (the value to be assignet to the specified field).

VALIDATORS

Some validators are also included in this package:

  1. isEmailAddress - this validates if a value is a valid email address
  2. isMobileNumber - this validates if a value is a valid mobile number
  3. isAlphaNumeric - this validates if a value contains letters and numbers. Minimum of 8 and maximum of 20 characters.
  4. isCharacter - this validates if a value is a valid character
  5. isObject - this checks if a value is a valid object
  6. isDefined - this checks if a value is not undefined

However, you can also make your own validator by creating a function that accepts only one value to be validated and returns a boolean.

Example:

const isPositiveInteger = value => {
  return value>=0
}

CONTRIBUTION

If you want to help me improve this library, please feel free to submit a pull request.

LICENSE

This project is licensed under the MIT License