Socket
Socket
Sign inDemoInstall

react-native-sectioned-multi-select

Package Overview
Dependencies
509
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-sectioned-multi-select

a multi (or single) select component with support for sub categories, search, chips.


Version published
Weekly downloads
4.9K
increased by13.02%
Maintainers
1
Install size
2.83 MB
Created
Weekly downloads
 

Changelog

Source

[0.1.1] - 2017-11-22

Added

  • Props for Modal animation and orientation

Readme

Source

react-native-sectioned-multi-select

A multi (or single) select component with support for sub categories, search, chips. It's intended for long-ish lists, as it opens in a Modal (I might make this optional in the future).

This is based on https://github.com/toystars/react-native-multiple-select. The problems I had were that I needed it to be in a modal, because of nested ScrollViews not working on Android, and I needed to display categories with sub-categories.

preview 1 preview 2 preview 3 preview 4

Usage

NPM Version

npm i -S react-native-sectioned-multi-select

react-native-vector-icons package is required, set it up if you haven't already.

Required props:
items | array
uniqueKey | string
onSelectedItemsChange | function

import React, { Component } from 'react';
import {
  View
} from 'react-native';
import SectionedMultiSelect from 'react-native-sectioned-multi-select';

const items = [
  {  
    name: "Fruits",
    id: 0,
    children: [{
        name: "Apple",
        id: 10,
      },{
        name: "Strawberry",
        id: 17,
      },{
        name: "Pineapple",
        id: 13,
      },{
        name: "Banana",
        id: 14,
      },{
        name: "Watermelon",
        id: 15,
      },{
        name: "Kiwi fruit",
        id: 16,
      }]
  },
  {
    name: "Gems",
    id: 1,
    children: [{
        name: "Quartz",
        id: 20,
      },{
        name: "Zircon",
        id: 21,
      },{
        name: "Sapphire",
        id: 22,
      },{
        name: "Topaz",
        id: 23,
      }]
  },
  {
    name: "Plants",
    id: 2,
    children: [{
        name: "Mother In Law\'s Tongue",
        id: 30,
      },{
        name: "Yucca",
        id: 31,
      },{
        name: "Monsteria",
        id: 32,
      },{
        name: "Palm",
        id: 33,
      }]
  },
]

export default class App extends Component {
  constructor(){
    super()
    this.state = {
      selectedItems: [],
    }
  }
  onSelectedItemsChange = (selectedItems) => {
    this.setState({ selectedItems });
  }

  render() {
    return (
      <View>
      
        <SectionedMultiSelect
          items={items} 
          uniqueKey='id'
          subKey='children'
          selectText='Choose some things...'
          showDropDowns={true}
          readOnlyHeadings={true}
          onSelectedItemsChange={this.onSelectedItemsChange}
          selectedItems={this.state.selectedItems}
        />

      </View>
    );
  }
}

You can programatically remove all items by setting up a ref to the component:

<SectionedMultiSelect
    ...
    ref={SectionedMultiSelect => this.SectionedMultiSelect = SectionedMultiSelect}
/>

and then use the _removeAllItems function:

onPress={() => this.SectionedMultiSelect._removeAllItems()}

Items

Your items should have a uniqueKey and a name. Any child items of that item should be in subKey, and they will have uniqueKey and name properties. As you can see from the example above, my items all have a unique id property and the child items is an array within the subKey property.

Sub categories are optional, there's no need to have subKey items if you don't want to.

Props

Props, there are lots.

PropDefaulttypeDesc
singlefalseboolallow only one selection
selectedItems[]arraythe selected items
uniqueKey'id'stringthe unique key for your items
subKey'sub'stringthe array of sub items within items
onSelectedItemsChange() => {}functionfunction that runs when an item is toggled
showDropDownstrueboolwhether to allow dropdown toggles to show/hide the sub items (if false, sub items are always shown)
showChipstrueboolwhether to show the chips of the selected items
readOnlyHeadingsfalseboolwhether the parent items can be pressed or not. If true and showDropdowns is true, pressing the parent item will toggle the dropdown
selectText'Select'stringthe text for the select component
confirmText'Confirm'stringthe text for the confirm button
searchPlaceholderText'Search categories...'stringthe placeholder text for the search input
removeAllText'Remove all'stringText for optional remove all button
showRemoveAllfalseboolWhether to show a Remove all chip at the beginning of the selected items chips
noResultsText'Sorry, no results'stringthe text to display when the search result is empty
modalSupportedOrientations['landscape', 'portrait']arrayThe suppoertedOirentations of the Modal
modalAnimationType'fade'stringThe animation type of the Modal (fade or slide)
styles{}objectStyles object - see styles section
colors{...}objectcolors object - see colors section
itemFontFamily'condensed'string|objectfont family for the parent items. Can be a regular style object or a string that coresponds to my own platform specific mappings (see Fonts section).
subItemFontFamily'light'string|objectfont family for the sub items. Can be a regular style object or a string that coresponds to my own platform specific mappings (see Fonts section).
searchTextFontFamily'black'string|objectfont family for the search input. Can be a regular style object or a string that coresponds to my own platform specific mappings (see Fonts section).
confirmFontFamily'bold'string|objectfont family for the confirm button. Can be a regular style object or a string that coresponds to my own platform specific mappings (see Fonts section).

Colors

You can pass a colors object to theme it how you like.

These are the available options and their defaults:

primary:'#3f51b5',
success: '#4caf50',
text:'#2e2e2e',
subText: '#848787',
toggleTextColor: '#ffffff',
selectToggleTextColor: '#ffffff',
searchPlaceholderTextColor: '#999',
searchSelectionColor: 'rgba(0,0,0,0.2)',
chipColor: '#848787',

Primary is used for the dropdown toggle icon, the no results text and the background of the confirm button.
Success is used for the selected checkmark icon.
Text is the parent item text.
subText is the sub item text.

Styles

You can pass a styles object to style it how you like.

These are the styles you can change:
container
listContainer
selectToggle
selectToggleText
item
subItem
itemText
subItemText
searchBar
center
separator
chipContainer
chipText
chipIcon
searchTextInput
scrollView
button
confirmText

Fonts

You can customize fonts with these props:
itemFontFamily
subItemFontFamily
searchTextFontFamily
confirmFontFamily

you can pass in a string of regular, condensed, light, bold, black or serif.

fontiosandroid
regularAvenir-Heavysans-serif
condensedAvenirNextCondensed-DemiBoldsans-serif-condensed
lightAvenir-Lightsans-serif-light
boldAvenir-Blacksans-serif (700)
blackAvenir-Blacksans-serif (900)
serifGeorgiaserif

If you prefer to use your own fonts, you can pass in an object instead:

searchTextFontFamily={{fontFamily:'sans-serif-light'}}

Keywords

FAQs

Last updated on 24 Nov 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc