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

nuke-qn-action-sheet

v2.0.0

Published

动作菜单

Downloads

6

Readme

QNActionSheet

  • category: UI
  • chinese: 弹出菜单
  • type: UI组件

何时使用

千牛定制 ActionSheet 。ActionSheet 定义一组动作菜单,使用者在菜单中选择一项,或取消不做操作。

API

ActionSheet.show(params,onNotify,afterOpen,onFail)

ActionSheet 组件采用静态方法形式调用。

ActionSheet.show(params,onNotify,afterOpen,onFail)

params

params 对象包含下面几个基本属性

| 属性 | 说明 | 类型 | 默认值 | | ---------------------- | ----------------------------------- | ------ | ------ | | title | 标题 | string | 无 | | options | 菜单数组 | array | 无 | | cancelButtonIndex | cancelButton在options中的index | num | 无 | | destructiveButtonIndex | destructiveButton在options中的index | num | 无 |

  • destructiveButton

    destructiveButton 是指在一系列菜单项中唯一的一个具有危险性、不可恢复性操作的按钮,按照ios的设计规范,这个按钮在 ActionSheet 中最多只能有1个,并且排列在列表倒数第二项。

    {
        options: ['拨打电话','发送短信','删除订单','取消'],
        cancelButtonIndex: 3,
        destructiveButtonIndex: 2,
        title:'ActionSheet Title'
    }

建议把 destructiveButtonIndex 与 cancelButtonIndex 分别放在数组倒数第二项和倒数第一项。

  • cancelButton

cancelButton 在 iOS 和 Android 2 端展现方式不同。

在 iOS 端作为取消按钮,排列在列表最后一项,在安卓端不展示。

onNotify 回调

点击菜单项或取消按钮的回调,具有以下几种类型

  • { type : "cancel"}

  • { type : "button",buttonIndex : 1/2/3 }

  • { type : "destructive"}

afterOpen 成功渲染菜单的回调

onFail 渲染菜单失败的回调