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

react-pin-input-hook

v1.0.9

Published

React hook for entering a PIN code

Downloads

2,631

Readme

react-pin-input-hook

React hook for entering a PIN code.

Installation

// with npm
npm install --save react-pin-input-hook

// with yarn
yarn add react-pin-input-hook

Usage example

Uncontrolled

import * as React from 'react'
import { usePinInput } from 'react-pin-input-hook'

function Component() {
  const { fields } = usePinInput({
    onComplete: (value) => {
      // Here you can make asynchronous requests to your API for verification.

      console.log(value)
    },
  })

  return (
    <div className='pin-input'>
      {fields.map((fieldProps, index) => (
        <input key={index} className='pin-input__field' {...fieldProps} />
      ))}
    </div>
  )
}

Controlled

import * as React from 'react'
import { usePinInput } from 'react-pin-input-hook'

function Component() {
  const [values, setValues] = React.useState(Array(6).fill(''))
  const { fields } = usePinInput({
    values,
    onChange: (values) => {
      setValues(values)
    },
  })

  return (
    <div className='pin-input'>
      {fields.map((fieldProps, index) => (
        <input key={index} className='pin-input__field' {...fieldProps} />
      ))}
    </div>
  )
}

Options

| Prop | Type | Default | Description | | ------------- | ---------------------------------------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | | values | string[] | - | Field values. If no values are passed, the default value defined in defaultValues is used. | | onChange | (values: string[]) => void | - | The function is called every time the value changes. | | onComplete | (value: string) => void | - | The function is called when all fields are filled in. | | actionRef | React.Ref<PinInputActions> | - | A reference to imperative actions. | | autoFocus | boolean | false | Automatic focus setting at the first mount, is set to the first field. | | defaultValues | string[] | ['','','','','',''] | In the case when the component is unmanaged, default values are set, where the number of values in the array is equal to the number of fields. | | type | 'numeric' or 'alphanumeric' | 'numeric' | Changes the type of keyboard display on mobile devices. | | otp | boolean | false | If true, then the attribute autocomplete=“one-time-code” is added, otherwise autocomplete=“off”. | | placeholder | string | '○' | Placeholder for the input element. | | disabled | boolean | false | If true, the transmission of event handlers onChange, onBlur, onFocus and onKeyDown in the parameters of each field is prevented. | | mask | boolean | false | If true, then the attribute type="password" is set, otherwise type="text". | | error | boolean | false | If true, then the focus behavior on the fields changes. |

Return

| Prop | Type | Default | Description | | --------- | ------------------------------------------- | ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- | | fields | PinInputFieldProps[] | - | An array of objects with attributes. | | isFocused | boolean | - | Whether the focus was set on any field. | | clear | (options?: { focus?: boolean }) => void | { focus: false } | Sets the initial values of the fields. Removes focus by default. The parameter can be passed { focus: true } to set the focus on the first field. |

PinInputFieldProps

| Prop | Type | Descriptions | | ------------ | ------------------------------------------------------ | ---------------------------------------------------------------------------------------------- | | ref | React.RefCallback | Returns a callback function to register the field. | | value | string | Returns the value of the field. | | disabled | boolean | Returns the value passed by the disabled parameter. | | autoComplete | 'one-time-code' or 'off' | Returns either one-time-code if the parameter otp: true was passed, otherwise off. | | inputMode | 'text' or 'numeric' | Returns either text if the parameter type: 'alphanumeric' was passed, otherwise numeric. | | type | 'text' or 'password' | Returns either password if the mask: true parameter was passed, or text. | | placeholder | string | Returns the value passed by the placeholder parameter if there are no focused fields. | | onBlur | (event: React.FocusEvent) => void | Returns the handler for the focus loss event if disabled: false. | | onFocus | (event: React.FocusEvent) => void | Returns the handler for the focus appearance event if disabled: false. | | onChange | (event: React.ChangeEvent) => void | Returns a handler for the field change event if disabled: false. | | onKeyDown | (event: React.KeyboardEvent) => void | Returns a handler for the keystroke event if disabled: false. |

PinInputActions

| Name | Type | Description | | ----- | ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | blur | () => void | Imperative function call to lose focus. | | focus | (index?: number) => void | Imperative function call to set focus on the first empty field. In the case when error: true, the focus is set to the first empty field. The argument takes an optional parameter in the form of a number (ordinal index), which will set the focus on a specific field. |

Example

import * as React from 'react'
import { usePinInput, PinInputActions } from 'react-pin-input-hook'

function Component() {
  const [values, setValues] = React.useState(['', '', '', '', '', ''])
  const [error, setError] = React.useState(false)
  const actionRef = React.useRef<PinInputActions>(null)
  const { fields } = usePinInput({
    values,
    onChange: setValues,
    error,
    actionRef,
  })

  const onSubmit = () => {
    // Check if there is at least one empty field. If there is,
    // the input is considered empty.
    if (values.includes('')) {
      // Setting the error.
      setError(true)
      // We set the focus on the first empty field if `error: true`
      // was passed as a parameter in `options`.
      actionRef.current?.focus()
    }
  }

  return (
    <form>
      <div className='pin-input'>
        {fields.map((fieldProps, index) => (
          <input key={index} className='pin-input__field' {...fieldProps} />
        ))}
      </div>
      <button onClick={onSubmit}>Submit</button>
    </form>
  )
}