-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
84 lines (59 loc) · 1.25 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
* Module dependencies
*/
var bind = require('bind');
var events = require('event');
var Emitter = require('emitter');
var requestAnimFrame = require('raf');
/**
* Expose `Throttled`
*/
module.exports = Throttled;
function Throttled(){
this.state = { scroll: false, resize: false };
bind.methods(this, 'capture', 'update');
this._bind();
}
/**
* Install Emitter
*/
Emitter(Throttled.prototype);
/**
* Bind `resize` / `scroll` DOM events
*/
Throttled.prototype._bind = function(){
events.bind(window, 'resize', this.capture);
events.bind(window, 'scroll', this.capture);
}
/**
* Callback to the DOM events
*/
Throttled.prototype.capture = function(e){
for(var k in this.state){
if (k === e.type && !this.state[k]) {
this.state[k] = true;
requestAnimFrame(this.update);
continue;
}
}
}
/**
* Emit `scroll`, `resize` event respectively
*/
Throttled.prototype.update = function() {
for(var k in this.state){
if(this.state[k]){
this.emit(k);
this.state[k] = false;
continue;
}
};
};
/**
* Unbind dom events and remove all listeners
*/
Throttled.prototype.destroy = function() {
events.unbind(window, 'resize');
events.unbind(window, 'scroll');
this.off();
};