blob: 831342f21406972a60c50f76c938a48138c53852 (
plain)
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
|
/**
* Priority lists allow you to create an indexed list that can be iterated through in a specific
* order.
*/
elgg.ElggPriorityList = function() {
this.length = 0;
this.priorities_ = [];
};
/**
* Inserts an element into the priority list at the priority specified.
*
* @param {Object} obj The object to insert
* @param {Number} opt_priority An optional priority to insert at.
*
* @return {Void}
*/
elgg.ElggPriorityList.prototype.insert = function(obj, opt_priority) {
var priority = parseInt(opt_priority || 500, 10);
priority = Math.max(priority, 0);
if (elgg.isUndefined(this.priorities_[priority])) {
this.priorities_[priority] = [];
}
this.priorities_[priority].push(obj);
this.length++;
};
/**
* Iterates through each element in order.
*
* Unlike every, this ignores the return value of the callback.
*
* @param {Function} callback The callback function to pass each element through. See
* Array.prototype.every() for details.
* @return {Object}
*/
elgg.ElggPriorityList.prototype.forEach = function(callback) {
elgg.assertTypeOf('function', callback);
var index = 0;
this.priorities_.forEach(function(elems) {
elems.forEach(function(elem) {
callback(elem, index++);
});
});
return this;
};
/**
* Iterates through each element in order.
*
* Unlike forEach, this returns the value of the callback and will break on false.
*
* @param {Function} callback The callback function to pass each element through. See
* Array.prototype.every() for details.
* @return {Object}
*/
elgg.ElggPriorityList.prototype.every = function(callback) {
elgg.assertTypeOf('function', callback);
var index = 0;
return this.priorities_.every(function(elems) {
return elems.every(function(elem) {
return callback(elem, index++);
});
});
};
/**
* Removes an element from the priority list
*
* @param {Object} obj The object to remove.
* @return {Void}
*/
elgg.ElggPriorityList.prototype.remove = function(obj) {
this.priorities_.forEach(function(elems) {
var index;
while ((index = elems.indexOf(obj)) !== -1) {
elems.splice(index, 1);
this.length--;
}
});
};
|