forked from teddybear/backgrid-select-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackgrid-select-filter.js
94 lines (86 loc) · 3.32 KB
/
backgrid-select-filter.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
84
85
86
87
88
89
90
91
92
93
94
/*
Backgrid select-filter extension
http://github.com/amiliaapp/backgrid-select-filter
Copyright (c) 2014 Amilia Inc.
Written by Martin Drapeau
Licensed under the MIT @license
*/
(function(){
var SelectFilter = Backgrid.Extension.SelectFilter = Backbone.View.extend({
tagName: "select",
className: "backgrid-filter",
template: _.template([
"<% for (var i=0; i < options.length; i++) { %>",
" <option value='<%=JSON.stringify(options[i].value)%>' <%=options[i].value === initialValue ? 'selected=\"selected\"' : ''%>><%=options[i].label%></option>",
"<% } %>"
].join("\n")),
events: {
"change": "onChange"
},
defaults: {
selectOptions: undefined,
field: undefined,
clearValue: null,
initialValue: undefined,
makeMatcher: function(value) {
return function(model) {
return model.get(this.field) == value;
};
}
},
initialize: function(options) {
SelectFilter.__super__.initialize.apply(this, arguments);
_.defaults(this, options || {}, this.defaults);
if (_.isEmpty(this.selectOptions) || !_.isArray(this.selectOptions)) throw "Invalid or missing selectOptions.";
if (_.isEmpty(this.field) || !this.field.length) throw "Invalid or missing field.";
if (this.initialValue === undefined) this.initialValue = this.clearValue;
var collection = this.collection = this.collection.fullCollection || this.collection;
var shadowCollection = this.shadowCollection = collection.clone();
this.listenTo(collection, "add", function (model, collection, options) {
shadowCollection.add(model, options);
});
this.listenTo(collection, "change", function (model, collection, options) {
//shadowCollection.add(model, _.extend(options || {},{merge:true}));
shadowCollection.get(model).set(_.clone(model.attributes));
//this.onChange();
//shadowCollection.reset(collection.models,{reindex: false});
this.onChange();
});
this.listenTo(collection, "remove", function (model, collection, options) {
shadowCollection.remove(model, options);
});
this.listenTo(collection, "sort", function (col) {
if (this.currentValue() == this.clearValue) shadowCollection.reset(col.models);
});
this.listenTo(collection, "reset", function (col, options) {
options = _.extend({reindex: true}, options || {});
if (options.reindex && options.from == null && options.to == null) {
shadowCollection.reset(col.models);
}
});
},
render: function() {
this.$el.empty().append(this.template({
options: this.selectOptions,
initialValue: this.initialValue
}));
this.onChange();
return this;
},
currentValue: function() {
return JSON.parse(this.$el.val());
},
onChange: function(e) {
var col = this.collection,
field = this.field,
value = this.currentValue(),
matcher = _.bind(this.makeMatcher(value), this);
if (col.pageableCollection)
col.pageableCollection.getFirstPage({silent: true});
if (value !== this.clearValue)
col.reset(this.shadowCollection.filter(matcher), {reindex: true});
else
col.reset(this.shadowCollection.models, {reindex: false});
}
});
}).call(this);