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

@atomicjolt/forms

v0.3.0

Published

`@atomicjoplt/forms` is a collection of React components for building forms, built on top of [react-hook-form](https://react-hook-form.com/) and [atomic-elements](https://atomicjolt.github.io/atomic-elements).

Downloads

75

Readme

Atomic Form Logo

@atomicjolt/forms

@atomicjoplt/forms is a collection of React components for building forms, built on top of react-hook-form and atomic-elements.

Installation

npm install --save @atomicjolt/forms
yarn add @atomicjolt/forms

Usage

This library is essentially a wrapper around react-hook-form so it's probably a good idea to read it's docs to be at least somewhat familiar with it.

Basic Example

You must pass the name prop to each component in your form. This is the name that will be used to reference the value of the input in the onSubmit callback. If an input element does not have the name prop, it will not be included in the data in the onSubmit callback.

import { Form } from '@atomicjolt/forms';

const MyForm = () => {
   const onSubmit = (data) => {
     console.log(data);
     // { firstName: "John", lastName: "Doe", age: 21 }
   }

   return (
      <Form onSubmit={onSubmit}>
         <Form.TextInput name="firstName" label="First Name" />
         <Form.TextInput name="lastName" label="Last Name" />
         <Form.NumberInput name="age" label="Age" />
         <Form.SubmitButton>Submit</Form.SubmitButton>
      </Form>
   )
};

Default Values

import { Form  } from '@atomicjolt/forms';

const MyForm = () => {
   const onSubmit = (data) => {
     console.log(data);
     // { firstName: "John", lastName: "Doe", age: 21 }
   }

   return (
      <Form onSubmit={onSubmit} defaultValues={{ age: 20 }}>
         <Form.TextInput name="firstName" label="First Name" defaultValue="John" />
         <Form.TextInput name="lastName" label="Last Name" />
         <Form.NumberInput name="age" label="Age" />
         <Form.Submitbutton>Submit</Form.SubmitButton>
      </Form>
   )
};

Validations

Each component supports a set of pre-defined validations that can be passed in as props. These props essentially match the api of the react-hook-form register() function, but they're only exposed on the components that make sense. For example, the Form.TextInput component supports the minLength and maxLength props, and the Form.NumberInput component supports the minValue and maxValue props, but not vice versa.

import { Form  } from '@atomicjolt/forms';

const MyForm = () => {
   const onSubmit = (data) => {
     console.log(data);
   }

   return (
      <Form onSubmit={onSubmit}>
         <Form.TextInput
            name="firstName"
            label="First Name"
            minLength={{ value: 3, message: "Name must be 3 characters or longer" }}
            isRequired="First names is required"
         />
         <Form.TextInput
            name="lastName"
            label="Last Name"
            isRequired="Last name is Required"
         />
         <Form.NumberInput
            name="age"
            label="Age"
            minValue={{ value: 13, message: "You must be 13 or older to sign up" }}
         />
         <Form.SubmitButton>Submit</Form.SubmitButton>
      </Form>
   )
};

Attempting to submit the above form without valid data will result in the related error messages being displayed below each input & the form will not submit.

Custom Validations

import { Form, SubmitButton } from '@atomicjolt/forms';

const MyForm = () => {
   const onSubmit = (data) => {
     console.log(data);
   }

   return (
      <Form onSubmit={onSubmit}>
         <Form.TextInput name="firstName" label="First Name" />
         <Form.TextInput name="lastName" label="Last Name" />
         <Form.TextInput name="email" label="Email" validate={(value) => {
               if (!value) {
                  return "Email is required";
               }
               if (!value.includes("@")) {
                  return "Email must be valid";
               }
               return true;
            }
         }
         />
         <Form.SubmitButton>Submit</Form.SubmitButton>
      </Form>
   )
};

If you have multiple validations, you can also pass in an object

import { Form, SubmitButton } from '@atomicjolt/forms';

const MyForm = () => {
   const onSubmit = (data) => {
     console.log(data);
   }

   return (
      <Form onSubmit={onSubmit}>
         <Form.TextInput name="firstName" label="First Name" />
         <Form.TextInput name="lastName" label="Last Name" />
         <Form.TextInput name="email" label="Email" validate={{
            isEmail: (value) => {
               if (!value) {
                  return "Email is required";
               }
               if (!value.includes("@")) {
                  return "Email must be valid";
               }
               return true;
            }
            isDomainEmail: (value) => {
               if (!value) {
                  return "Email is required";
               }
               if (!value.includes("@domain.com")) {
                  return "Email must be from domain.com";
               }
               return true;
            }
         }}
         />
         <Form.SubmitButton>Submit</Form.SubmitButton>
      </Form>
   )
};

Custom Components

If you want to build your own custom form components, you can use the useFormContext hook to get access to the react-hook-form api.

import { useFormContext } from 'react-hook-form';

const MyForm = () => {
   const onSubmit = (data) => {
     console.log(data);
   }

   return (
      <Form onSubmit={onSubmit}>
         <Form.TextInput name="firstName" label="First Name" />
         <Form.TextInput name="lastName" label="Last Name" />
         <CustomInput />
      </Form>
   )
}

const CustomInput = () => {
   const { register } = useFormContext();

   return (
      <input {...register("nestedInput")} />
   )
}

FormProvider

If you want to use the useForm hook from react-hook-form directly, you can use the FormProvider component to pass the form methods down to your form components.

import { useForm } from 'react-hook-form';
import { FormProvider, Form } from '@atomicjolt/forms';

const MyForm = () => {
   const methods = useForm();

   const onSubmit = (data) => {
     console.log(data);
   }

   return (
      <FormProvider onSubmit={onSubmit} {...methods}>
         <Form.TextInput name="firstName" label="First Name" />
         <Form.TextInput name="lastName" label="Last Name" />
         <Form.NumberInput name="age" label="Age" />
         <Form.SubmitButton>Submit</Form.SubmitButton>
      </FormProvider>
   )
};

Submitting the Form

Note that the Form.SubmitButton component is not required. You can use any button you want to submit the form. The Form.SubmitButton component is just a convenience wrapper around atomic-element's Button component with the type="submit" prop set.

import { Form } from '@atomicjolt/forms';

const MyForm = () => {
   const onSubmit = (data) => {
     console.log(data);
     // { firstName: "John", lastName: "Doe", age: 21 }
   }

   // Will work just as well :)
   return (
      <Form onSubmit={onSubmit}>
         <Form.TextInput name="firstName" label="First Name" />
         <Form.TextInput name="lastName" label="Last Name" />
         <Form.NumberInput name="age" label="Age" />
         <button type="submit">Submit</button>
      </Form>
   )
};