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

bnp-react-register

v0.1.6

Published

A plug-and-use React component for creating a user registration page with customizable fields.

Downloads

11

Readme

React Register Component

A plug-and-use React component for creating a user registration page with customizable fields.

Installation

npm install bnp-react-register

Usage

import React from 'react';
import { Register, FieldType, FieldConfig, Validator } from 'bnp-react-register';

// Custom validator function
const isValidCustomField = (value: string) => {
  // Your custom validation logic here
  return value.length >= 8;
};

const YourRegisterPage = () => {
  return (
    <Register
      headerLabel="Create an Account"
      fieldsToShow={[
        {
          id: "email",
          field: FieldType.EMAIL,
          label: "Email",
          validation: {
            validator: (email) => isEmailValid(email),
            errorText: "Invalid email",
          },
        },
        {
          id: "password",
          field: FieldType.PASSWORD,
          label: "Password",
        },
        {
          id: "phno",
          field: FieldType.PHONE_NUMBER,
          label: "Phone Number",
        },
        {
          id: "addr",
          field: FieldType.ADDRESS,
          label: "Address",
          type: "textarea",
        }
      ]}
      registerButtonLabel="Sign Up"
      registerButtonSize="large"
      onRegister={(data) => handleRegistration(data)}
    />
  );
};

Props

  • headerLabel: (Optional) Custom label or JSX element for the header of the registration page.
  • fieldsToShow: An array of objects specifying the fields to display. Each object should have an id (unique identifier), field (field type), and optional properties like label, helperText, validation, onChange, and type.
  • registerButtonLabel: (Optional) Custom label for the registration button.
  • registerButtonSize: (Optional) Size of the registration button ("small", "normal", "large").
  • customRegisterButton: (Optional) Custom JSX element to replace the default registration button.
  • onRegister: (Optional) Callback function triggered when the registration button is clicked.

Mixing and Matching Fields

You can mix and match the fieldsToShow array to create your own set of fields and validations. Each object in the array corresponds to a registration field, allowing for easy customization.

Custom fields

You can also add your own custom fields along with the predefined fields. Just use the FieldType.CUSTOM and provide you custom field component as the element property.

Note: When using custom fields the onRegister, onChange will not have the data for the custom field, hence the handling of custom field is needed to be done manually

Example

<Register
  headerLabel="Create an Account"
  fieldsToShow={[
    {
      id: "email",
      field: FieldType.EMAIL,
      label: "Email",
      validation: {
        validator: (email) => isEmailValid(email),
        errorText: "Invalid email",
      },
    },
    {
      id: "password",
      field: FieldType.PASSWORD,
      label: "Password",
    },
    {
      id: "phno",
      field: FieldType.PHONE_NUMBER,
      label: "Phone Number",
    },
    {
      id: "role",
      field: FieldType.CUSTOM,
      element: (
            <div>
              <input placeholder="Custom field" />
            </div>
        ),
      },
    {
      id: "addr",
      field: FieldType.ADDRESS,
      label: "Address",
      type: "textarea",
    },
  ]}
  onRegister={(data) => handleRegistration(data)}
/>

Creating a Custom Register Button

You can create your own register button by providing a custom JSX element using the customRegisterButton prop. This allows for complete control over the appearance and behavior of the registration button.

Example

<Register
  headerLabel="Create an Account"
  fieldsToShow={[
    {
      id: "email",
      field: FieldType.EMAIL,
      label: "Email",
      validation: {
        validator: (email) => isEmailValid(email),
        errorText: "Invalid email",
      },
    },
    {
      id: "password",
      field: FieldType.PASSWORD,
      label: "Password",
    },
    {
      id: "phno",
      field: FieldType.PHONE_NUMBER,
      label: "Phone Number",
    },
    {
      id: "addr",
      field: FieldType.ADDRESS,
      label: "Address",
      type: "textarea",
    },
  ]}
  customRegisterButton={<YourCustomButton />}
  onRegister={(data) => handleRegistration(data)}
/>

FieldConfig Interface

The FieldConfig interface defines the structure for configuring a field in the registration component:

export interface FieldConfig {
  id: string;
  field: FieldType;
  label?: string | React.JSX.Element;
  helperText?: string | React.JSX.Element;
  validation?: Validator;
  onChange?: (arg: { field: string; value: string }) => any;
  type?: "text" | "password" | "tel" | "textarea" | "number";
  element?: React.JSX.Element;
}

Validator Interface

The Validator interface defines the structure for a validation function:

export interface Validator {
  validator: (value: string) => boolean;
  errorText?: string;
}

FieldType Enum

The FieldType enum defines the types of fields available for configuration:

export enum FieldType {
  NAME = "Name",
  PASSWORD = "Password",
  PHONE_NUMBER = "Phone number",
  ADDRESS = "Address",
  EMAIL = "Email",
  CUSTOM = "CUSTOM",
}

License

This project is licensed under the MIT License - see the LICENSE.md file for details.