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

formerly

v0.5.2

Published

yet another form abstraction library for react

Downloads

17

Readme

#React Form Thing

js-standard-style

A library for writing dynamic React forms with ease.


formerly gives you a very flexible and idiomatic way to structure your forms

<Form ref='form' onSubmit={this.onSubmit}>
        
  <label>Your name</label>
  <Input name='myName' value='nicolas cage' />
  
  <label>Your best friend name</label>
  <Input name='bestFriend' shouldEqual='Obama' value='None' />
  
  <label>Are you older than 18?</label>
  <Input type='checkbox' name='is18Plus'/>
  
  <label>Your usual password</label>
  <Input type='password' name='password' />
  
  <label>Repeat your password</label>
  <Input type='password' name='repeatPassword' />
  
  <!-- zero boilerplate way to bind a random component to any input anywhere in your form -->
  <OnValue in={['password', 'repeatPassword']} test={({password, repeatPassword}) => password === repeatPassword}>
    <!-- when using a custom component, "value" is passed as "props" -->
    Congratulations, you can type
  </OnValue>
  
  <Entity name='addresses'>
    
    <Entity name='home'>
      <label>Home address</label>
      <Input name='streetAddress' value='1600 Pennsylvania Ave NW, Washington, DC 20500, United States' />
      <Input name='reference' value='Largest house in the block' />
    </Entity>
    
    <Entity name='hideSpot'>
      <label>Secret hide spot</label>
      <Input name='streetAddress' placeholder='Please fill this one' required />
      
      <OnError in='streetAddress'>
        You really should fill this one
      </OnError>
      
      <Input name='reference' />
    </Entity>
    
  </Entity>
  
  <label>Emails</label>
  <Entity name='emails'>
      <Input name={0} type='email' value='[email protected]' />
  </Entity>
  
  <label>Favorite music</label>
  <Select name='music'>
    <option>Country</option>
    <option>Rap</option>
  </Select>
  
  <button type='submit'>Submit</button>
</Form>

and a clean API

import React, {createClass} from 'react'
import {render} from 'react-dom'
import {Form, Select, OnError, OnValue, Input, Entity} from 'react-form-thing'

const NewsletterForm = createClass({
  onSubmit (errors, {is18Plus, emails}) {
    if (errors) return die(errors)
    
    const url = is18Plus ? 'http://adult-site.com' : 'http://disney.com'
    
    fetch(url, {method: 'POST', body: emails})
      .then(() => alert('Check your SPAM box'))
      .then(() => this.refs.form.reset())
  },
  serialize () {
    return this.refs.form.serialize()
  }
  render () {
    return (
      // [ ... ]
    )
  }
})

const form = render(<NewsletterForm />, document.body)

assert.deepEqual(form.serialize(), {
  myName: 'nicolas cage',
  bestFriend: 'None',
  is18Plus: false,
  addresses: {
    home: {
      streetAddress: '1600 Pennsylvania Ave NW, Washington, DC 20500, United States',
      reference: 'Largest house in the block'
    }
  },
  emails: ['[email protected]'],
  music: 'Country'
})

function die(errors) {
  if (errors.hideSpot) {
    return alert('You forgot some required fields')
  } 
  
  if (errors.bestFriend) {
    // bestFriend !== 'Obama'
    return fetch('https://nsa.gov', {method: 'POST', body})
      .then(() => location.href = 'http://www.wikihow.com/Deal-with-Being-in-Prison')
  }
  
  alert("This is why we can't have nice things")
}