react-super-select

This project is maintained by alsoscotland

react-super-select

version: 1.0.23

A flexible replacement for the html select control built with React

Features:

Dependencies:

All dependencies are globally shimmed. They will need to be available in global scope as React, classNames, and _ respectively

install from npm

$ npm install react-super-select
        

API Docs

View API Documentation

Live Examples Page

View Live Examples Page

Keyboard Navigation

View Keyboard Navigation Docs

API documentation

you can also view the Annotated Source Code
Component Property API Documentation Links:

(Function) optional

(dataSource must be supplied if left undefined)

Your select dropdown’s data may be fetched via ajax if you provide a function as the value for this option.

The function will be passed one argument, the dataSource that was provided to the dataSource prop

The return value of the function must be a promise object. (i.e. an object with a then function). The promise must resolve with a value meeting the description of the dataSource option documentation.

The dataSource option should be left undefined when using this option.

Back to TopBack to API Documentation Links

(clearSearchOnSelection) (Boolean) optional

(Used in conjunction with the searchable option)

When set to true, If a user has entered a search string into the search input and then makes a selection from the filtered result set, the search field will be automatically cleared.

Back to TopBack to API Documentation Links

(String) optional

This string value will be used to generate aria accessibility labels.

This prop should be used in apps with isomorphic rendering.

By default, the control will generate a default value using lodash uniqueId when This prop is left undefined

The value must conform to the character-rules for allowed characters for an html id attribute

Back to TopBack to API Documentation Links

(Function) optional

(Used in conjunction with the searchable option)

The function provided will serve as a replacement of the default search filter function.

(If left undefined the default filter function will be used)

The Default Filtering function is a lowercase string comparison for text. It matches the optionLabelKey value to the text entered into the dropdown’s search field). The function leverages Lodash’s filter function with your dataSource collection as its first argument

Back to TopBack to API Documentation Links

(Function) optional

(Used in conjunction with the groupBy option)

This function provides custom templating capability for your dropdown heading options.

The function will be called with the value returned as each group’s object key as its first argument. (This is the value returned by Lodash’s groupBy when passed the value of your groupBy option). It should return your desired group heading markup

Back to TopBack to API Documentation Links

(String) optional

(Used in conjunction with the ajaxDataFetch and pageDataFetch options)

This string value will be added as a css class to the loading icon allowing css overrides.

(By default the control uses an animated gif spinner which is a base64 background image in css)

Back to TopBack to API Documentation Links

(Function) optional

This function provides custom templating capability for your dropdown options. It will be used to render the display of selected values in the case of a multiple select control which does not have tags set to true.

The function should accept two parameters,

  • a single option object from your dataSource collection
  • the current searchString (for searchable controls)

It should return your desired markup based on that single option object's properties and the search term

Back to TopBack to API Documentation Links

(Function) optional

This function provides custom templating capability for how the selected items will display inside the control trigger. It will be used to render the display of selected values.

The function should accept one parameter,

  • the current state value of the control

It should return your desired markup based on that value

Back to TopBack to API Documentation Links

(String) optional

(Used in conjunction with the tags option)

This value will be added as a css class to the wrapper of user-selected options display element when it is displayed as a tag.

You should be able to overide all tag styling by leading your css rules with

.r-ss-tag.{customTagClass}

Back to TopBack to API Documentation Links

(Array|Object|Collection Object) optional

(ajaxDataFetchmust be supplied if left undefined)

The dataSource option provides the data for your options dropdown. The value provided will be passed to an internal parser (_configureDataSource), which will return a collection (array of option objects) found based on argument type

The parsing method supports dataSource values as:

  • an array of option objects (will be directly assigned to state.data)
  • an object with a collection property (object.collection will be assigned to state.data)
  • an object with a get function (the return value of object.get(‘collection’) will be assigned to state.data)

Each option in the resulting collection must have the following properties:

  • a unique value corresponding to the key set by the optionValueKey or the default optionValueKey of 'id'
  • a defined value corresponding to the key set by the optionLabelKey or the default optionLabelKey of 'name'

Each Option may be disabled for selection by adding an optional boolean property "disabled" i.e. disabled: true

Back to TopBack to API Documentation Links

(focusOnMount) (Boolean) optional (Used in conjunction with the openOnMount option)

When set to true, The component will be given document focus after it mounts (Forcing focus is only advisable if the user input from the super select control is the main purpose of your page)

Back to TopBack to API Documentation Links

(Boolean) (Default: false) optional

Whether or not the control allows browser default onWheel scroll handling in an open dropdown.

By default, mousewheel events are arrested so that the control will not scroll out of view as the end of its results set is reached. When this prop is set to true, the handler that stops the page scrolling will be bypassed.

Back to TopBack to API Documentation Links

(Function) optional

(should be provided when using the pageDataFetch option)

This function accepts one argument, a value as described by the dataSource option documentation.

It should return a Boolean value that indicates whether the option data collection has any more pages available for fetching

Back to TopBack to API Documentation Links

(Boolean) optional

Whether or not the control should stay open when selections are made

