npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-easy-select

v0.0.4

Published

An ES6 react html select element, allowing entry of other values and with inline styles

Downloads

10

Readme

react-easy-select

A react component that provides a simple native HTML <select> element which can also allow the user to enter values not in the dropdown list and supports inline styles.

Demo

http://colinf.github.io/react-easy-select/

Installation

Install into your project using NPM in the usual way. For example:

npm install --save-dev react-easy-select

Example Usage

React.render(
    <EasySelect name='ex1'
    options={teams}
    value={teams[1]}
    onChange={handleChange}/>,
    document.getElementById('ex1')
);

function handleChange(change) {
    if (change.isNewValue) {
        FluxActions.newTeamAdded(change.target.value);
    }
}

Properties

options

An array of strings being the options to appear in the dropdown list of the select. Each elements of the array can be either of 2 formats:

  • a string e.g. "Celtic"
  • an object e.g. {value: "Celtic, text: "Celtic Football Club"}

The above options will result in the following <option> elements respectively:

<option value="Celtic">Celtic</option>
<option value="Celtic">Celtic Football Club</option>

If the data being entered using your select element if optional and so you wish to include a blank value in the dropdown list, there is no need to add this to your options array. See allowBlank below.

name

This string will be used for the name attribute of the HTML element that is rendered.

value

This string is the value to be selected in the dropdown list.

styles

An object containing styles to be used to supplement/override the default styles. Should use the React inline styles format. The supported keys in the object are shown below:

let styles = {
  easySelect: {
    // styles for the surrounding div of the easy-select component
  },
  select: {
    // styles for the <select> element
  },
  input: {
    // styles for the <input> element (entry of new values)
  },
  confirmButton: {
    // styles for the confirm button (to confirm new value)
  },
  cancelButton: {
    // styles for the cancel button (to cancel new value entry)
  }
};

allowBlank

A boolean. If true then a blank entry is added at the start of the dropdown list. This allows the value to be reset to be blank by the user where required.

allowOtherValues

A boolean. If true then an Other... entry is added to the end of the dropdown list. Selecting this display an input text field to enter a value not in the dropdown.

noButtons

A boolean. If set to true then no confirm/cancel buttons will be displayed when entering an Other... value. The user can confirm or cancel using the Enter or Escape key respectively.

onChange

A handler function to be called when the selected value is changed. The function will be passed a single object in the form:

{
    target: // the <select> or <input> DOMElement as appropriate
    isNewValue: // boolean, true if target.value is new
}