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

blue-feedback

v0.9.1

Published

a light user feedback UI SDK

Downloads

5

Readme

blue-feedback

一个轻量的用户反馈UI插件。

  • 智能客服:跳转链接,用于打开客服会话。
  • 问题报错:提交各种系统异常(bug)的描述以及图片说明(可选)。
  • 意见反馈:提交用户意见(feature)以及图片说明(可选)。

Install

npm install blue-feedback --save

Demo

const feedback = new Feedback({
  option: [
    {
      type: 'modal',
      title: '问题报错',
      img: {
        label: '问题图片',
        count: 4,
        itemSize: 2,
      },
      text: {
        label: '问题描述',
        placeholder: '请输入问题描述以及正确描述',
        maxLength: 2000,
      },
    }
  ],
  async send (type, formData) {
    formData.append('type', type);
    await sendApi(formData); // 提交请求函数
  }
});

API

配置项

| 名称 | 类型 | 必选 | 说明 | | --------------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | helperUrl | string | 否 | 需要『智能客服』时,传入跳转 url | | toast | (e: Error) => string|false|void | 否 | 用于定制toast,返回false禁止默认toast;返回void使用默认toast行为;返回string修改toast信息 | | send | (type: 'bug'|'feature', data: FormData): Promise<any> | 否 | 提交函数 | | option | Array<Link|Modal> | 是 | 菜单配置项 |

  • send.args[0] type:触发提交的窗口,『问题报错』为 'bug',『意见反馈』为 'feature'
  • send.args[0] data:提交内容的FormData

| 名称 | 类型 | 说明 | | ------------------- | ------ | ------------------ | | adviceContent | string | 文本描述 | | files | File | 【可选】多图片上传 |

option

option.Link[type="link"]

  • title:必填,页签标题
  • url:必填,页签跳转地址

option.Modal[type="modal"]

  • title:必填,页签标题
  • value:默认值同title,对应 send.args[0]
  • img:可选,上传图片配置,为true时,应用默认值
    • 默认值:{label: '上传图片', count: 4, itemSize: 2}
    • label:表单文案
    • count:图片个数限制
    • itemSize:单个图片的大小限制(单位:MB)
  • text:默认值{label: '文字描述'},文本框配置
    • label:表单文案
    • placeholder:文本框提示文案
    • maxLength:最长字数限制

实例方法

  • el:插件的根DOM节点

实例方法

  • unmount:用于卸载插件

自定义异常

  • StateError:上传图片解析失败
  • SizeError:单个图片大小超过上限
  • FileTypeError:上传非图片类型
  • CountError:图片数量超过上限
  • OverflowError:文字描述超过长度限制
  • send函数产生的异常

History