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-strong-password-input

v0.0.2

Published

TS React library that provides a password input with validation

Downloads

7

Readme

react-strong-password-input

Base Interfaces

This are base props interfaces, that every implementation (correspondingly) receives

Bar

| Property | Type | Default | Description | |:---|:---|:---|:---| |currentLevel|number|undefined|current level for bar to be filled| |levels|number|undefined|amount of levels|

Condition

| Property | Type | Default | Description | |:---|:---|:---|:---| |name|string|undefined|name of the condition (not label, label isn't neccesary in base interface, but as example it's present in default implementation)| |satisfied|boolean|undefined|simple flag|

Container

Only children are required (optional, actually) for the container

Input

| Property | Type | Default | Description | |:---|:---|:---|:---| |value|string|undefined|value prop as in controlled input| |onChange|React.ChangeEventHandler<HTMLInputElement | HTMLTextAreaElement>|undefined|onChange event handler|

StrongPasswordInput Interfaces

Condition

| Property | Type | Default | Description | |:---|:---|:---|:---| |name|string|undefined|name prop| |validator|string => boolean|undefined|validator function, receives password, returns flag| |conditionComponentProps|Omit<ConditionComponentProp, keyof ConditionBaseProps>|undefined|non-base props from the current ConditionComponentProp, that will be passed along with base props for this specific condition|

SecurityLevel

| Property | Type | Default | Description | |:---|:---|:---|:---| |name|string|undefined|name prop| |conditionsRequire|number|undefined|how many conditions are needed for this security level| |barComponentProps|Omit<BarComponentProps, keyof BarBaseProps>|undefined|non-base props from the current BarComponentProps, that will be passed along with base props for this specific security level|

StrongPasswordChangeEvent

| Property | Type | Default | Description | |:---|:---|:---|:---| |securityLevel|string|undefined|name of current security level| |satisfiedConditions|string[]|undefined|array of names of satisfied conditions|

Main interface of the strong password input. Couldn't find a way to provide default values for the components -_-.

StrongPasswordInput

| Property | Type | Default | Description | |:---|:---|:---|:---| |value|string|undefined|value to be passed into input component| |showStrengthBar?|boolean|true|flag to render strength bar| |showConditions?|boolean|true|flag to render conditions| |onChange?|(event: StrongPasswordChangeEvent) => void|undefined|onChange handler with previously defined change even| |securityLevels|SecurityLevel[]|undefined|possible security levels (like invalid, weak, normal, strong...)| |conditions|Condition[]|undefined|conditions that to be checked upon password change| |InputComponent|React.ComponentType|undefined|input component to be rendered within compose input| |BarComponent|React.ComponentType|undefined|password strength bar component to be rendered within compose input| |ConditionComponent|React.ComponentType|undefined|condition component to be rendered within conditions container component| |ConditionContainerComponent|React.ComponentType<React.PropsWithChildren>|undefined|container component that will be used for conditions| |StrongPasswordContainerComponent|React.ComponentType<React.PropsWithChildren>|undefined|main container of this compose input| |conditionContainerComponentProps?|ConditionContainerComponentProps|undefined|additional props for conditions container| |strongPasswordContainerComponentProps?|StrongPasswordContainerComponentProps|undefined|additional props for main container| |inputComponentProps?|Partial<Omit<InputComponentProps, keyof InputBaseProps>>|undefined|additional props for input component| |barComponentProps?|Partial<Omit<BarComponentProps, keyof BarBaseProps>>|undefined|additional props for strength bar component| |conditionComponentProps?|Partial<Omit<ConditionComponentProps, keyof ConditionBaseProps>|undefined|additional props for conditions component|

Usage

Example with default components:

import React from "react";
import { BarDefault, InputDefault, ConditionDefault, ContainerDefault, StrongPasswordInput } from "react-strong-password-input";

function Default() {

    return (
        <StrongPasswordInput
            // Couldn't find a way to provide those components as default values
            InputComponent={InputDefault}
            BarComponent={BarDefault}
            ConditionComponent={ConditionDefault}
            ConditionContainerComponent={ContainerDefault}
            StrongPasswordContainerComponent={ContainerDefault}
            // 
            strongPasswordContainerComponentProps={{
                spacing: 1
            }}
            barComponentProps={{
                background: "#f0f0f0"
            }}
            securityLevels={[
                {
                    name: "invalid",
                    conditionsRequired: 0,
                    barComponentProps: {
                        barColor: "grey"
                    }
                },
                {
                    name: "tooWeak",
                    conditionsRequired: 1,
                    barComponentProps: {
                        barColor: "red",
                    }
                },
                {
                    name: "weak",
                    conditionsRequired: 2,
                    barComponentProps: {
                        barColor: "orange",
                    }
                },
                {
                    name: "good",
                    conditionsRequired: 3,
                    barComponentProps: {
                        barColor: "blue",
                    }
                },
                {
                    name: "strong",
                    conditionsRequired: 4,
                    barComponentProps: {
                        barColor: "green",
                    }
                }
            ]}
            conditions={[
                {
                    name: "length5",
                    validator: (password: string) => password.length >= 5,
                    conditionComponentProps: {
                        label: "Minimum length of 5 characters."
                    }
                },
                {
                    name: "1number",
                    validator: (password: string) => /.*[0-9].*/.test(password),
                    conditionComponentProps: {
                        label: "Contains at least 1 number."
                    }
                },
                {
                    name: "1uppercase",
                    validator: (password: string) => /.*[A-Z].*/.test(password),
                    conditionComponentProps: {
                        label: "Contains at least 1 uppercase letter."
                    }
                },
                {
                    name: "1lowercase",
                    validator: (password: string) => /.*[a-z].*/.test(password),
                    conditionComponentProps: {
                        label: "Contains at least 1 lowercase letter."
                    }
                }
            ]}
        />
    );
}