By default. The control will close when a selection is made.
(In the case of multiple, when a single selection is chosen without the command-key)

Set this option to true to keep the control open

Back to TopBack to API Documentation Links

(Function) required

This is the main callback handler for the control.

When a user makes selection(s), this handler will be called, the selected option (or when multiple or tags an array of selected values) will be passed to the handler as an argument.

(The values passed are option objects from the dataSource collection)

Back to TopBack to API Documentation Links

(String) optional

(defaults to using ‘name’ as the key if left undefined)

This value represents the key in each option object (from the dataSource collection)

This key should map to the value you would like displayed as a label for each option.

Back to TopBack to API Documentation Links

(String) optional

(defaults to using ‘id’ as the key if left undefined)

This value represents the key in each option object (from the dataSource collection), which represents the value that uniquely identifies that option across the dataSource collection.

Think of it in terms of the value attribute of the html option tag (inside a select)

  <select>
    <option value="?">

Back to TopBack to API Documentation Links

(Function) optional

(A hasMorePages function should be provided when using this option)

Additional pages of data can be fetched via ajax if you provide a function as the value for this option.

The function takes one argument, the value provided as the dataSource (or the return value of the ajaxDataSource function).

It must return a promise object. (i.e. an object with a then function). The promise must resolve with a value meeting the description of the dataSource option documentation.

The pageDataFetch function will be called based upon the user’s scroll position in the dropdown (reaching a threshold close enough to the end of the dropdown's results list).

It will not be called when loading ajax data, or when filtering results in a searchable dropdown, or when hasMorePages evaluates to false

Back to TopBack to API Documentation Links

Keyboard Navigation:

Keyboard Navigation Links By Key:

(Closed Control State)

  • open the option dropdown

When the control's main element is focused. Pressing the down arrow key will open the dropdown. (It can also be pressed with the alt-key with the same result)

(Opened Control State)

  • navigation of options

Pressing the down-arrow key when the dropdown is open will move focus down to the next selectable option. If the searchable prop is true, The first keypress of the down arrow will focus the search input field.

Multiselect Specific Behaviors

(With shift-key held down)

  • select focused option and move focus down

If the down arrow is pressed with the shift-key in a multiselect or tags control, the focused option will be selected (or deselected if alreadySelected), and the focus will move down to the next available option.

Back to TopBack to Keys Links

(Closed Control State)

  • no effect

(Opened Control State)

  • Move focus to the last available option

Pressing the end key moves focus to the last option in the dropdown

Back to TopBack to Keys Links

(Closed Control State)

  • open the dropdown

Pressing enter when the the control has focus will open the dropdown.

(Closed Control State - when tag removal button focused)

  • remove the focused tag (only applicable to controls with the tags property set to true)

Pressing enter when a tag removal button has focus will remove the tag from the selected values. After the tag has been removed, focus is moved to the first-available tag removal button.

(Opened Control State)

  • Select the currently focused option

Pressing the enter key selects the option that currently has focus. In a non-multiselect control, the dropdown will close after the selection is made.

Multiselect Specific Behaviors

(With ctrl-key or meta-key held down)

  • toggle selection state of the currently focused option

When the enter key is pressed along with the ctrl-key or meta-key. The currently focused option will be selected, or deselected if it was already selected when clicked

(With shift-key held down)

  • select a range of options from last selected to currently focused option

When the enter key is pressed along with the shift-key while a option has focus, All values in the range from the last selected option to the currently focused option will be selected.

If no option was previously selected, all options from the first option to the focused option will be selected.

  • deselect a range up to but not including the focused option

If the focused option has already been selected when the user clicks enter along with the shift-key, any selected options in the range between the last selected option and the focused option will be deselected. The focused option will remain selected in this case.

Back to TopBack to Keys Links

(Closed Control State)

  • no effect

(Opened Control State)

  • Move focus to first available option

Pressing the home key moves focus to the first option in the dropdown

Back to TopBack to Keys Links

(Closed Control State)

  • tab away from the control

Pressing enter when the the control has focus will open the dropdown.

(Closed Control State - when tag removal button focused)

  • move focus to the next avaliable tag removal button (only applicable to controls with the tags property set to true)

Pressing tab when a tag removal button has focus will move focus to the next available tag removal button. If the focused-tag removal button is the last one available, focus will move away from the control.

(Opened Control State)

In an open control, the tab key mimics the behavior of the enter key

Back to TopBack to Keys Links

(Closed Control State)

  • no effect

(Opened Control State)

  • navigation of options

Pressing the up-arrow key when the dropdown is open will move focus up to the next selectable option. If the focus reaches the first option, or the search input field in a searchable control, no action will occur.

(With alt-key held down)

  • close the drop down An alt-key press of the up-arrow will close the dropdown

Multiselect Specific Behaviors

(With shift-key held down)

  • select focused option and move focus up

If the up arrow is pressed with the shift-key in a multiselect or tags control, the focused option will be selected (or deselected if alreadySelected), and the focus will move up to the next available option.

Back to TopBack to Keys Links