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

vue-lytest-components

v1.2.4

Published

一些标准组件库里可能没有的组件

Downloads

2

Readme

日常开发使用组件库一般都能满足大部分的需求,不过有些功能组件可能库里并没有,这里开源一些特定项目可能会使用到的组件,希望可以帮助到大家~

示例查看

将本项目克隆到本地,安装完依赖,执行运行的命令即可查看到具体示例。

git clone [email protected]:huxiaocheng/vue-gn-components.git

npm i

npm run serve

快速上手

  • 安装
npm i vue-gn-components
  • 引入
整体引入:
import VueGnComponents from "vue-gn-components";
import "vue-gn-components/lib/style/index.css";
Vue.use(VueGnComponents)

按需引入:
import { CheckIn, watermark } from "vue-gn-components";
import "vue-gn-components/lib/style/index.css";
Vue.use(CheckIn).use(watermark)

组件介绍

一、放大镜 (Magnifier)

  • 组件安装:
import { Magnifier } from 'vue-gn-components';
Vue.use(Magnifier)
  • 组件亮点:

无论组件的dom位置在页面何方,会准确计算鼠标位置以及自动在右侧悬浮一个查看区域,并且当右侧位置超过边界后,查看区域会自动出现在左边。

  • 组件调用:
<magnifier
  :boxSize="400"
  :minImgUrl="require('./img/min.jpg')"
  :maxImgUrl="require('./img/max.jpg')"
></magnifier>
  • 参数:

boxSize: 设置放大镜主体框的大小,会自动在右侧生成一个与之同样大小的查看放大图像的悬浮框,默认500。

minImgUrl: 放大镜小图的url

maxImgUrl: 放大镜大图的url

autoReverse: 是否开启右侧距离超过边界时,悬浮框自适应在左侧。默认true

direction: 悬浮框的方向,默认right右侧。可选left

二、签到 (CheckIn)

  • 组件安装:
import { CheckIn } from 'vue-gn-components';
Vue.use(CheckIn)
  • 组件亮点:

实现了功能。会将传入的一维数组的日期集合,按年月格式化为对象,在渲染某个月时,只会渲染对应当月的签到天数,数组拥有海量数据也不会大量渲染。

组件调用:

<template>
  <check-in :checkIns="checkIns" />
</template>

export default {
  return {
    checkIns: ['2019-12-15', '2019.12.18', 1576250061182]
  }
}
  • 参数:

checkIns: 传入一个签到日期的一维数组集合,可以是时间戳、2019-11-112019.11.11格式。

size: 签到组件的整体大小,默认500,大小自适应。

三、图片标签 (ImgLabel)

  • 组件安装:
import { ImgLabel } from 'vue-gn-components';
Vue.use(ImgLabel)
  • 组件亮点:

实现了功能。右击创建标签,双击编辑标签,可以单个移除,也可以全部清除,保存到本地缓存,导出为图片。

  • 组件调用:
<img-label :src="require('./img/timg.jpg')"></img-label>
  • 参数:

isShowSaveBtn: 是否显示保存按钮,默认true,会将标签数据保存到本地缓存。

src: 需要添加标签图片的url

width:图片的宽,默认500。

theme: 主题色,默认#3b8bcc

四、滑动验证(SlideCheck)

  • 组件安装:
import { SlideCheck } from 'vue-gn-components';
Vue.use(SlideCheck)
  • 组件亮点:

仿某电商的注册验证,不过使用纯canvas进行绘制,包括抠出来的拼图以及图片的渲染。而且在验证成功派发的事件里会记录用户滑动过程中上下分别抖动的最大距离。(可能机器是不会抖的,增加了一点点的安全性)

  • 组件调用:
<slide-check 
  :width="300" 
  :height="300" 
  :src="src" 
  @success="success" 
  @fail="fail">
</slide-check>

export default {
  data() {
    src: [
      require("./img/timg.jpg"),
      require("./img/min.jpg")
    ]
  }
}
  • 参数:

radius: 拼图突出圆心的半径值,也就是绘制的拼图的大小,默认10

src: 单个url或多个url数组的集合,当为多个时,验证失败或成功都会随机选择另外一张图片。

width: 验证区域的宽,是canvas容器的width

height: 验证区域的高。

