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

@ams-team/block-chart

v0.5.0

Published

AMS图表

Downloads

5

Readme

blovk-chart AMS图表

  • 定制图表block基于echart插件实现
  • 与其他block区别在于新增options配置项,options配置规则同echart配置对应
  • 其他机制实现同ams基础block
  • 区别:
    • 对options中的数据可使用'data.xxx'字符标识与block.data数据动态绑定
    • 数据变化只需关注block.data,即可实现图表更新

安装

@ams-team/block-chart

依赖开源 echarts

npm i --save echarts
npm i --save @ams-team/block-chart

使用

// 引入图表区块
import chart from '@ams-team/block-chart';
// 可以单独引入唯品会定制主题使用 v0.2.0+
import '@ams-team/block-chart/lib/theme/vipshop.js';
Vue.use(chart);

// ams配置
const amsConfig = {
    type: 'chart',
    options: {
        theme: 'vipshop', // 配置使用唯品会定制主题,默认使用的主题是echart官方的macarons
    }
}

CDN

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js"></script>
<script src="http://h5rsc.vipstatic.com/ams/block/[email protected]"></script>

结构

export interface Data { [field: string]: any }
export interface ChartBlock {
    type: 'chart',
    resource: string,
    style?: Data,
    data?: Data,
    options: Data,
    events?: Data,
    actions?: { [field: string]: () => any },
    render?: boolean | string
}

参数列表

options配置 | 参数 | 类型 | 是否必填 | 说明 | -- | -- | -- | -- | type | string | 是 | block类型,固定值为chart | options | object | 是 | 图表配置,详见 options | resource | string | 否 | 指定resource | style | object | 否 | block添加样式 | data | object | 否 | block数据,详见 data | events | object | 否 | 事件定义 | actions | object | 否 | 自定义actions,可被events中使用 | render | boolean | string | 指定渲染方式

例子

{
  "type": "chart",
  "style": {
    "width": "100%",
    "height": "500px"
  },
  "data": {
    "title": "折线图表",
    "legend": ["邮件营销", "联盟广告"],
    "xAxis": ["周二", "周二", "周二", "周四", "周五", "周六", "周日"],
    "series1": [120, 132, 101, 134, 90, 230, 210]
  },
  "options": {
    "BASE": "LINE",
    "series": [{
      "name": "邮件营销",
      "stack": "总量",
      "data": "data.series1"
    }, {
      "name": "联盟广告",
      "stack": "总量",
      "data": [220, 182, 191, 234, 290, 330, 310]
    }]
  }
}