-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathqueue-vanilla.js
More file actions
79 lines (64 loc) · 1.76 KB
/
Copy pathqueue-vanilla.js
File metadata and controls
79 lines (64 loc) · 1.76 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
(function exposeQueue(root){
function validateTasks(tasks){
const invalidIndex=tasks.findIndex(task=>typeof task !== 'function');
if(invalidIndex !== -1){
throw new TypeError(`Queue task at index ${invalidIndex} must be a function.`);
}
}
class Queue{
#contents=[];
#running=false;
constructor(){
this.autoRun=true;
this.stop=false;
}
add(...tasks){
validateTasks(tasks);
this.#contents.push(...tasks);
if(!this.#running && !this.stop && this.autoRun){
this.next();
}
return this;
}
next(){
if(this.stop || this.#contents.length === 0){
this.#running=false;
return;
}
this.#running=true;
const task=this.#contents.shift();
try{
task.call(this);
}catch(error){
this.#running=false;
throw error;
}
}
clear(){
this.#contents=[];
return this.#contents;
}
get contents(){
return this.#contents;
}
set contents(tasks){
if(!Array.isArray(tasks)){
throw new TypeError('Queue contents must be an array of functions.');
}
validateTasks(tasks);
this.#contents=tasks;
}
get running(){
return this.#running;
}
get size(){
return this.#contents.length;
}
}
Object.defineProperty(root,'Queue',{
configurable:true,
enumerable:true,
value:Queue,
writable:true
});
})(globalThis);