theme: 主题色,默认#369

  • 事件:

success: 验证成功的回调,会派发一个对象出来,分别为上下波动的最大值。

fail: 验证没通过的回调。

五、倒计时(Countdown)

  • 组件安装:
import { Countdown } from 'vue-gn-components';
Vue.use(Countdown)
  • 组件亮点:

两种模式,一种是传入时间戳或2022-5-12-17-202022.5.12.17.20这样大于当前时间的格式。另一种是传入60这样的秒数,开始倒数之后刷新页面不会重新计时。没有做任何css的美化,只使用作用域插槽派发出对应的值。

  • 组件使用:
<template>
<div>
  <countdown :time="date">
    <template v-slot="{date}">
      {{date.year}}年-{{date.month}}月-{{date.date}}日-{{date.hours}}小时-{{date.minutes}}分钟-{{date.seconds}}秒
    </template>
  </countdown>
  <countdown isSMSMode :totalTime="timeLeft">
    <template v-slot="{date}">{{date.timeLeft}}秒</template>
  </countdown>
</div>
</template>

export default {
  data() {
    return {
      date: "2022.11.11",
      timeLeft: 60
    };
  }
  • 参数:

time: 传入大于当前时间的时间格式。

isSMSMode: 是否秒数倒数模式,默认false

totalTime: 倒数模式的最大秒数。

  • 作用域插槽

year: 年;

month: 月;

date: 日;

hours: 小时;

minutes: 分钟;

seconds: 秒钟;

timeLeft: 倒数剩余秒数.

  • 事件:

end:倒计时结束。

  • 方法:

start:开始。

pause:暂停。

六、水印(watermark)

  • 组件安装:
import { watermark } from 'vue-gn-components';
Vue.use(watermark)
  • 指令亮点:

采用自定义指令形式,会将指令作用在img上的标签最终替换为canvas标签。使用离屏canvas进行绘制,一个绘制图像,另一个绘制水印,最终合并为一个canvas标签。

  • 指令调用:
<template>
  <div>
    <img v-watermark="{src: src, text: 'hello world'}"/>
  </div>
</template>

export default {
  data() {
    return {
      src: require("./img/min.jpg")
    };
  }
}
  • 指令参数:

src: 图片的url

text: 水印的文字。

opacity: 水印的透明度,默认0.3

rotate: 旋转角度,默认20

fontSize: 水印字体大小,默认20

type: 水印绘制的方式,默认是repeat全屏重复绘制。只绘制一条水印时,可选left-top左上,right-top右上,right-bottom右小,left-bottom左下。

七、拖拽组件(DragWrap/DragItem)

  • 组件安装:
import { DragWrap, DragItem } from 'vue-gn-components';
Vue.use(DragWrap).use(DragItem)
  • 组件亮点:

拖拽的具体内容用户完全可以自己编写,也可以自己编写拖拽的控制点。

  • 组件调用:
<template>
  <drag-wrap class="wrap" :data="list" @watchData="watchData">
    <drag-item class="item" v-for="(item, index) in list" :key="index">
      <template #drag>
        <div>拖拽Dom</div>
      </template>
      <div>{{item}}</div>
    </drag-item>
  </drag-wrap>
</template>

export default {
  data() {
    return {
      list: [111, 222, 333, 444, 555, 666, 777, 888, 999]
    };
  },
  methods: {
    watchData(newList) {
      console.log("newList", newList);
    }
  }
}
  • 参数:

data:数组格式,Dom有对应的渲染数组,当Dom位置变了之后,数组也会发生变化,传递给组件内,改变后组件派发出来。

  • 事件:

watchData:会将改变的数组派发出来,监听这个方法接收。

  • 插槽:

drag:用户自己定义拖拽的控制点,没有时拖拽Dom项任意任意位置都可以。

八、找茬组件(FindDiff)

  • 组件安装:
import { FindDiff } from 'vue-gn-components';
Vue.use(FindDiff)
  • 组件亮点:

'辅助'完成大家来找茬游戏。

  • 组件调用:
<template>
  <find-diff/>
</template>

更多

更多的组件后续会持续添加以及优化,欢迎pr各种你使用到功能组件。如果对你有帮助,还请给个Star了,这也是我持续完善这个项目,持续的动力。