1.0.3 • Published 8 years ago

react-as-suggest v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

react-as-suggest

Test coverage Build Status Dependency Status devDependency Status NPM version node License npm download

A React auto-suggest text input

Demo

Demo here

Installation

$ npm install --save react-as-suggest

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import Suggest from 'react-as-suggest';
ReactDOM.render(
  <div className="fields">
    <div className="field">
      <Suggest placeholder="width 210px" suggests={['aaa', 'bbb', 'ccc']} width={210} />
    </div>
    <div className="field">
      <Suggest placeholder="width 280px" suggests={['aaa', 'bbb', 'ccc']}/>
    </div>
    <div className="field">
      <Suggest placeholder="width 350px" suggests={['aaa', 'bbb', 'ccc']} width={350} />
    </div>
    <div className="field">
      <Suggest placeholder="not use filter" suggests={['aaa', 'bbb', 'ccc']} useFilter={false} />
    </div>
    <div className="field">
      <Suggest placeholder="skin error" skin="error" suggests={['aaa', 'bbb', 'ccc']}/>
    </div>
    <div className="field">
      <Suggest placeholder="skin success" skin="success" suggests={['aaa', 'bbb', 'ccc']}/>
    </div>
    <div className="field">
      <Suggest disabled placeholder="disabled" suggests={['aaa', 'bbb', 'ccc']}/>
    </div>
    <div className="field">
      <Suggest placeholder="readOnly" readOnly suggests={['aaa', 'bbb', 'ccc']}/>
    </div>
    <div className="field">
      <Suggest maxHeight={80} placeholder="maxheight 80px" suggests={['aaa', 'bbb', 'ccc']}/>
    </div>
    <div className="field">
      <Suggest onBlur={val => console.log(`blur: ${val}`)} onFocus={val => console.log(`focus: ${val}`)} placeholder="event handle" suggests={['aaa', 'bbb', 'ccc']}/>
    </div>
  </div>
  , document.getElementById('demo'));

Properties

NameDescriptionTypeRequiredDefault Value
classNameclass name of the suggest inputString'ra-suggest'
defaultValuedefault value of the suggest inputString''
disabledwhether the suggest input is disabledBooleanfalse
inputClassNameclass name of the inputString'ra-input'
maxHeightmax height of the suggest panelNumber160
namename of the suggest input in the formStringnull
onBlurcallback when blurFunction() => {}
onChangecallback when value changeFunction() => {}
onFocuscallback when focusFunction() => {}
placeholderplaceholder of the suggest inputString''
readOnlywheher this suggest input is readonlyBoolean
skinskin of the suggest input'success'│'error'│'default''default'
suggestssuggset listArray(String)[]
useFilterwhether suggest is auto filter by current valueBooleantrue
valuecurrent valueString
widthwidth of the suggest inputNumber280

Development

Online test page here

$ npm run dev # startup local dev server
$ npm run build # build
$ npm run test # run tests
$ npm run cov # run coverage
$ npm run build-demo # build demo, auto run in 'npm run build'
$ npm run build-test # build test, auto run in 'npm run build'

License

The MIT License (MIT)

Copyright (c) 2015 LingyuCoder

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago