Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-multiple-select

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-multiple-select

Simple multi-select component for react-native

  • 0.2.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.7K
decreased by-53.51%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-multiple-select

npm Downloads Licence

Simple multi-select component for react-native (Select2 for react-native).

double animate search double single

Installation

$ npm install react-native-multiple-select --save

or use yarn

$ yarn add react-native-multiple-select

Usage

Note: Ensure to add and configure react-native-vector-icons to your project before using this package.

The snippet below shows how the component can be used

// import component
import MultiSelect from 'react-native-multiple-select';

const items = [{
  id: '92iijs7yta',
  name: 'Ondo',
}, {
  id: 'a0s0a8ssbsd',
  name: 'Ogun',
}, {
  id: '16hbajsabsd',
  name: 'Calabar',
}, {
  id: 'nahs75a5sg',
  name: 'Lagos',
}, {
  id: '667atsas',
  name: 'Maiduguri',
}, {
  id: 'hsyasajs',
  name: 'Anambra',
}, {
  id: 'djsjudksjd',
  name: 'Benue',
}, {
  id: 'sdhyaysdj',
  name: 'Kaduna',
}, {
  id: 'suudydjsjd',
  name: 'Abuja',
}];
 
let selectedItem = selectedItems => {
    // do something with selectedItems
    console.log(selectedItems);
};

<MultiSelect
  animate
  items={items}
  uniqueKey="id"
  selectedItemsChange={selectedItem}
  selectedItems={[]}
  selectText="Pick Items"
  searchInputPlaceholderText="Search Items..."
  altFontFamily="ProximaNova-Light"
  tagRemoveIconColor="#CCC"
  tagBorderColor="#CCC"
  tagTextColor="#CCC"
  selectedItemTextColor="#CCC"
  selectedItemIconColor="#CCC"
  itemTextColor="#000"
  searchInputStyle={{ color: '#CCC' }}
  submitButtonColor="#CCC"
  submitButtonText="Submit"
/>
    

The component takes 3 compulsory props - items, uniqueKey and selectedItemsChange. Other props are optional. The table below explains more.

Props

PropRequiredPurpose
itemsYes(Array) List of items to display in the multi-select component. JavaScript Array of objects. Each object must contain a name and unique identifier (Check sample above)
uniqueKeyYes(String) Unique identifier that is part of each item's properties. Used internally as means of identifying each item (Check sample below)
singleNo(Boolean) Toggles select component between single option and multi option
animateNo(Boolean) Adds animation to select dropdown
selectedItemsChangeYes(Function) JavaScript function passed in as an argument. The function is to be defined with an argument (selectedItems). Triggered when Submit button is clicked (for multi select) or item is clicked (for single select). (Check sample above)
selectedItemsNo(Array) List of selected items. JavaScript Array of objects that is part of the items (check above), that cna be instantiated with the component
selectTextNo(String) Text displayed in main component
searchInputPlaceholderTextNo(String) Placeholder text displayed in multi-select filter input
fontFamilyNo(String) Custom font family to be used in component (affects all text except searchInputPlaceholderText described above)
altFontFamilyNo(String) Font family for searchInputPlaceholderText
tagRemoveIconColorNo(String) Color to be used for the remove icon in selected items list
tagBorderColorNo(String) Border color for each selected item
tagTextColorNo(String) Text color for selected items list
selectedItemFontFamilyNo(String) Font family for each selected item in multi-select drop-down
selectedItemTextColorNo(String) Text color for each selected item in multi-select drop-down
selectedItemIconColorNo(String) Color for selected check icon for each selected item in multi-select drop-down
itemFontFamilyNo(String) Font family for each non-selected item in multi-select drop-down
itemTextColorNo(String) Text color for each non-selected item in multi-select drop-down
searchInputStyleNo(Object) Style object for multi-select input element
submitButtonColorNo(String) Background color for submit button
submitButtonTextNo(String) Text displayed on submit button

Note

  • When using the single prop, selectedItems should still be passed in as an array of selected object. Also, when an item is selected in the single mode, the selected item is returned as an array of object.

  • The items props must be passed as an array of objects with a compulsory name key present in each object as the name key is used to display the items in the options component.

Removing all selected items

To use, add ref to MultiSelect component in parent component, then call method against reference. i.e.

<MultiSelect
  ref={c => this._multiSelect = c}
  ...
/>

clearSelectedCategories = () => {
   this._multiSelect.removeAllItems();
};
    

Contributing

Contributions are welcome and will be fully credited.

Contributions are accepted via Pull Requests on Github.

Pull Requests

  • Document any change in behaviour - Make sure the README.md and any other relevant documentation are kept up-to-date.

  • Consider our release cycle - We try to follow SemVer v2.0.0. Randomly breaking public APIs is not an option.

  • Create feature branches - Don't ask us to pull from your master branch.

  • One pull request per feature - If you want to do more than one thing, send multiple pull requests.

  • Send coherent history - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting.

Issues

Check issues for current issues.

Author

Mustapha Babatunde

License

The MIT License (MIT). Please see LICENSE for more information.

Keywords

FAQs

Package last updated on 24 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc