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

check-some

v0.0.2

Published

Component to help with form validation in react

Downloads

17

Readme

check-some

Component to help with form validation in react

styled with prettier Build Status

Our pain points

When dealing with forms in react, forms with validation can involve a lot of code duplication. If you add a required field to your form, you need to add the input for the new field, add logic to check if there is a valid value, disable the submit button until there is a valid value, show a validation error by the field if they leave the field blank, and maybe change logic to show a cancel button if the field has changed.

This can become quite a bit of work to add a single field and if you miss a spot your form could act inconsistently (i.e. Your submit button could be enabled when it's not supposed to).

Our solution

This component receives the values and validation rules as props and renders your validated form using render props. The CheckSome component performs all the data validation and passes form state (such as valid or changed) to the form. The CheckSome.Field component accepts a render prop to render a specific field along with any validation errors and whether the field has been touched yet. This solution abstracts the validation logic while keeping flexibility for how to render error messages.

Installation

npm install --save check-some

or

yarn add check-some

Usage

import React, {Component} from 'react';
import CheckSome from 'check-some';

const required =  => value => {
  return value || value === 0 ? null : {required: {}};
};

class Form extends Component {
  render() {
    return (
      <CheckSome values={{name: this.state.name}} rules={{name: [required]}}>
        {({valid, changed}) => (
          <form>
            <CheckSome.Field name="name">
              {({value, errors, valid, touched}) => (
                <div className="field">
                  <label>
                    <input value={value} onChange={this.updateName}/>
                    {valid ? '👍' : '👎'}
                    {touched &&
                      errors &&
                      errors.required && <div className="error">Name is required.</div>}
                  </label>
                </div>
              )}
            </CheckSome.Field>

            {changed && <button onClick={this.resetForm}>Cancel</button>}
            <button onClick={this.submit} disabled={!valid || !changed}>
              Submit
            </button>
          </form>
        )}
      </CheckSome>
    );
  }
}

Error descriptions

Validation rules are defined as functions that take the value of a field and return null (if the field is valid) or an object containing any information that could be important for showing an error message. For example, a number field that is required and needs to be greater than 5, but has a value of 2 could be:

{
  required: null,
  greaterThanFive: {value: 2},
}

You could then use this to render a cusomized error message

{errors && errors.greaterThanFive && (
  <div>Value needs to be greater than 5, but was {errors.greaterThanFive.value}.</div>
)}

Components

CheckSome

Props

values - Object containing all the values of the form
{[key:string]: any}

rules - Object containing rules for all values (keys should match values set in values)

{[key:string]: null | {[errorName:string]: Object}}
initialValues (optional) - Object containing values to check against when finding out if form has changed
{[key:string]: any}
children - Render prop for rendering the form
(props: ChildProps) => React.Node

ChildProps (Props that will be passed to the render prop for CheckSome)

valid - If all the validation rules have passed

boolean

changed - If all the values have changed since the component mounted (or if the same as props.initialValues if set)

boolean

errors - Description of all the validation errors by field
{
  [key:string]: null | {[errorName:string]: Object}
}

CheckSome.Field

Props

name - The field to render (needs to match a key in values passed to CheckSome)
children - Render prop for rendering the field
(props: ChildProps) => React.Node

ChildProps

value - The value passed in values of CheckSome that matches the name set in CheckSome.Field

any

errors - Description of the validation errors for the field
null | {[errorName:string]: Object}
valid - If the validation rules for the field have passed

boolean

touched - If the field has been focused and blured

boolean

License

MIT