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-error

v1.1.1

Published

Simple React error handler hook and class component for validation of form operations

Downloads

21

Readme

react-form-error

Simple React error handler hook and class component for validation of form operations

NPM JavaScript Style Guide

NPM

react-form-error allow you to use joi and bootstrap alert and handle form errors in your app with ease.

Install

npm install --save react-form-error

Usage

HOOK

Example 1


import React, { useState } from "react";
import { useFormHandler, Joi } from "react-form-error"

const schema = {
  email: Joi.string().email().required(),
};

const App = () => {
  const [email, setEmail] = useState("");

  const { errors, Error, checkErrors } = useFormHandler(schema, { email });

  const handleSubmit = () => {
    const isError = checkErrors();

    if (!isError) alert("Successfull Auth");
  }

  return (
    <>
      <div className="form-group">
        <input onChange={(e) => setEmail(e.target.value)} type="email" className="form-control" placeholder="Enter your email" />
        <Error name="email" withStyle />
      </div>
      <button onClick={handleSubmit} className="btn btn-primary">Submit</button>
    </>
  );
}
export default App;

Example 2

import React, { useState } from "react";
import { useFormHandler, Joi } from "react-form-error"

const schema = {
  email: Joi.string().email().required(),
  password: Joi.string().required().min(2)
};

const translator = (error) => {
  if (error === '"password" is not allowed to be empty')
    return "Don't leave it blank"
  if (error === '"email" must be a valid email')
    return "Put a valid email!"

  return error;
}

const App = (props) => {
  const [email, setEmail] = useState("");
  const [password, setPassword] = useState("");

  const { errors, Error, checkErrors } = useFormHandler(schema, { email, password }, translator);

  console.log(errors);

  const handleSubmit = () => {
    const isError = checkErrors();

    if (!isError) alert("Successfull Auth");
  }

  return (
    <>
      <div className="form-group">
        <input onChange={(e) => setEmail(e.target.value)} type="email" className="form-control" placeholder="Enter your email" />
        <Error name="email" withStyle />
        <input onChange={(e) => setPassword(e.target.value)} type="password" className="form-control" placeholder="Enter your password" />
        <Error name="password" withStyle />
      </div>
      <button onClick={handleSubmit} className="btn btn-primary">Submit</button>
    </>
  );
}
export default App;

CLASS COMPONENT

Example 1

import React, { Component } from 'react'
import { Joi, FormHandler, Error } from 'react-form-error'

export default class App extends Component {
  state = {
    name: "",
  };

  schema = {
    name: Joi.string().required()
  };

  handleChange = (event) => {
    this.setState({ name: event.target.value });
  }

  handleSubmit = () => {
    const isError = FormHandler.checkError();

    if (!isError)
      alert("Successful form operation");
  };

  render() {
    return (
      <React.Fragment>
        <div className="form-group">
          <input onChange={this.handleChange} type="name" className="form-control" placeholder="Enter your name" />
          <Error name="name" withStyle />
        </div>
        <button onClick={this.handleSubmit} className="btn btn-primary">Submit</button>

        <FormHandler schema={this.schema} data={{ name: this.state.name }} />
      </React.Fragment>
    );
  }
}

Example 2

import React, { Component } from 'react'
import { Joi, FormHandler, Error } from 'react-form-error'

export default class App extends Component {
  state = {
    email: "",
    password: ""
  };

  schema = {
    email: Joi.string()
      .required()
      .email(),
    password: Joi.string()
      .required()
      .min(5)
  };

  handleChange = (event) => {
    this.setState({ [event.target.type]: event.target.value });
  }

  handleSubmit = () => {
    const isError = FormHandler.checkError();

    if (!isError)
      alert("Successful auth");
  };

  translator = (error) => {
    if (error === '"password" is not allowed to be empty')
      return "Don't leave it blank"
    if (error === '"email" must be a valid email')
      return "Put a valid email!"

    return error;
  }

  render() {
    return (
      <div className="container col-md-8 col-lg-4 text-center" style={{ marginTop: 120 }}>
        <div className="form-group">
          <input onChange={this.handleChange} type="email" className="form-control" placeholder="Enter email" />
          <Error name="email" withStyle />
        </div>
        <div className="form-group">
          <input onChange={this.handleChange} type="password" className="form-control" placeholder="Password" />
          <Error name="password" withStyle />
        </div>
        <button onClick={this.handleSubmit} className="btn btn-primary">Submit</button>

        <FormHandler schema={this.schema} data={{ email: this.state.email, password: this.state.password }} translator={this.translator} />
      </div>
    );
  }
}

Take errors manually with class copmonent

If you want to customize error component or don't want to render at all. You can take errors manually.

Example Code

import React, { Component } from 'react'
import { Joi, FormHandler } from 'react-form-error'

export default class App extends Component {
  state = {
    name: "",
    nameError: false
  };

  schema = {
    name: Joi.string().required()
  };

  handleChange = async (event) => {
    await this.setState({ name: event.target.value });

    const errors = FormHandler.takeErrors();
    this.setState({ nameError: errors["name"] });
  }

  handleSubmit = () => {
    const isError = FormHandler.checkError();

    if (!isError)
      alert("Successful form operation");
  };

  render() {
    return (
      <React.Fragment>
        <div className="form-group">
          <input onChange={this.handleChange} type="name" className="form-control" placeholder="Enter your name" />
          <span className={`${this.state.nameError ? "d-block" : "d-none"}`}>Error!!!</span>
        </div>
        <button onClick={this.handleSubmit} className="btn btn-primary">Submit</button>

        <FormHandler schema={this.schema} data={{ name: this.state.name }} />
      </React.Fragment>
    );
  }
}

Demo

Demo

Example Code

example-github

API

Form Handler

Error

className and style properties can be used like a regular html tag.

JOI

For more information about validation and schema options go to joi-browser page

License

MIT © github.com/atasoyfurkan