-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapi.js
33 lines (31 loc) · 855 Bytes
/
api.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
var average = function(array){
return array.reduce(function(a, b){return parseInt(a) + parseInt(b);})/array.length;
}
var JailCollection = Backbone.Collection.extend({
initialize: function(data, o) {
this.options = o || {};
},
url: function() {
return this.options.url;
},
sortAscending: false,
sortByAttributeKey: 'date',
comparator: function(lhs, rhs) {
var compare = null,
val_lhs = lhs.get(this.sortByAttributeKey),
val_rhs = rhs.get(this.sortByAttributeKey);
switch(typeof(val_lhs)){
case "string":
compare = val_lhs.localeCompare(val_rhs);
break;
case "number":
compare = val_lhs - val_rhs;
break;
}
return this.sortAscending ? compare : -compare;
},
average: function(key) {
this.sort();
return average(_.pluck(this.toJSON(), key));
}
});