3.0.6 • Published 7 months ago

jb-input-react v3.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

JBInput React

this component is React.js wrapper for jb-input web component.

text input react component with this benefit:

  • easy to add custom regex or function validation.

  • multiple validation with different message.

  • support both RTL and LTR.

  • add label and message in UX friendly format.

  • customizable ui with css variable so you can have multiple style in different scope of your app.

  • custom display for password and number input.

  • support typescript

##demo image:
npm.io npm.io

install

using npm

npm i jb-input-react

in your jsx file

import {JBInput} from 'jb-input-react';
<JBInput class="" label="لیبل" message="متن ثابت زیر کادر متن"></JBInput>

events

  • onChange
    <JBInput onChange={(event) => console.log(event.target.value)}></JBInput>
  • onKeyUp
    <JBInput onKeyUp={(event) => console.log(event.target.value)}></JBInput>
  • onEnter
    <JBInput onEnter={(event) => console.log(event.target.value)}></JBInput>
  • onKeydown
    <JBInput onKeydown={(event) => console.log(event.target.value)}></JBInput>
  • onFocus
    <JBInput onFocus={(event) => console.log(event.target.value)}></JBInput>
  • onBlur
    <JBInput onBlur={(event) => console.log(event.target.value)}></JBInput>

set validation

you can set validation to your input by creating a validationList array and passing in to validationList props:

    const validationList = [
        {
            validator: /.{3}/g,
            message: 'عنوان حداقل باید سه کاکتر طول داشته باشد'
        },
        #you can use function as a validator too
        {
            validator: (inputedText)=>{return inputedText == "سلام"},
            message: 'شما تنها میتوانید عبارت سلام را وارد کنید'
        },
    ]
    <JBInput validationList={validationList}></JBInput>

check validation

you can check if an input value meet your validation standad by creating a ref of the element using React.createRef().

    const elementRef = React.createRef();
    const isValid = elementRef.current.triggerInputValidation(true).isAllValid;

if isValid is true the value of input is valid.

number input extra feature

if you set type="number" JBInput will add some feature for you. for example your input will only get number chart and wont accept other string and we add 2 + & - button to the input so user can change number without keyboard by just taping on these buttons. you can also use Up and Down arrow keys too increase or decrease number value in your field. JBInput will also let you control some aspect of user input too for example you can limit decimal precision or change increase/decrease step of + - button. too achive this you must call one function and set value you need to change.

number input events

click on + - button will call onChange event.

  const numberFieldParameter = {
        //how many number you want to + or  - on user press buttons or use arrow keys defualt is 1
        step:100,
        // how many decimal input accept defualt is infinty
        decimalPrecision:2,
        // what char replaced to input if user paste some illeglal value defualt is '' (empty string)
        invalidNumberReplacement:'0',
        // separate every 3 number with comma like 1000000 => 1,000,000
        useThousandSeparator:false,
        // which char we use to separate thousand number
        thousandSeparator:',',
        //can input accept negativenumber or not
        acceptNegative:true,
    }
    <JBInput numberFieldParameter={numberFieldParameter}></JBInput>

other props

props namedescription
disableddisable the input
inputmodeset input mode help mobile device to open proper keyboard for your input like url, search and numeric
directionset web-component direction defualt set is rtl but if you need ltr use

set custome style

in some cases in your project you need to change defualt style of web-component for example you need zero margin or different border-radius and etc. if you want to set a custom style to this web-component all you need is to set css variable in parent scope of web-component

css variable namedescription
--jb-input-margincomponent margin defualt is 0 12px
--jb-input-border-radiusomponent border-radius defualt is 16px
--jb-input-border-colorborder color of select in normal mode
--jb-input-border-color-focusborder color of select in normal mode
--jb-input-bgcolorbackground color of input
--jb-input-border-bottom-widthborder bottom thickness desualt is 3px
--jb-input-label-font-sizefont size of input label defualt is 0.8em
--jb-input-label-colorchange label color defualt is #1f1735
--jb-input-message-font-sizefont size of message we show under input
--jb-input-message-error-colorchange color of error we show under input defualt is red
--jb-input-heightheight of input defualt is 40px
--jb-input-placeholder-colorchange placeholder color
--jb-input-placeholder-font-sizechange placeholder font-size
--jb-input-value-font-sizeinput value font-size
--jb-input-value-colorinput value color
--jb-input-input-paddingset input inner padding default is 2px 12px 0 12px
--jb-input-input-text-alignset input element text align for example if you have number Input and want to make it left
--jb-input-box-shadowset box shadow of input
--jb-input-box-shadow-focusset box shadow of input on focus

number input special style

css variable namedescription
--jb-input-increase-button-color+ button fill color
--jb-input-increase-button-color-hover+ button fill color on hover
--jb-input-decrease-button-color- button fill color
--jb-input-decrease-button-color-hover- button fill color on hover
--jb-input-number-button-widthnumber input width
--jb-input-number-button-heightnumber input height
--jb-input-decrease-button-borderdecrease button borderm
--jb-input-increase-button-borderincrease button border
--jb-input-increase-button-border-radiusincrease button border-radius
--jb-input-decrease-button-border-radiusdecrease button border-radius
--jb-input-increase-button-bgincrease button background color
--jb-input-decrease-button-bgdecrease button background color

add custom element in input box

in JBInput you can put icon or any other custom html DOM in input box. to doing so you just have to plae custom DOM in JBInput tag and add slot="start-section" or slot="end-section" to place it before or after input field. for better result i suggest you use JBInput-inbox-element tag but its optional and you can use your own custom tag too. JBInput-inbox-element will add some style to make sure your icon will place in center and will not overflow and make your job easier if you want more controll you can skip it and use your own tag. example:

<JBInput>
    <JBInput-inbox-element slot="end-section">
        <div>after</div>
    </JBInput-inbox-element>
    <JBInput-inbox-element slot="start-section">
        <div>before</div>
    </JBInput-inbox-element>
</JBInput>
3.0.4

7 months ago

3.0.6

7 months ago

3.0.5

7 months ago

3.0.3

10 months ago

3.0.2

10 months ago

3.0.1

11 months ago

3.0.0

11 months ago

2.0.0

11 months ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago