Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
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 15 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc