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

easy-react-mobile-picker

v1.0.5

Published

基于swiper的react picker组件

Downloads

6

Readme

类似IOS样式的Picker组件

安装

npm install easy-react-mobile-picker -S

依赖

swiper v4.3.5

使用时需要在html中引入<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.3/css/swiper.min.css">

代码仓库

easy-react-mobile-picker

使用

import Picker from "easy-react-mobile-picker";

<Picker visible={visible} cascader slides={areaData} confirm={this.valChange} cancel={e => this.togglePicker(false)} />
<Picker visible={!visible} slides={date} confirm={this.valChange} cancel={e => this.togglePicker(true)} />

Props

| Property name | Type | Default | Description | ---|:--:|:--:|--- | visible | Boolean | false | 组件是否可见 | | cascader | Boolean | false | 是否启用多级联动 | | slides | Array | N/A | Picker组件值数组 | | confirm | Function | N/A | 确认按钮点击事件 confirm={val => console.log("当前picker的值:", val)} | | cancel | Function | N/A | 取消按钮点击事件(需要把visible指定的变量修改为false) cancel={e => this.setState({ visible: false })} | | title | String/ReactComponent | N/A | Picker组件标题(支持react组件) title={<span style={{color: "#004DBB"}}>无联动时间选择} or title={"标题啊"} | | defaultValue | Array | N/A | 默认值 默认值为数组,分别对应第一列到最后一列需要默认选中的值,默认值对应slide中的vlaue字段的值 defaultValue={[0, 2, 1]} | | className | String | N/A | 自定义class样式 |

Props附加描述

/* 数据结构 */
let slide = {
    "name": "name", // picker组件展示文本
    "value": "value", // picker组件实际值
};

let slides = [
    [slide, ...],
    [slide, ...],
    ...
];
/* End 数据结构 */


/* 多级联动数据结构 */
let slide = {
    "name": "name", // picker组件展示文本
    "value": "value", // picker组件实际值
};

let slides = {"name": "name", "value": "value", "children": [slide, ...]};
/* End 多级联动数据结构 */

demo

/example/main.js

额外

省市区级联数据可以配套使用 picker-china-area-data

import { areaData } from "picker-china-area-data";

<Picker visible={true} cascader slides={areaData} confirm={this.valChange} cancel={e => this.togglePicker(false)} />