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-native-picker-modal-view

v1.3.2

Published

React Native Picker Modal View

Downloads

3,699

Readme

Maintainability Test Coverage npm version npm downloads per month dependencies Status dev-dependencies Status Build Status

An alternative to Picker and PickerIOS components with an unified API and consistent look & feel on both plaforms. It's fully configurable and includes built-in support for text search and alphabetical index. Ideal for longer lists not suitable for "wheel-pickers".

Getting started

$ npm install react-native-picker-modal-view --save

or

$ yarn add react-native-picker-modal-view

Live Demo with Expo

Explore with Expo Snack

Example

import * as React from 'react';
import { Button, SafeAreaView, Text, View } from 'react-native';

import PickerModal from 'react-native-picker-modal-view';

import data from '../../../top20.json';

export default class Main extends React.Component<{}, { selectedItem: {} }> {

	constructor(props: {}) {
		super(props);

		this.state = {
			selectedItem: {}
		};
	}

	public render(): JSX.Element {
		const { selectedItem } = this.state;

		return (
			<SafeAreaView style={{ flex: 1, justifyContent: 'center', marginHorizontal: 20 }}>
				<PickerModal
					renderSelectView={(disabled, selected, showModal) =>
						<Button disabled={disabled} title={'Show me!'} onPress={showModal} />
					}
					onSelected={this.onSelected.bind(this)}
					onClosed={this.onClosed.bind(this)}
					onBackButtonPressed={this.onBackButtonPressed.bind(this)}
					items={data}
					sortingLanguage={'tr'}
					showToTopButton={true}
					selected={selectedItem}
					showAlphabeticalIndex={true}
					autoGenerateAlphabeticalIndex={true}
					selectPlaceholderText={'Choose one...'}
					onEndReached={() => console.log('list ended...')}
					searchPlaceholderText={'Search...'}
					requireSelection={false}
					autoSort={false}
				/>
				<View style={{ padding: 10, alignItems: 'center', backgroundColor: '#ddd' }}>
					<Text>Chosen: </Text>
					<Text>{JSON.stringify(selectedItem)}</Text>
				</View>
			</SafeAreaView>
		);
	}

	private onClosed(): void {
		console.log('close key pressed');
	}

	private onSelected(selected: any): void {
		this.setState({ selectedItem: selected });

		return selected;
	}

	private onBackButtonPressed(): void {
		console.log('back key pressed');
	}
}

Options

| Properties | Type | Description | Default | | --------------------------------- | ---------- | ------------------------------------------------------ | ------------------------------------------- | | modalAnimationType | string | The RN Modal show/hide animation type | "slide" | | showAlphabeticalIndex | boolean | Hides alphabetical index | "true" | | onClosed | Function | Fired when the modal is closed | | | onBackButtonPressed | Function | Fired when the back key is pressed | | | onSelected *required | Function | Returns selected item object | "{Id, Name, Value, [key: string]: any}" | | items *required | array | Array of list items | "[{Id, Name, Value, [key: string]: any}]" | | renderSelectView | Element | Render Select Component | <SelectBoxComponent (built-in)> | | renderListItem | Element | Render List item | <ListItemComponent (built-in)/> | | alphabeticalIndexChars | array | Chracters array for the alphabetical index | <Turkish alphabet chracters> | | searchInputTextColor | string | Search input placeholder text color | "#252525" | | keyExtractor | Function | Flatlist defined {key} function | <Predefined return map index> | | autoGenerateAlphabeticalIndex | boolean | Auto-generates alphabetical index from list items data | "false" | | sortingLanguage | string | Country ISO (Alpha 2) Code for localeCompare | "tr" | | showToTopButton | boolean | Button for scroll to offset 0 | "true" | | onEndReached | Function | Fired when the list reaches the end | | | selectPlaceholderText | string | Select box placeholder text | "Choose one..." | | searchPlaceholderText | string | Search input placeholder text | "Search..." | | selected | object | Default selected item | | | autoSort | boolean | Auto-sort data list | "false" | | disabled | boolean | Disable Select box | | | requireSelection | boolean | Require at least one list item is selected | "false" | | backButtonDisabled | boolean | Hide to back button | "false" | | renderSearch | Function | Render custom search input | `` |

Core Props of React Native

| Properties | Type | Description | Default | | -------------------- | -------- | ---------------------------- | ------- | | ModalProps | object | React Native Modal Props | | | FlatListProps | object | React Native Flatlist Props | | | SearchInputProps | object | React Native TextInput Props | |

Running example project

  1. You should have React Expo CLI to be installed in order to run example. Follow this instructions if you need to install Expo CLI.
  1. Install the dependencies:
npm install
  1. Once the installation is done, you can run the following command:

npm

npm start

You can also use:

expo

expo start

yarn

expo start

Notes

  • Auto-alphabetical index supported for Turkish and English languages.

Releases

  • 1.3.2 - Added renderSearch feature #54 Thanks to @murilo-campaner
  • 1.3.1 - Fixed #44 Thanks to @fnando
  • 1.3.0 - No back button support #42 Thanks to @ChildishForces
  • 1.2.8 - Fixed #37
  • 1.2.6 - Deprecated lifecycle methods fix
  • 1.2.5 - Flatlist initialNumToRender property hotfix
  • 1.2.3 - Refactor and code coverage
  • 1.2.2 - Fixed #5
  • 1.2.0 - Added renderSelectView and renderListItem properties.
  • 1.0.0 - Initial release