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-hook-use-form

v1.2.0

Published

`useForm` provides an interface around an object for use in forms.

Downloads

486

Readme

React Hook useForm

useForm provides an interface around an object for use in forms.

Install

npm install --save react-hook-use-form

Usage

The best useForm experiance comes when using Typescript.

Lets say you want to collect a users name and email for a newsletter form.

const NewsletterSignUp: React.FunctionComponent = () => {
  const {formBind, bind, onSubmit} = useForm({
    name: '',
    email: ''
  })

  onSubmit((data) => {
    // `data` is the forms state when it was submitted
    doSignup(data.name, data.email)
  })

  return <form {...formBind()}>
    <input {...bind('name')} />
    <input {...bind('email')} />
    <input type="submit" value="Sign Up!" />
  </Form>
}

useForms output is an object with this structure:

|property|type|value| |:-------|:----|:----| |bind|(field: keyof T) => {value, onChange, name}|Used to bind to a single field.| |clear|() => void|Function that sets the form back to its initial value.| |controlledInput|(fieldName: keyof T) => ControlledInput|Function that is used to create input fields (See Creating your own input).| |data|T|The current state of the form.| |formBind|() => {onSumbit}|Used to bind a forms submit action to useForm| |onSubmit|(handler: (data: T) => void) => void|A function which takes a callback to be used when the form is submitted.| |validate|(field: keyof T, validator: (value: any) => boolean) => void|A function that takes the field name and validation function as arguments.| |valid|(field?: keyof T) => boolean|A function that checks the validity of one field or the whole form and returns a boolean value.| |set|(data: T) => void|Function to set the data to a given value. Useful if you want to use one form to edit multiple entries.| |label|(field: keyof T) => {for}|Returns the fields label for.| |changed|(field?: keyof T) => boolean`|Has the given field, or any field changed from the intial data.|

Validation

Validating fields with useForm is easy. Going back to the earlier example, lets ensure that the email contains an @

const NewsletterSignUp: React.FunctionComponent = () => {
  const {valid, bind, formBind, validate} = useForm({
    name: '',
    email: ''
  })

  validate('email', (value) => {
    return value.indexOf('@') > -1
  })

  return <form {...formBind()}>
    <input {...bind('name')} style={{color: valid('name') ? '#000' : '#f00'}} />
    <input {...bind('email')} style={{color: valid('email') ? '#000' : '#f00'}} />
    <input type="submit" value="Subscribe" disabled={!valid()} />
  </form>
}

Creating your own input

Sometimes simply using bind wont work as your not using and input and you want to have a custom input.

useForm returns a function of controlledInput which gives more control over a single field.

controlledInput returns the following:

|property|type|value| |:-------|:----|:----| |field|keyof T|The current field| |value|T[field]|The current value (connected to state)| |update|(newValue: T[field]) => void|Change the value to the supplied value| |valid|() => boolean|Returns a boolean value for the fields current validity| |bind|{value, onChange, name}|The same as if you had called bind(field) directly from useForm| |id|string|The id of the input.|