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

use-valid-input

v0.1.2

Published

React hook for easy and solid input validation

Downloads

7

Readme

use-valid-input

React hook for easy and solid input validation

Features:

  • usable on any input type that returns a string value
  • returns elaborate validation state
  • create reusable validation rules with ease
  • use optional settings to fine-tune the hook behaviour
  • thouroughly tested

Basic usage

import useValidInput, { StringSpec } from 'use-valid-input'

// define a validation spec using StringSpec
const tUser = new StringSpec({
  min: 3,
  max: 24,
  include: '_-abcdefghijklmnopqrstuvwxyz',
});


const UserInput = ( {onValidate} ) => {
  const [validation, attributes] = useValidInput(tUser, {onValidate});
  const error = validation.error ? <div>error: {validation.error}</div> : null;
  return (
    <div>
      <input {...attributes}/>
      { error }
    </div>
  );
};


const App = () => {
  const [validUser, setValidUser] = useState(false);
  return (
    <div>
      <UserInput onValidate={ (validation) => setValidUser(validation.valid) }/>
      <input type='button' value='submit' disabled={ !validUser }/>
    </div>
  );
};

The hook uses string-spec npm library. With string-spec you can define re-usable string definitions with ease. Check the link for more info.

Example with all options and validation results

import useValidInput, { StringSpec } from './use-valid-input.js'

const tAge = new StringSpec({
  // allow for 0 to 150
  validator: (value) => (value === '0') || ((value[0] !== '0') && (value <= 150)),
});

const AgeInput = ( {onDone, onValidate} ) => {
  const [ageValidation, ageInputAttributes, ageControl] = useValidInput(tAge, {
    // all settings are optional
    id               : 'age',
    initialValue     : '0',
    focus            : true,
    focusOnSetValue  : true,
    trimOnBlur       : true,
    touchedOnChange  : false,
    onValidate,
    onDone,
  });

  const info = validation.infoState && <div>enter a number between 0 and 150</div>;
  const error = validation.errorState && <div style={{color: 'red'}}>{ validation.error }</div>;
  const message = info || error || null;

  return (
    <div>
      <div>{ validation.id }</div>
      <input {...ageInputAttributes}/>
      { message }

      <div>id: { validation.id }</div>
      <div>value: { validation.value }</div>
      <div>lastKey: { validation.lastKey }</div>
      <div>validatedValue: { validation.validatedValue }</div>
      <div>focused: { validation.valid.toString() }</div>
      <div>error: { validation.error }</div>
      <div>code: { validation.code }</div>
      <div>found: { validation.found }</div>
      <div>focused: { validation.focused.toString() }</div>
      <div>touched: { validation.touched.toString() }</div>
      <div>entered: { validation.entered.toString() }</div>
      <div>changed: { validation.changed.toString() }</div>
      <div>infoState: { validation.infoState.toString() }</div>
      <div>errorState: { validation.errorState.toString() }</div>

      <input type='button' value='reset' onClick={ ageControl.setValue.bind(null,'0') }/>
      <input type='button' value='focus' onClick={ ageControl.focus }/>
    </div>
  );
};


const App = () => {
  // onDone is only called when validation.entered becomes true
  const handleAgeDone = (validation) => console.log(validation);
  // onValidate is called on every keyboard event,  on focus/blur and on control.setValue()
  const handleAgeValidation = (validation) => console.log(validation);
  return (
    <AgeInput onDone={ handleAgeDone } onValidate={ handleAgeValidation }/>
  );
};

All optional settings with their defaults:

id                  : ''         an optional id to show in the validations
initialValue        : ''         initial value for the input
focus               : true       focus the input on mount
focusOnSetValue     : true       auto focus when a value is set with control.setValue
trimOnBlur          : true       trim spaces automatically when input loses focus
touchedOnChange     : false      set touched on any key stroke instead of on focus
onValidate          : (v) => {}  fired at every validation, use your handler
onDone              : (v) => {}  on Enter, Escape or Tab key press and on blur

The full validation object with its default values:

id                  : ''         the id from settings or string-spec id
value               : ''         the actual value of the input
lastKey             : ''         the last keyboard key pressed
valid               : false      true when value is validated
validatedValue      : ''         contains the value when valid is true
error               : ''         default error messages from string-spec
code                : 0          unique error codes from string-spec
found               : ''         can contain a hint to what caused the error
focused             : false      true when the input is focused
touched             : false      set to true once focussed (depends on touchedOnChange)
changed             : false      whether value != initialValue
entered             : false      set on Enter, Tab, Escape or blurred
infoState           : false      true when focussed and not entered
errorState          : false      true when touched and error is true

Info and error state are opinionated and for convenience. infoState is nothing more than focused && !entered. errorState is touched && error. Both can be true at the same time, so the user can choose which best supports the UX at what moment.

You can access some specific state variables through the 'control' return value.

const [validation, attributes, control] = useValidInput(someStringSpec);

control.focus();	// focus the input
control.setValue('into the input and validated at once, updates the validation result');

There is also the possibility to change the default settings for use-valid-input application wide. Individual hooks can of course still override these 'global' settings.

import useValidInput from 'use-valid-input'
// shown are the default settings
useValidInput.init({
  initialValue         : '',
  focus                : false,
  focusOnSetValue      : true,
  touchedOnChange      : false,
  trimOnBlur           : true,
});

This hook is based upon my string-spec npm library.

Any suggestions for improvements or feedback is always welcome. Enjoy!


change log

0.1.0

  • first commit

license MIT