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

v1.0.4

Published

select component for react-native

Downloads

14

Readme

Install

npm install react-native-selector  --save

仓库地址: https://github.com/yylgit/react-native-selector.git

API

Props |Type| Description ---|---|--- optionsData | PropTypes.array | select的数据源 onSelect | PropTypes.func | 选择事件,函数参数为选择的item selectedOption | PropTypes.object | 选中的item topStyle | PropTypes.any | select的样式 placeholder | PropTypes.string | select默认展示的文本,优先级大于选中的item

example

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 */
'use strict';

import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View
} from 'react-native';
import Select from '../index';
const sellStatusOptions = [{name: '全部', value: -1}, {name: '售卖中', value: 0}, {name: '停止售卖', value: 1}];
const stockOptions = [{name: '全部', value: -1}, {name: '单品库存告急', value: 0}, {name: '单品售罄', value: 1}];

class testProject extends Component {
  constructor(props) {
    super(props);
  
    this.state = {
      sellStatus: {name: '全部', value: -1},
      stockStatus: {name: '全部', value: -1},
      sellStatusPlaceHolder: '售卖状态',
      stockPlaceHolder: '库存状态'
    };
  }

  _selectSellStatus(item) {
      this.setState({
          sellStatus: item,
          sellStatusPlaceHolder: ''
      });
  }

  _selectStockStatus(item) {
      this.setState({
          stockStatus: item,
          stockPlaceHolder: ''
      });
  }


  _renderSelect() {
      let {
          sellStatus, stockStatus,
          sellStatusPlaceHolder,
          stockPlaceHolder
      } = this.state;
      return (
          <View style={styles.selectWrapper}>
              <Select
                  ref={view=>{this.sellStatusSelect = view }}
                  optionsData={sellStatusOptions}
                  selectedOption={sellStatus}
                  onSelect={this._selectSellStatus.bind(this)}
                  topStyle={{borderRightWidth: 0}}
                  placeholder={sellStatusPlaceHolder}
              />
              <Select
                  ref={view=>{this.stockSelect = view }}
                  optionsData={stockOptions}
                  selectedOption={stockStatus}
                  onSelect={this._selectStockStatus.bind(this)}
                  placeholder={stockPlaceHolder}
              />
          </View>
      );
  }

  _onStartShouldSetResponderCapture() {
      this.sellStatusSelect.close();
      this.stockSelect.close();
      return false;
  }

  render() {
      return (
        <View style={styles.container}>
          {this._renderSelect()}
          <View style={{flex: 1}} onStartShouldSetResponderCapture={this._onStartShouldSetResponderCapture.bind(this)}>
          </View>
        </View>
      );
    }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    paddingTop: 20,
    paddingLeft: 10,
    paddingRight: 10
  },
  selectWrapper: {
      flexDirection: 'row'
  }
});

AppRegistry.registerComponent('react-native-select-index', () => testProject);

Screenshots

image description image description