React.js component for making tag autocompletion inputs with categorized results with no dependencies and 10KB minified.
Note: v1.x versions only work with react 0.14.0 or higher. For compatibility with previous versions use the v0.x versions.
npm install react-categorized-tag-input
With webpack, browserify, etc (recommended way):
import TagInput from 'react-categorized-tag-input';
or (if you are not yet using ES2015, which you should)
var TagInput = require('react-categorized-tag-input');
With other tools:
Just include the categorized-tag-input.js
file in your HTML and your good to go. It is already minified.
If you want to use the default style you have to include the categorized-tag-input.css
file. It is plain CSS, no LESS, no SASS, no dependencies.
As a personal suggestion, I recommend webpack. You would just need to require('node_modules/react-categorized-tag-input/categorized-tag-input.css');
.
## Usage
To use this component we will assume the imported variable name is TagInput
.
The props are very straightforward.
Name | Type | Description | default |
---|---|---|---|
addNew | boolean | If true, allows the user to create new tags that are not set in the dataset | true |
categories | Array of objects | Dataset with categories and items | Required |
transformTag | function | A function that will receive the category id and the selected item and must return a string. This string will be the resultant string. Useful if you need to apply a transformation to the tags. | item is resulting tag |
value | Array of strings | Array with the initial tags | [] |
onBlur | function | Callback for when the input loses focus | noop |
onChange | function | Callback for when the input changes. It does not get an event as parameter, it gets the array of tags after the change. | noop |
The category object for the dataset looks like this:
{
id: 'string or number identifying the category',
type: 'word to describe the category. Will be used on the create new tag button. E.g: "Create new animal foo"',
title: 'Title displayed on the category row',
items: ['Array', 'With', 'Tags'],
single: optional boolean. If is true the row will be treated as one-valued row. It does not have the option of adding new items to the category
}
<TagInput categories={myCategories} addNew={true}
transformTag={tagTransformer}
onBlur={onBlur}
onChange={onChange} />
You can either use the onChange
callback or use the value()
method of the component. It will return the existing tags as an array of strings.
When you click on the input you will be able to write on it. Right away, a panel with the categories with matches will be shown. You can navigate through categories and options using the arrow keys to change the selected tag. Backspace when there is nothing written erases the last tag. Enter and ,
add the currently selected tag to the input.
## TODO
- More complete test suite
- Setup test coverage
Will it have async options and AJAX loaded options? Not for now. You are welcome to implement it and contribute to it, though.