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-ui-forms

v1.0.2

Published

React validate form

Downloads

15

Readme

react-ui-forms

How to install

npm i react-ui-forms --save

How to import

For TypeScript usage there is a index.d.ts in node_modules folder

import {ReactUiForms, ValidationType} from "react-ui-forms";
import {UIPhoneInput} from "react-ui-forms";
import {UITextArea} from "react-ui-forms";
import {UICountrySelector} from "react-ui-forms";
import {UIColorSelector} from "react-ui-forms";
import {UIFormSelector} from "react-ui-forms";
import {UICardExpiryInput} from "react-ui-forms";
import {UIPaymentCardInput} from "react-ui-forms";
import {UITextInput} from "react-ui-forms";
import {UiFormCheckbox} from "react-ui-forms";
import {UIFormMessage, UIFormMessageType} from "react-ui-forms";

or

var ReactUiForms = require('react-ui-forms');
var ValidationType = require('react-ui-forms');
var UITextArea = require('react-ui-forms');
var UICountrySelector = require('react-ui-forms');
var UIFormSelector = require('react-ui-forms');
var UICardExpiryInput = require('react-ui-forms');
var UIPaymentCardInput = require('react-ui-forms');
var UITextInput = require('react-ui-forms');
var UiFormCheckbox = require('react-ui-forms');
var UIFormMessage = require('react-ui-forms');
var UIFormMessageType = require('react-ui-forms');

Also use css and images in a public folder in:

node_modules/react-ui-forms/public/....

How to use

- ReactUiForms

Props
  • className: string;
  • onSubmitValid: (model: any) => void; (required)
  • onSubmitInvalid : (model: any, invalidModel: { [key: string]: string; }) => void;
  • resetOnSubmitValid : boolean;
ValidationType -enum
  • REQUIRED
  • MIN_LENGTH
  • MAX_LENGTH
  • EMAIL
  • SAME_AS
  • CARD
  • CARD_SIMPLE
  • CARD_EXPIRY
  • PERFECTMONEY
  • WEBMONEY
  • DCPAY
  • PHONE_NUMBER
  • REG_EXP
<ReactUiForms onSubmitValid={this.onValid} resetOnSubmitValid={true}>
    // Form elements here..
</ReactUiForms>

- UIFormMessage

  • message: string;
  • type: UIFormMessageType;
  • onClose: () => void;
UIFormMessageType - enum
  • SUCCESS
  • ERROR
<UIFormMessage message="Test message success" type={UIFormMessageType.SUCCESS}/>
<UIFormMessage message="Test message error" type={UIFormMessageType.ERROR}/>

- UITextInput

Props
  • message: string;
  • name: string;
  • type?: string;
  • value?: string;
  • placeholder?: string;
  • proxyValueName?: string;
  • validationTypes?: ValidationType[];
  • validationParams?: any;
  • validateOnChange?: boolean;
  • onChange?: (value: string) => void;
  • onEvent?: (event: any) => void;
  • invalidateMessage?: string;
<UITextInput
    name="first"
    type="text"
    placeholder="Some text here..."
    validationTypes={[ValidationType.REQUIRED]}
/>

- UiFormCheckbox

Props
  • liner?: boolean;
  • faded?: boolean;
  • checked: boolean;
  • label?: any;
  • formatLabel?: FormatLabel;
  • name: string;
  • onChange : (checked: boolean) => void;
<UiFormCheckbox
    checked={this.state.ch1}
    liner={true}
    name="chk2"
    label="Label 1"
    onChange={(val) => {
        this.setState({
            ch1: val
        } as State);
    }}
/>

- UIPaymentCardInput

Props
  • name: string;
  • type?: string;
  • value?: string;
  • placeholder?: string;
  • proxyValueName?: string;
  • validateOnChange?: boolean;
  • onChange?: (value: string) => void;
  • simpleValidation?: boolean;
<UIPaymentCardInput
    name="cardtest"
    placeholder="4276 0000 0000 0000"
/>

- UICardExpiryInput

Props
  • name: string;
  • type?: string;
  • value?: string;
  • placeholder?: string;
  • proxyValueName?: string;
  • validateOnChange?: boolean;
  • onChange?: (value: string) => void;
<UICardExpiryInput name="cardexpiry" placeholder="07 / 17"/>

- UIFormSelector

Props
  • message: string;
  • items: UIFormSelectorItem[];
  • defKey: any;
  • onChange: (key: any) => void;
  • search?: boolean;
  • searchPlaceholder?: string;
  • searchEmptyMessage?: string;
  • placeholder?: string;
  • globalPositionedDropdown?: boolean;
  • maxHeightItems?: number;
UIFormSelectorItem
  • key: any;
  • value: string;
<UIFormSelector
    items={
        [
            {
                key: 0,
                value: 'First item'
            },
            {
                key: 1,
                value: 'Second item'
            },
            {
                key: 2,
                value: 'Third item'
            }
        ]
    }
    defKey={this.state.selKey}
    onChange={(val: any) => {
        this.setState({
            selKey: val
        } as State);
    }}
/>

- UIColorSelector

Props
  • message: string;
  • items?: UIFormColorItem[];
  • defKey: string;
  • onChange: Function;
  • globalPositionedDropdown?: boolean;
  • placeholder?: string;
UIFormColorItem
  • key: string;
  • value: string;
<UIColorSelector
    defKey={this.state.colorKey}
    onChange={(val: string) => {
        console.log(val);
        this.setState({
            colorKey: val
        } as State);
    }}
/>

- UICountrySelector

Props
  • message: string;
  • isSng?: boolean;
  • defKey: any;
  • onChange: (key: any) => void;
  • placeholder?: string;
  • maxHeightItems?: number;
  • iconsPath?: string;
<UICountrySelector
    defKey={this.state.countryKey}
    onChange={(val: string) => {
        console.log(val);
        this.setState({
            countryKey: val
        } as State);
    }}
    iconsPath="https://static.expertoption.com/flags/svg/4x3/"
/>

- UIPhoneInput

Props
  • message: string;
  • name: string;
  • type?: string;
  • value?: string;
  • isSng?: boolean;
  • placeholder?: string;
  • proxyValueName?: string;
  • validateOnChange?: boolean;
  • onChange?: (value: string) => void;
  • phoneDefaultCountrySNG?: string;
  • phoneDefaultCountryGlobal?: string;
  • iconsPath?: string;
<UIPhoneInput
    name="phone"
    iconsPath="./flags/svg/4x3/"
    isSng={true}
/>

- UITextArea

Props
  • message: string;
  • name: string;
  • value?: string;
  • placeholder?: string;
  • validationTypes?: ValidationType[];
  • validationParams?: any;
  • validateOnChange?: boolean;
  • proxyValueName?: string;
<UITextArea name="text-area"/>

- Button

Use special class for buttons

  • btn-success
  • btn-primary
  • btn-reset
  • btn-danger
  • btn-violet
  • btn-google
  • btn-facebook
  • btn-tw
  • small
  • full
  • half-left
  • half-right
  • loading
<button className="btn btn-success" type="submit">Button</button>

For development

just use:

  • $ yarn or $ npm i
  • $ gulp

open your browser http://localhost:3000

For Build

$ ./production