GithubHelp home page GithubHelp logo

react-horm's Introduction

react-horm

React H(ookF)orm

This package will provide formik-like features with React Hook Support.

It uses context internally, which means as long as it is rendered within Horm, you could get access to the form by using hooks instead of passing any reference down deeply to the field component. It will be very handy especially for those complex FormInput which is defined outside of the main form.

TechStack

  • React (with Hook)
  • ramda
  • Yup

Installation

yarn add react-horm

Usage

import { Horm, useField, useForm, useCountDown } from 'react-horm';

APIs

Horm (Component)

// render form as children
<Horm>
  <FormComponent />
</Horm>

// render form as prop
<Horm render={FormComponent} />

Horm props:

  • initialValues [required]: Initial form values, it MUST contains all the fields.

  • onSubmit [required]: It will be called in useForm.htmlProps.onSubmit if the form is valid.

  • initialValid [optional]: Initial value of useForm.hormBag.isValid

  • validateOnBlur [optional]: Default is true. Whether validation should be run in case of blur and focus.

  • validateOnChange [optional]: Default is true. Whether validation should be run in case of value change.

  • enableReinitialize [optional]: Default is false. If set as true, the form will be reset in case of new initialValues passed in.

  • validationSchema [optional]: Yup schema. See example below.

  • validationFn [optional]: Validation function which takes form values as parameter and return object contains field errors. See example below.

const validationSchema = Yup.object().shape({
  email: Yup.string()
    .email()
    .required(),

  password: Yup.string()
    .min(6)
    .required(),
});
const validationFn: ValidationFn = (values) => {
  let errors: FormState<string[]> = { email: [], password: [] };

  if (values.email.length === 0) {
    errors.email.push('Email cannot be empty');
  }

  if (values.password.length === 0) {
    errors.password.push('Password cannot be empty');
  }

  return errors;
};

useForm (Hook)

// Example
const loginForm = useForm();

<LoginForm {...loginForm.htmlProps} />;

loginForm.hormBag

  • dirty
  • errors
  • isValid
  • isValidating
  • touched
  • values

loginForm.htmlProps

  • onSubmit

useField (Hook)

// Example
const emailField = useField('email');

<input {...emailField.htmlProps} />;

emailField.hormBag

  • value
  • initialValue
  • dirty
  • touched
  • errors
  • isValid
  • setValue
  • setTouched
  • setErrors

emailField.htmlProps

  • name
  • value
  • onChange
  • onFocus
  • onBlur

useCountDown (Hook)

It is normally used to limit users' interactions with a particular function within given period (e.g sending SMS OTP code).

// Example
const [val, restart] = useCountDown(120);

val will be 0 initially, once restart is called, val will be running from the starting value you pass to the hook (120 seconds in the example above) and stops at 0. The restart function could be called multiple times, and the val will be reset to the starting value and counting down again, regardless of current value.

react-horm's People

Contributors

87hz avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.