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-select3

v4.0.1

Published

<Select> component made with ReactJS

Downloads

1,622

Readme

REACT-SELECT3

npm Build Status

This is <select> written with ReactJS.

Motivation:

  • Easy styling
  • Easy control
  • Easy fetching

Demo

API reference

Select

Basic usage:

import Select from 'react-select3'
import 'react-select3/dist/styles.css'

const selectOptions = [
    { id: 1, text: 'Uno' },
    { id: 2, text: 'Dos' },
    { id: 3, text: 'Tres' },
    { id: 4, text: 'Cuatro' },
]

<Select options={ selectOptions } placeholder={'Select option'}/>

Props:

| PropName | PropType | Description | | ------------------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------- | | allowClear | <bool> | whether to allow user to clear selected option // Default: false | | cssClassNamePrefix | <string> | you can provide custom prefix for Selects' classNames | | autoFocus | <bool> | whether to focus Select on mount | | closeOnClickOutside | <bool> | whether to close dropdown on click outside Select component // Default: true | | defaultValue | <string>/<number> | provide id of the default selected option | | disabled | <bool> | disable selecting and reseting | | error | <bool>/<string> | you can provide boolean to indicate Select's error or string to show error message | | layout | <object> | props related to Select component view | | layout.width | <string> | width for Select container // Default: '245px' | | layout.dropdownVerticalPosition | 'above'/ 'below' | whether to show dropdown above or below Select container // Default: 'below' | | layout.emptyOptionsLabel | <string> | label that shows up when there is no options left | | name | <string> | Selects name attribute | | optionRenderer | <function> | function that transforms single option output, you can provide it if you want to change layout of options e.g.: | | |

const optionRenderer = option => (
  <strong className="my-custom-option">
    <i className={`fa fa-${icons[option.id]}`} />
    {option.text}
  </strong>
);

| PropName | PropType | Description | | -------------- | ------------ | ------------------------------------------------------------------------------------------------------ | | options | <array> | array with options object. they must have next format: { id: <number|string>, text: <number|string>} | | onSelect | <function> | callback on options select event. event object that passed into callback has next format: |

{
  type: 'select',
  isClear: <bool>, // indicates that value being cleared by onClearSelection
  target: {
    name: <string>, // Selects' name attribute
    option: <object>, // selected option object
    value: <string>, // selected option id
  }
}

| PropName | PropType | Description | | --------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | | placeholder | <string> | shows up when there is no selected option | | search | <object> | props related to SearchInput, which used to filter options list, you can override its behaviour by providing onSearchTermChange prop. | | search.minimumResults | <number> | minimum number of results before show SearchInput | | search.show | <bool> | provide if you want to always show SearchInput | | search.status | <string> | provide status message, shows up only when there are no available options | | onSearchTermChange | <function> | callback for SearchInput changes, takes input event as agrument | | value | <number>/<string> | you can provide option id to control selection |

Selects ref interface methods

Select component has number of handy public methods that you can use by saving its ref, e.g.:

class MyMajesticComponent extends React.Component {
  _selectRef = node => {
    this.select = node;
  };

  _resetSelect = () => {
    this.select.clear();
  };

  render = () => {
    return (
      <div>
        <Select ref={this._selectRef} />
        <button onClick={this._resetSelect}>Reset</button>
      </div>
    );
  };
}

Methods:

| Method name | Method type | Description | | ------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | clear | | use it to clear selection programmaticaly | | options | <setter> | sets options for Select component. Select.options = [/* new options */]. This setter is used by FetchSelect to set fetched options to Select component without rerendering it. | | options | <getter> | returns array of actual options from Selects' state Select.options // options array | | value | | returns id of currently selected option Select.value // selected option's id |

FetchSelect

This component is a wrapper for Select component
that provides interface for fetching options from server by "termQuery"
on SearchInput change event, or once at component mount.

Usage:

import { FetchSelect as Select } from 'react-select3'
import 'react-select3/dist/styles.css'

// function that formats fetched objects into options
const responseDataFormatter = user => ({
    // required keys
    id: user._id,
    text: `${user.first_name} ${user.last_name}`,

    // Additional info that you can display in the options layout with "optionRenderer" function
    phone: user.phone,
    email: user.email,
})

// By default FetchSelect uses its own client that based on fetch,  
// also you can provide your custom 'ajaxClient'  
// e.g. endpoint: '/api/users/?filter=John&emailVerified=0'  
const ajaxClient = (endpoint) => fetch(endpoint).then(data => data.users)

<Select fetch={{
            endpoint: '/api/users',
            termQuery: 'filter',
            responseDataFormatter,
            ajaxClient,
            params: { emailVerified: 0 }
        }}
        placeholder='Select user by typing his name'/>

All ref interface methods and props except of
search.show, search.status and search.minimumResults(if fetch.once = false)
are being proxied onto Select component.

There are a number of FetchSelect specific props:

| PropName | PropType | Description | | ---------------------- | ------------ | -------------------------------------------------------------------------------------------------------------------------------------------------- | | fetch | <object> | props that related to fetching options from server | | fetch.ajaxClient | <function> | custom client to fetch options, it must return <Promise> | | fetch.endpoint | <string> | path to resource to fetch | | fetch.minLength | <number> | minimum characters length of SearchInput value to start fetching // Default: 3 | | fetch.once | <bool> | if true, options fetched once on FetchSelect mount, in this case SearchInput change not triggers fetch again but filters options that are in state | | fetch.params | <object> | additional params that being merged with "termQuery" into endpoint e.g. |

SearchInput.value = 'John';

fetch = {
  endpoint: '/api/users',
  termQuery: 'filter',
  params: {
    emailVerified: 0,
  },
};

// fetch path: '/api/users?filter=John&emailVerified=0'

| PropName | PropType | Description | | --------------------------------- | ------------ | ------------------------------------------------------------------------------------- | | fetch.requestDelay | <number> | delay between request on SearchInput change // Default: 300 | | fetch.responseDataFormatter | <function> | function that formats fetched objects into options. See example above | | fetch.termQuery | <string> | key for dynamic query param that takes SearchInput value on change. See example above | | language | <object> | pass language object to override default status labels: |

{
  isEmpty: 'No options.',
  isPending: '...',
  minLength: 'Minimum ${minLength} to search...',
  responseEmpty: 'Cannot find anything.',
  serverError: 'Server error.',
}

Styling

You can style Select component in a several ways:

  • Use default Select component styles by importing them from dist folder(TODO: skins):
    import 'react-select3/dist/styles.css'
  • Use scss source from react-select3/src/styles/..., override specific variables and mixins
    and compile into custom style
  • Write your own styles from scratch, you can even provide custom cssClassNamePrefix by passing prop
    into Select component and change variable in the scss source code

License

react-select3 Copyright 2017 Rusinov Anton

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Changelog

Changelog

Credits

⭐️ Thanks for help to:

  • Artem Berdyshev