1. 项目实现介绍
vue
项目搭建参考《Webpack4 搭建 Vue 项目》
文档使用 vuepress
, 官方文档 https://vuepress.vuejs.org
发布文档 github pages
+ gh-page
项目地址 https://github.com/zxpsuper/vui-vue<img src="https://img.shields.io/github...;>
文档地址 https://zxpsuper.github.io/vui-vue
组件地址 https://zxpsuper.github.io/vui-vue/components/throttle.html
处于自我摸索阶段,期待留下您的宝贵意见!
2. Throttle 组件的实现
- 首先,写一个防抖节流的通用函数
/**
* @param {function} func 执行函数
* @param {number} time 防抖节流时间
* @param {boolean} isDebounce 是否为防抖组件
* @param {this} ctx this 的指向
*/
const debounce = (func, time, isDebounce, ctx) => {
var timer, lastCall, rtn;
if (isDebounce) {
rtn = (...params) => {
if (timer) clearTimeout(timer);
timer = setTimeout(() => {
func.apply(ctx, params);
}, time);
};
} else {
rtn = (...params) => {
const now = new Date().getTime();
if (now - lastCall < time && lastCall) return;
lastCall = now;
func.apply(ctx, params);
};
}
return rtn;
};
- 使用抽象组件
export default {
name: 'Throttle',
abstract: true,
props: {
time: {
type: Number,
default: 800,
},
events: {
type: String,
default: 'click',
},
isDebounce: {
type: Boolean,
default: false,
},
},
created() {
this.eventKeys = this.events.split(','); // 分隔事件
this.originMap = {}; // 储存事件,用于重新render时与子事件的对比
this.debouncedMap = {}; // 储存防抖节流事件
},
render() {
const vnode = this.$slots.default[0];
this.eventKeys.forEach(key => {
const target = vnode.data.on[key];
if (target === this.originMap[key] && this.debouncedMap[key]) {
vnode.data.on[key] = this.debouncedMap[key];
} else if (target) {
this.originMap[key] = target;
this.debouncedMap[key] = debounce(
target,
this.time,
this.isDebounce,
vnode
);
vnode.data.on[key] = this.debouncedMap[key]; // 重写子组件的事件
}
});
return vnode;
},
};
3. 使用组件
需全局或者组件内注册一下,这里只展示全局注册代码:
Vue.component("Throttle", Throttle);
使用方法:
<Throttle :time="5000" isDebounce>
<span @click="decounceFunction">
<Button color="purple" light>防抖按钮</Button>
</span>
</Throttle>
4. 存在问题与解决方法
当页面元素在防抖节流时间内发生了更新(渲染)(可以用定时器修改页面,如页面倒计时),那么此组件会重新执行一遍
this.debouncedMap[key] = debounce(target,this.time,this.isDebounce,vnode);
导致防抖节流失效,目前的解决方法是在此组件的子元素添加 v-once
,如下:
<Throttle :time="5000" isDebounce>
<span @click="decounceFunction" v-once>
<Button color="purple" light>防抖按钮</Button>
</span>
</Throttle>
可解决此问题,有更好的方法请在评论区留言
5. 完整代码
/*
* @descript: 防抖节流组件,前提是页面在等待时间内无其他渲染方可使用,重新渲染导致 debounce() 函数不断重置
* @Author: super
* @Date: 2019-04-09 14:21:18
* @Last Modified by: super
* @Last Modified time: 2019-10-24 16:37:43
*/
const debounce = (func, time, isDebounce, ctx) => {
var timer, lastCall, rtn;
if (isDebounce) {
rtn = (...params) => {
if (timer) clearTimeout(timer);
timer = setTimeout(() => {
func.apply(ctx, params);
}, time);
};
} else {
rtn = (...params) => {
const now = new Date().getTime();
if (now - lastCall < time && lastCall) return;
lastCall = now;
func.apply(ctx, params);
};
}
return rtn;
};
export default {
name: 'Throttle',
abstract: true,
props: {
time: {
type: Number,
default: 800,
},
events: {
type: String,
default: 'click',
},
isDebounce: {
type: Boolean,
default: false,
},
},
created() {
this.eventKeys = this.events.split(',');
this.originMap = {};
this.debouncedMap = {};
},
render() {
const vnode = this.$slots.default[0];
this.eventKeys.forEach(key => {
const target = vnode.data.on[key];
if (target === this.originMap[key] && this.debouncedMap[key]) {
vnode.data.on[key] = this.debouncedMap[key];
} else if (target) {
this.originMap[key] = target;
this.debouncedMap[key] = debounce(
target,
this.time,
this.isDebounce,
vnode
);
vnode.data.on[key] = this.debouncedMap[key];
}
});
return vnode;
},
};
总结
本文是对render及抽象组件的使用总结,若有错误,望指出共同进步。
更多推荐
Canvas 进阶(二)写一个生成带logo的二维码npm插件
Canvas 进阶(三)ts + canvas 重写”辨色“小游戏
<h1>最后祝大家1024节日快乐哈哈😍</h1>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。