-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPublisher.js
More file actions
132 lines (106 loc) · 3.08 KB
/
Copy pathPublisher.js
File metadata and controls
132 lines (106 loc) · 3.08 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// var _ = require('/lib/underscore/underscore')._;
/**
* @type {Object}
*/
var Publisher = (function() {
/**
* @private
* @type {Object}
*/
var _callbacks = {};
/**
* @private
* @param {String} identifier
* @return {Boolean}
*/
var _hasEvent = function(identifier) {
return _callbacks.hasOwnProperty(identifier);
};
/**
* @private
* @param {Function} callback
* @throws {Error}
*/
var _validateCallbackValid = function(callback) {
if (_.isFunction(callback) === false) {
throw new Error('A function should be supplied as event callback');
}
};
return {
/**
* @param {string} identifier Event identifier
* @param {Function} callback Callback function that needs to be fired once the event is triggered
* @param {Object} context Context in which the callback function needs to be run once the event is triggered
*
* @return Publisher
*/
addEventListener: function (identifier, callback, context) {
_validateCallbackValid(callback);
if (_hasEvent(identifier) === false) {
_callbacks[identifier] = [];
}
_callbacks[identifier].push({
callback: callback,
context: context
});
// console.log(_callbacks[identifier]);
return this;
},
/**
* @param identifier
* @param callback
* @param context
*
* @return Publisher
*/
removeEventListener: function (identifier, callback, context) {
_validateCallbackValid(callback);
if (_hasEvent(identifier) === false) {
return this;
}
for (var i = 0, l = _callbacks[identifier].length; i < l; i++) {
item = _callbacks[identifier][i];
if (item.callback === callback && item.context === context) {
delete _callbacks[identifier][i];
}
}
// delete leaves empty (type = 'undefined') array values, remove the empty values
_callbacks[identifier] = _callbacks[identifier].filter(function() {
return true;
});
return this;
},
/**
* @param {String} identifier
*
* @return Publisher
*/
trigger: function (identifier, params) {
if (_hasEvent(identifier) === false) {
return this;
}
var callbacks = _callbacks[identifier],
item = null;
for (var i = 0, l = callbacks.length; i < l; i++) {
item = callbacks[i];
item.callback.apply(item.context || this, params);
}
return this;
}
};
})();
var myObject = {
test: 'eigen property',
callback: function() {
console.log('Ik ben er! ' + this.test);
}
};
var looseCallback = function() {
console.log('Nu ben ik hier! ' + (this === Publisher));
};
Publisher.addEventListener('click', myObject.callback, myObject);
Publisher.addEventListener('click', looseCallback);
Publisher.addEventListener('click', looseCallback);
// Publisher.removeEventListener('click', myObject.callback, myObject);
// Publisher.subscribe('click'); // Uncaught Error: A function should be supplied as event callback
Publisher.trigger('click');