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

v1.4.9

Published

AMS日历看板

Downloads

4

Readme

block-calendar AMS日历看板

预览图

block-calendar

安装

npm i --save @ams-team/block-calendar

options配置

参数 | 类型 | 是否必填 | 说明 --|---|---|---|--- type | string | 是 | block类型,固定值为calendar resource | string | 否 | 指定resource data | object | 是 | content为日历内容,searchs为搜索条件,year、month为看板展示的year年month+1月的日历 options | object | 是 | title为标题;draggable表示是否支持数据拖拽 events | object | 否 | 事件定义 actions | object | 否 | 自定义actions,可被events中使用

例子

{
  "type": "calendar",
  "ctx": "view",
  "resource": {
    "fields": {
      "date": {
        "type": "date",
        "props": {
          "value-format": "yyyy-MM",
          "type": "month"
        }
      }
    }
  },
  "data": {
    "searchs": {
      "date": "2019-03"
    },
    "year": 2019,
    "month": 2,
    "content": {}
  },
  "options": {
    "title": "日历看板",
    "draggable": true
  },
  "searchs": {
    "date": true
  },
  "on": {
    "end": function end(obj) {
      console.log('from:', obj.from.dataset.date, obj.from.dataset.time, obj.oldIndex);
      console.log('to:', obj.to.dataset.date, obj.to.dataset.time, obj.newIndex);
    },
    "cell-click": function cellClick(index, id, date, time) {
      console.log('click', index, id, date, time);
    }
  },
  "events": {
    "init": "@fieldChange",
    "getList": "@getList"
  },
  "actions": {
    "fieldChange": function fieldChange(_ref) {
      var name = _ref.name,
        value = _ref.value;
      var data = this.block.data;

      if (name) {
        data.searchs[name] = value;
      }

      if (name === 'date') {
        // 切换时间,看板展示数据相应变化
        data.year = value.split('-')[0];
        data.month = value.split('-')[1] - 1;
      }

      var args = {};
      this.callAction(this.block.events.getList, args);
    },
    "getList": function getList(args) {
      if (this.block.options.draggable) {
        // 拖拽
        this.block.data.content = {
          1551974400000: {
            10: [{
              html: "<div>\u6570\u636E1</div>",
              id: 1
            }, {
              html: "<div>\u6570\u636E2</div>",
              id: 2
            }],
            20: [{
              html: "<div>\u6570\u636E3</div>",
              id: 3
            }]
          },
          1552320000000: {
            10: [{
              html: "<div>\u6570\u636E4</div>",
              id: 4
            }],
            20: [{
              html: "<div>\u6570\u636E5</div>",
              id: 5
            }]
          }
        };
      } else {
        // 不可拖拽
        this.block.data.content = {
          1551974400000: {
            10: ["<div>\u6570\u636E1</div>", "<div>\u6570\u636E2</div>"],
            20: ["<div>\u6570\u636E3</div>"]
          },
          1552320000000: {
            10: ["<div>\u6570\u636E4</div>"],
            20: ["<div>\u6570\u636E5</div>"]
          }
        };
      }
    }
  }
}