🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

use-form-input

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

use-form-input

Simple hook to provide form validation in react

1.1.1
Source
npm
Version published
Weekly downloads
5
Maintainers
1
Weekly downloads
 
Created
Source

USE-FORM-INPUT

Simple hook to provide form validation in react

Features

  • Small size and no dependencies
  • Fully customizable form handling and validations
  • Easy to use

Install

Install with npm:

npm i use-form-input

Quickstart

import { useFormInput } from 'use-form-input';

export default function App() {
  const [data, { onChange, validator, isValid, errors, setErrors }] =
    useFormInput({
      name: 'John Doe',
    });

  const onSubmit = (e: React.FormEvent) => {
    e.preventDefault();

    const cachedErrors = {};
    const validate = validator(cachedErrors);

    const { name } = data;

    validate('name', {
      condition: name.length === 0,
      message: 'Empty name',
      onMatch: function (message) {
        if (message) {
          console.error(message);
        }
      },
    });

    setErrors(cachedErrors);

    if (!isValid(cachedErrors)) {
      return;
    }

    console.log('FINAL DATA', data);
  };

  return (
    <>
      <form onSubmit={onSubmit} style={{ marginLeft: 10 }}>
        <input
          type="text"
          placeholder="name"
          value={data.name}
          onChange={onChange('name')}
        />
        <p style={{ color: 'red' }}>
          {errors.name &&
            errors.name.messages.length > 0 &&
            errors.name.messages[0]}
        </p>
        <input value="Submit" type="submit" />
      </form>
    </>
  );
}

License

MIT

FAQs

Package last updated on 27 Mar 2022

Did you know?

Socket

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.

Install

Related posts