Skip to content

Latest commit

 

History

History

ItemSelector

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

ItemSelector

A scrollable list of text items that fires events on selection. Similar to, but more customizable than, an HTML <select> element.

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import { ItemSelector } from '@panorama/toolkit';

let items = [
  {
    "id": 1,
    "name": "Albemarle & Cheasapeake"
  },
  {
    "id": 2,
    "name": "Alexandria (and Georgetown) Canal"
  },
  {
    "id": 3,
    "name": "Bald Eagle and Spring Creek Navigation",
    "className": "deemphasize"
  }
];

let itemSelectorConfig = {
  title: 'Select an item:',
  items: items,
  data: items[1],
  onItemSelected: (value, index) => {
    // @panorama/toolkit components strive to be stateless.
    // Therefore, consumers of ItemSelector are expected to
    // pass selection state back into the component.
    this.setState({
      selectedItem: value
    });
  }
};

ReactDOM.render(<ItemSelector {...itemSelectorConfig}/>, document.body);