Result: default

Example with MUI

import { useState } from "react";
import { Circle, Done, Visibility, VisibilityOff } from "@mui/icons-material";
import { IconButton, LinearProgress, Stack, SxProps, TextField, TextFieldVariants, Theme, Typography } from "@mui/material";
import { green, grey, red } from "@mui/material/colors";
import { BarBaseProps, ConditionBaseProps, InputBaseProps, StrongPasswordInput } from "react-strong-password-input";

interface SimplePasswordInputProps extends InputBaseProps {
  sx?: SxProps<Theme>,
  variant?: TextFieldVariants,
}

function SimplePasswordInput({ value, onChange, sx, variant }: SimplePasswordInputProps) {
  const [hidden, setHidden] = useState(true);

  const hiddenHandler = () => setHidden(!hidden);

  return (
    <TextField
      value={value}
      onChange={onChange}
      sx={sx}
      variant={variant}
      type={hidden ? "password" : "text"}
      InputProps={{
        endAdornment: <IconButton onClick={hiddenHandler}>
          {hidden
            ? <Visibility />
            : <VisibilityOff />
          }
        </IconButton>
      }}
    />
  );
}

interface LinearBarProps extends BarBaseProps {
  barColor: string,
  background?: string
}

function LinearBar({ background, barColor, levels, currentLevel }: LinearBarProps) {
  const value = (currentLevel / levels) * 100;

  return (
    <Stack direction="row">
      <LinearProgress
        value={value}
        variant="determinate"
        sx={{
          width: "100%",
          background: background,
          "& .MuiLinearProgress-barColorPrimary": {
            backgroundColor: barColor,
          }
        }}
      />
    </Stack>
  );
}

interface SimpleConditionProp extends ConditionBaseProps {
  label: string | React.ReactElement
}

function SimpleCondition({ label, satisfied }: SimpleConditionProp) {
  return (
    <Stack direction="row" spacing={1}>
      {satisfied
        ? <Done fontSize="small" sx={{ color: green[300] }} />
        : <Circle fontSize="small" sx={{ color: red[300] }} />
      }
      {typeof label === "string"
        ? <Typography>{label}</Typography>
        : label
      }
    </Stack>
  );
}

function MUIStrongPassword() {

  return (
    <StrongPasswordInput
      InputComponent={SimplePasswordInput}
      BarComponent={LinearBar}
      ConditionComponent={SimpleCondition}
      ConditionContainerComponent={Stack}
      StrongPasswordContainerComponent={Stack}
      conditionContainerComponentProps={{
        spacing: 2,
        sx: {
          padding: 2,
          background: grey[200],
          borderRadius: 4
        }
      }}
      strongPasswordContainerComponentProps={{
        spacing: 2
      }}
      securityLevels={[
        {
          name: "invalid",
          conditionsRequired: 0,
          barComponentProps: {
            barColor: "grey"
          }
        },
        {
          name: "tooWeak",
          conditionsRequired: 1,
          barComponentProps: {
            barColor: "red"
          }
        },
        {
          name: "weak",
          conditionsRequired: 2,
          barComponentProps: {
            barColor: "orange"
          }
        },
        {
          name: "good",
          conditionsRequired: 3,
          barComponentProps: {
            barColor: "blue"
          }
        },
        {
          name: "strong",
          conditionsRequired: 4,
          barComponentProps: {
            barColor: "green"
          }
        }
      ]}
      conditions={[
        {
          name: "length5",
          validator: (password: string) => password.length >= 5,
          conditionComponentProps: {
            label: "Minimum length of 5 characters."
          }
        },
        {
          name: "1number",
          validator: (password: string) => /.*[0-9].*/.test(password),
          conditionComponentProps: {
            label: "Contains at least 1 number."
          }
        },
        {
          name: "1uppercase",
          validator: (password: string) => /.*[A-Z].*/.test(password),
          conditionComponentProps: {
            label: "Contains at least 1 uppercase letter."
          }
        },
        {
          name: "1lowercase",
          validator: (password: string) => /.*[a-z].*/.test(password),
          conditionComponentProps: {
            label: "Contains at least 1 lowercase letter."
          }
        }
      ]}
    />
  );
}

Result: MUI