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-auth-code

v1.0.4

Published

React component for entering and validating PIN code

Downloads

11

Readme

React Auth Code

React component for entering and validating PIN code. With highly customizable renderInput prop, adjusting UI/UX more easily.

Install

$ npm install react-auth-code
# or
$ yarn add react-auth-code

Usage

Basic Usage

  • onChange: trigger when codes changed.
  • onComplete: trigger when codes length reach fields setting
import AuthCode from 'react-auth-code';

const App = () => {
  const [codes, setCodes] = useState<string[]>();

  const handleOnChange = (newCodes: string[]) => {
    setCodes(newCodes);
  };

  const handleOnComplete = (newCodes: string[]) => {
    // ... do something with completed newCodes
  };

  return (
    <AuthCode
      onChange={handleOnChange}
      onComplete={handleOnComplete}
    />
  );
};

export default App;

InputType & Validation

By default, inputType is tel, and only numbers 0-9 is allowed to be input. we can disable this by changing onlyNumber prop to false.

provide the custom validate function to validate the input value before changing value in each input field.

onlyNumber and validate is checked seperately, and onlyNumber will be checked before validate, so you can use onlyNumber, validate in the same time.

import { useState } from 'react';
import AuthCode from 'react-auth-code';

const App = () => {
  // ...
  return (
    <AuthCode
      inputType="tel"
      onlyNumber={false}
      // below same as "onlyNumber: true"
      validate={(newVal) => /^[0-9]*$/.test(val)}
    />
  );
};

Focus

By default, the first input is auto focused when component mounted, and we can give the onFocus, onBlur method to sync focus state.

disable auto focus by autoFocus prop.

import { useState } from 'react';
import AuthCode from 'react-auth-code';

const App = () => {
  const [isFocused, setIsFocused] = useState(false);

  return (
    <AuthCode
      autoFocus={true}
      onFocus={() => setIsFocused(true)}
      onBlur={() => setIsFocused(true)}
    />
  );
};

Custom Input

By default, each input is wrapped with a label, we can change the wrapper with renderInput prop, and inputClassName to customize our input style.

const App = () => {
  // ...
  return (
    <AuthCode
      inputClassName="w-5 text-4xl text-center p-0 pb-2"
      renderInput={(input, i) => (
        <label key={i} className="px-5">
          {input}
        </label>
      )}
    />
  );
};

Loop

After entering all codes, the last input will be focused and new input code will by default, replace current field code.

If loop is set to true, the new input code will be auto moved to the first field, and the second field will be focused then. User would not have to manually touch the first field to input codes again.

loop feature only take effect when fields > 1.

const App = () => {
  // ...
  return (
    <AuthCode loop={true} />
  );
};

Programming Reference

By passing a reference to <AuthCode>, we can call some useful methods like below.

import { useRef } from 'react';
import AuthCode, { AuthCodeRef } from 'react-auth-code';

const App = () => {
  const authCodeRef = useRef<AuthCodeRef>(null);

  const clearCodes = () => {
    authCodeRef.current?.clear();
  };

  return (
    <AuthCode ref={authCodeRef} />
  );
};

available methods

|Method|Description| |--|--| |clear(): void|clear all input values| |focus(index: Number = 0): void|focus input with given index| |getInput(index: Number = 0): InputDetail|get input detail with given index| |getCodes(): String[]|get codes in inputs| |getValue(): String|get joined code string| |setCodes: Dispatch<SetStateAction<string[]>>|react setState function of codes| |setCode(index: Number, value: String): void|set code value with index|

interface InputDetail {
  value: HTMLInputElement | null
  next: HTMLInputElement | null
  prev: HTMLInputElement | null
}

Props

|Prop|Type|Description|Default Value|Observations| |--|--|--|--|--| |autoFocus|Boolean|auto focus first input on mount|true|| |autoComplete|Boolean|enable auto complete with one-time-code in first input|false|| |autoReplace|Boolean|whether replace value for input already had value with last character|true|| |ariaLabel|String|Accessibility||| |renderInput|(input: JSX.Element, index: Number) => JSX.Element|render function for each field item|(input, i) => <label key={i}>{input}</label>|| |disabled|Boolean|whether disable all inputs|false|| |fields|Number|number of inputs|6|| |inputType|String|input type|tel|| |inputClassName|String|input className||| |loop|Boolean|whether auto focus to second input when input exceed fields length|false|| |onlyNumber|Boolean|only allow 0-9 number|true|| |onFocus|(e: ReactEvent, index: Number) => void|trigger when input focused|() => {}|| |onBlur|(e: ReactEvent, index: Number) => void|trigger when input blured|() => {}|| |onChange|(codes: String[]) => void|trigger when any value changed|() => {}|| |onComplete|(codes: String[]) => void|trigger when codes length reach fields number|() => {}|| |placeholder|String|input placeholder||| |validate|(value: String) => Boolean|custom validate function for input value|() => true||

License

Licensed under the MIT License, Copyright © 2023-present Johnny Wang johnnywang1994.