You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-native-dropdown-autocomplete

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-dropdown-autocomplete

[![npm (scoped)](https://img.shields.io/badge/npm-v1.0.0-blue.svg)](https://www.npmjs.com/package/react-native-dropdown-autocomplete)

1.0.4
Source
npmnpm
Version published
Maintainers
1
Created
Source

react-native-dropdown-autocomplete

npm (scoped)

Based on https://bit.ly/2AFjUsj, the most significant advantage of this package among all others is that you can have multiple autocomplete's on your page after following instructions below. Works on Android and IOS.

Autocomplete demo Autocomplete demo with pre-filled inputs

Usage

Install the package
npm i react-native-dropdown-autocomplete
Wrap the page you want to have autocomplete on with withKeyboardAwareScrollView:
import React, {Component} from "react";
import {StyleSheet, View, SafeAreaView} from "react-native";
import {Ionicons} from "@expo/vector-icons";
import shortid from "shortid";
import {Autocomplete, withKeyboardAwareScrollView} from "react-native-dropdown-autocomplete";

class HomeScreen extends Component {
  handleSelectItem(item, index) {
    const {onDropdownClose} = this.props;
    onDropdownClose();
    console.log(item);
  }

  render() {
    const autocompletes = [...Array(10).keys()];

    const apiUrl = "https://5b927fd14c818e001456e967.mockapi.io/branches";

    const {scrollToInput, onDropdownClose, onDropdownShow} = this.props;

    return (
      <View style={styles.autocompletesContainer}>
        <SafeAreaView>
          {autocompletes.map(() => (
            <Autocomplete
              key={shortid.generate()}
              style={styles.input}
              scrollToInput={ev => scrollToInput(ev)}
              handleSelectItem={(item, id) => this.handleSelectItem(item, id)}
              onDropdownClose={() => onDropdownClose()}
              onDropdownShow={() => onDropdownShow()}
              renderIcon={() => (
                <Ionicons name="ios-add-circle-outline" size={20} color="#c7c6c1" style={styles.plus} />
              )}
              fetchDataUrl={apiUrl}
              minimumCharactersCount={2}
              highlightText
              valueExtractor={item => item.name}
              rightContent
              rightTextExtractor={item => item.properties}
            />
          ))}
        </SafeAreaView>
      </View>
    );
  }
}
const styles = StyleSheet.create({
  autocompletesContainer: {
    paddingTop: 0,
    zIndex: 1,
    width: "100%",
    paddingHorizontal: 8,
  },
  input: {maxHeight: 40},
  inputContainer: {
    display: "flex",
    flexShrink: 0,
    flexGrow: 0,
    flexDirection: "row",
    flexWrap: "wrap",
    alignItems: "center",
    borderBottomWidth: 1,
    borderColor: "#c7c6c1",
    paddingVertical: 13,
    paddingLeft: 12,
    paddingRight: "5%",
    width: "100%",
    justifyContent: "flex-start",
  },
  container: {
    flex: 1,
    backgroundColor: "#ffffff",
  },
  plus: {
    position: "absolute",
    left: 15,
    top: 10,
  },
});

export default withKeyboardAwareScrollView(HomeScreen);

Properties

namedescriptiontypedefault
autoCorrectDisable auto-correctBooleantrue
highlightTextHighlight search resultsBooleantrue
rightContentRender additional text to the right of the itemBooleanfalse
minimumCharactersCountPerform API request after certain number of characters enteredNumber2
placeholderAutocomplete input placeholder textStringAdd Item
placeholderColorInput placeholder colorString#acada9
spinnerSizeSize of activity indicatorStringsmall
spinnerColorActivity indicator colorString#129a8d
listHeaderText at the beginning of suggestionsString-
fetchDataUrlData source urlString-
noDataTextText to display when no resultsStringNo Results
inputContainerStyleStyles for autocomplete containerObject-
inputStyleStyles for autocomplete inputObject-
spinnerStyleStyles for activity indicatorObject-
noDataTextStyleStyles for empty results textObject-
separatorStyleStyles for item dividersObject-
listFooterStyleStyles for list footerObject-
listHeaderStyleStyles for list headerObject-
scrollToInputFocus on selected fieldFunction-
handleSelectItemSelection callback (agrs: item, index)Function-
onDropdownShowShow keyboardFunction-
onDropdownCloseHide keyboardFunction-
renderIconRender icon near inputFunction-
valueExtractorExtract value from item (args: item, index)Function({ value }) => value
rightTextExtractorExtract value from item (args: item, index)Function({ value }) => value

Authors:

Maksym Plotnikov

Maksym Kordiyak

FAQs

Package last updated on 02 Dec 2018

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