-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathindex.js
66 lines (60 loc) · 1.73 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* @name 任务切片
* @description 一个用来做性能优化的工具
* @author xichen Liu
* @version 1.0.0
*/
var raf = window.requestAnimationFrame ? window.requestAnimationFrame.bind(window) : setTimeout;
var isArray = arg => arg instanceof Array && arg.constructor === Array;
var isFunction = arg => arg instanceof Function && arg.constructor === Function;
function TaskSlice() {}
TaskSlice.prototype = {
init: function ({ sliceList, callback }) {
if (!isFunction(callback)) {
console.error('callback 为必传参数并为 function');
return;
}
// 添加切片队列
this.generator = this.sliceQueue({
sliceList,
callback
});
// 开始切片
this.next();
},
/*
* next [执行下次队列]
* 依次执行切片,理想状态下每一个任务的执行时间不应该超过 16.7ms,如果超过了 16.7ms,就在启一个任务
* 详情:https://developers.google.com/web/fundamentals/performance/rail
*/
next: function () {
const { generator } = this;
const start = performance.now();
let res = null;
do {
res = generator.next();
}
while (!res.done && performance.now() - start < 16.7);
if (res.done) return;
raf(this.next.bind(this));
},
/**
* sliceQueue [切片]
* @param { number } sliceList [切片次数]
* @param { function } callback [切片回调]
*/
sliceQueue: function* ({ sliceList, callback }) {
// 处理次数
for (let i = 0; i < sliceList; ++i) {
const start = performance.now();
callback(i);
debugger
// 如果执行需要的时间少于 16.7ms,就停止继续执行下去
// 如果大于的话,就在下一次绘制的时候去执行
while (performance.now() - start < 16.7) {
yield;
}
}
}
}
export default new TaskSlice();