Go to file
Josh Johnson 1fda88c9cf Typo
2016-06-21 23:08:28 +01:00
assets Documentation + minor fixes 2016-06-21 23:06:23 +01:00
.babelrc API structuring + webpack config 2016-03-15 22:42:10 +00:00
.eslintrc Add event listeners to each element in this.elements + wrap them in div 2016-03-16 14:41:13 +00:00
.gitignore File structuring 2016-03-15 14:04:53 +00:00
index.html Documentation + minor fixes 2016-06-21 23:06:23 +01:00
LICENSE Initial commit 2016-03-15 14:02:08 +00:00
package.json Test Fuse for fuzzy searching 2016-05-03 14:55:38 +01:00
README.md Typo 2016-06-21 23:08:28 +01:00
server.js API structuring + webpack config 2016-03-15 22:42:10 +00:00
webpack.config.dev.js Reference correct file 2016-05-16 14:49:18 +01:00
webpack.config.prod.js Single select box support 2016-05-07 12:36:50 +01:00

Choices.js - in development

A lightweight, configurable select box/text input plugin. Similar to Select2 and Selectize but without the jQuery dependency.

Coming soon.

Setup

<script src="/assets/js/dist/choices.min.js"></script>
<script>
    // Pass multiple elements:
    var choices = new Choices(elements);
    
    // Pass single element:
    var choice = new Choices(element);
    
    // Pass reference
    var choice = new Choices('[data-choice']);
    var choice = new Choices('.js-choice');
    
    // Passing options
    var choices = new Choices(elements, {
        items: [],
        addItems: true,
        removeItems: true,
        removeButton: false,
        editItems: false,
        maxItems: false,
        delimiter: ',',
        allowDuplicates: true,
        allowPaste: true,
        allowSearch: true, 
        regexFilter: false,
        placeholder: true,
        placeholderValue: '',
        prependValue: false,
        appendValue: false,
        selectAll: true,
        loadingText: 'Loading...',
    });
</script>

Installation

To install via NPM, run npm install --save-dev choices.js

Options

items

Type: Array Default: []

Usage: Add pre-selected items to input.

Pass an array of strings:

['value 1', 'value 2', 'value 3']

Pass an array of objects:

[{ 
	value: 'Value 1',
	label: 'Label 1', 
	id: 1 
},
{ 
	value: 'Value 2',
	label: 'Label 2', 
	id: 2
}]

addItems

Type: Boolean Default:true

Usage: Whether a user can add items.

removeItems

Type: Boolean Default:true

Usage: Whether a user can remove items (only affects text and multiple select input types).

removeButton

Type: Boolean Default:false

Usage: Whether a button should show that, when clicked, will remove an item (only affects text and multiple select input types).

editItems

Type: Boolean Default:false

Usage: Whether a user can edit selected items (only affects text input types).

maxItems

Type: Boolean Default:null

Usage: Optionally set an item limit.

delimiter

Type: String Default:,

Usage: What divides each value (only affects text input types).

allowDuplicates

Type: Boolean Default:true

Usage: Whether a user can input a duplicate item (only affects text input types).

allowPaste

Type: Boolean Default:true

Usage: Whether a user can paste into the input.

allowSearch

Type: Boolean Default:true

Usage: Whether a user can filter options by searching (only affects select input types).

regexFilter

Type: Regex Default:null

Usage: A filter that will need to pass for a user to successfully add an item (only affects text input types).

placeholder

Type: Boolean Default:true

Usage: Whether the input should show a placeholder. Used in conjunction with placeholderValue. If placeholder is set to true and no value is passed to placeholderValue, the passed input's placeholder attribute will be used as the placeholder value.

placeholderValue

Type: String Default:null

Usage: The value of the inputs placeholder.

prependValue

Type: String Default:null

Usage: Prepend a value to each item added to input (only affects text input types).

appendValue

Type: String Default:null

Usage: Append a value to each item added to input (only affects text input types).

highlightAll

Type: Boolean Default:true

Usage: Whether a user can highlight items.

loadingText

Type: String Default:Loading...

Usage: The loading text that is shown when options are populated via an AJAX callback.

classNames

Type: Object Default:

classNames: {
    containerOuter: 'choices',
    containerInner: 'choices__inner',
    input: 'choices__input',
    inputCloned: 'choices__input--cloned',
    list: 'choices__list',
    listItems: 'choices__list--multiple',
    listSingle: 'choices__list--single',
    listDropdown: 'choices__list--dropdown',
    item: 'choices__item',
    itemSelectable: 'choices__item--selectable',
    itemDisabled: 'choices__item--disabled',
    itemOption: 'choices__item--option',
    group: 'choices__group',
    groupHeading : 'choices__heading',
    button: 'choices__button',
    activeState: 'is-active',
    focusState: 'is-focused',
    openState: 'is-open',
    disabledState: 'is-disabled',
    highlightedState: 'is-highlighted',
    hiddenState: 'is-hidden',
    flippedState: 'is-flipped',
    selectedState: 'is-selected',
}

Usage: Classes added to HTML generated by Choices.

callbackOnInit

Type: Function Default:() => {}

Usage: Function to run once Choices initialises.

callbackOnAddItem

Type: Function Default:(id, value, passedInput) => {}

Usage: Function to run each time an item is added.

callbackOnRemoveItem

Type: Function Default:(id, value, passedInput) => {}

Usage: Function to run each time an item is removed.

Methods

highlightAll();

Usage: Highlight each chosen item (selected items can be removed).

unhighlightAll();

Usage: Un-highlight each chosen item.

removeItemsByValue(value);

Usage: Remove each item by a given value.

removeActiveItems(excludedId);

Usage: Remove each selectable item.

removeSelectedItems();

Usage: Remove each item the user has selected.

showDropdown();

Usage: Show option list dropdown

hideDropdown();

Usage: Hide option list dropdown

toggleDropdown();

Usage: Toggle dropdown between showing/hidden.

setValue(args);

Usage: Set value of input based on an array of objects or strings.

clearValue();

Usage: Clear value of input.

clearInput();

Usage: Clear input.

disable();

Usage: Disable input from selecting further options.

ajax(fn);

Usage: Populate options via a callback.

Browser compatibility

ES5 browsers and above (http://caniuse.com/#feat=es5).

Development

To setup a local environment: clone this repo, navigate into it's directory in a terminal window and run the following command:

npm install

NPM tasks

  • npm start
  • npm run js:build
  • npm run css:watch

Contributions

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using npm scripts...bla bla bla

License

MIT License