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

@yan_coquoz/react_input

v0.1.57

Published

Composants custom React de type Input

Downloads

91

Readme

React Component

  • Author
  • GitHub P14_HRnet_React size GitHub top language GitHub language count

Minimalist input-like components for React.

french translation

Prerequisites

Summary

React Components

  • InputText
  • InputNumber
  • SelectField
  • Button
  • Modale
  • DatePicker
  • ScrollBar

Properties

All properties with a * are required :

InputText

  • idName *: {String} Corresponds to the htmlFor and className.properties of the label, as well as the id and the name of the input.
  • labelName : {String} label value and placeholder content.
  • isRequired : {Boolean} Whether the value is required or not.
  • myClass : {String} component class name.
  • toUpperCase : {Boolean} if you need to upper case label.
  • onChange : {Function} To have a controlled component, allows to retrieve the values of the input: name and value, for each action on the keyboard.
  • value: {String} the value found in the field.
  • placeholder: {String} the placeholder.

to summary


InputNumber

  • idName *: {String} Corresponds to the htmlFor and className properties of the label, as well as the id and the name of the input.
  • labelName : {String} label and placeholder content
  • isRequired : {Boolean} Whether the value is required or not
  • myClass *: {String} component class name
  • mini : {Number} minimum value
  • maxi : {Number} maximum value
  • toUpperCase : {Boolean} if you need to upper case label.
  • onChange : {Function} To have a controlled component, allows to retrieve the values of the input: name and value, for each action on the keyboard.
  • value: {String} the value found in the field.
  • placeholder: {String} the placeholder.

to summary


SelectField

  • options *: {Array of Object || Array} for the option tag, if it 's an Array of Object, it must contain a property name who will be display
  • labelName : {String} instead of label
  • isRequired : {Boolean} Whether the value is required or not.
  • idName *: {String} Corresponds to the htmlFor and className properties of the label, as well as the id and the name of the input.
  • onChange : {Function} to get the event.
  • toUpperCase : {Boolean} if you need to upper case label
  • optValue : {Boolean} Render 'Options' for first value in select area. If true, the first value will be options, but if isRequired is true, the value will be empty.
  • group : {Boolean} false by default. If true, tabs must look like this : [{car:[...arrayOfCars],bike:[...arrayOfBikes]}], then optgroup label will be car and bike.
  • onClick : {Function} Capture the click of the field.
  • onBlur : {Function} Capture the change of the field.
  • value : {String} the value found in the field.

to summary


Button

  • type *: {String} The type of button : button, submit, reset...
  • children *: {String} The content, like : 'validate', 'save' ...
  • myClass : {String} A class to give some style
  • idName : {String} Id of the button
  • onClick : {Function} If you need a function.. (onClick)

to summary


Modale

  • message *: {String} The message you need to display
  • open *: {Boolean} the order to open the modal
  • sendStyle : {String} Send color to the border of close button and text.
  • onClose *: {Function} the order to close the modal

to summary


DatePicker

  • idName *: {String} Corresponds to the htmlFor and className properties of the label, as well as the id of the input.
  • labelName : {String} label value.
  • myClass : {String} input className
  • isRequired : {Boolean} Whether the value is required or not.
  • toUpperCase : {Boolean} if you need to upper case label
  • lang : {String} to format date. by default "en" : yyyy-MM-dd. Can be french with "fr" : dd-MM-yyyy
  • placeholder : {String} What is expected in the field.

to summary


ScrollBar

  • barColor : {Number} Height of the progress bar, in pixels.
  • barHeight : {String} Progress bar color. 5px by default.
  • barOpacity : {Boolean} Gives a gradual opacity effect along the bar. False by default.

to summary


Example

import React, {useState} from "react"
import { InputText, Button, Modale, DatePicker } from "@yan_coquoz/react_input"

const MyForm = () => {
  const [isOpen, setIsOpen] = useState(false);

  const tab1 = ["red", "blue", "green"];
  const tab2 = ["short", "coat", "socket"];
  const tab3 = ["moto", "car", "boat"];

  const arrays = [
    { colors: [...tab1] },
    { clothes: [...tab2] },
    { vehicle: [...tab3] },
  ];

  const selectTabs = {
    options: arrays,
    idName: "arrays",
    labelName: "all tables",
    optValue: true,
    toUpperCase: true,
    isRequired: true,
    group: true,
  };

const barOptions = {
    barColor: "rgba(3, 83, 255, 0.8)",
    barHeight: 5,
    barOpacity: true,
}

    function handleOpenModal() {
        setIsOpen(true);
  }

  function handleInputText(name, value){
    console.log(name, value)
    // do what you want
 }
    return(
        <div>
            <ScrollBar {...barOptions}/>
            <form>
                <InputText 
                    idName={firstname} 
                    labelName={first name} 
                    isRequired={true} 
                    sendValue={handleInputText} 
                    myClass={"input_firstname"} 
                    toUpperCase={true}
                />

                <DatePicker
                    idName={"dateOfBirth"}
                    isRequired={false}
                    labelName={"date of birth"}
                    toUpperCase={true}
                    lang={"en"}
                />
                
                <SelectField {...selectTabs}>

                <Button type="submit">Save</Button>
            </form>
            <div>
                <Button type="button" onClick={handleOpenModal}>
                    Open Modale
                </Button>
                <Modale message="Hello World !!!" open={isOpen} sendStyle={"#F0F"} onClose={()=> setIsOpen(!isOpen)} />
            </div>
        </div>
    )
}

to summary