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

enquiry

v0.2.0

Published

A render-agnostic react form framework

Downloads

6

Readme

React Enquiry

Enquiry a the form validation framework for React you can already use if you know how HTML and forms work. Simply wrap your <input /> element in an enquiry/form and you're ready go.

Check the documentation site for examples and documentation!

Architecture

Enquiry recursively wraps your form components in an higher-order-component that captures validation properties and change listeners. These HOC components are then registered with the containing form component to easily retrieve validation results and values on a single onSubmit handler.

Enquiry makes it easy to create re-usable form sub-sections by attaching child-wrappers using refs.

Installation

    npm install enquiry

Usage

The documentation site is a showcase of enquiry's features.

Examples from the documentation site can be found here

Getting values from input elements

Geting all the values from your form is as un-exiting as simply replacing the <form> tag with enquiry/from:

const Form = require("enquiry/form");
const React = require("react");

// values will be an object containing {name, password}
// errors can be an object of {name, password}
function onSubmitRegisterForm(errors, values) {
    if (errors) return alert(`Your form was invalid! ${JSON.stringify(errors)}`);
    return alert(`Your form was valid! ${JSON.stringify(values)}`);
}

function RegisterFrom() {
    return (
        <Form onSubmit={onSubmitRegisterForm}>
            <label>Your name: </label>
            <input name="name" />
            <label>Choose a password: </label>
            <input name="password" type="password" />
            <button>submit</button>
        </Form>
    );
}

Validating values from input elements

You can supply a validation property to your input elements, comprising of either one single function or an array of functions.

Validation functions will be executing in order, returning at the first failed validation. A validation function should return a single string if validation fails.

Validation functions receive two arguments: the value of the field being checked, and the values of all other fields as a key => value object.

For more advanced examples plese refer to the documentation site

Example:

const Form = require("enquiry/form");
const React = require("react");

function isRequired(value) {
    if (!value) return "This is a required field";
}

function isPositiveInt(value) {
    if (!/^\d+$/.test(value)) return "This must be a positive int";
}

function AgeForm() {
    return (
        <Form onSubmit={onSubmitNameForm}>
            <label>How old are you?: </label>
            <input name="age" validation={[isRequired, isPositiveInt]} />
            <button>submit</button>
        </Form>
    );
}