This repository was archived by the owner on Sep 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbackgrid-select-filter.js
176 lines (160 loc) · 5.89 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
Backgrid select-filter extension
http://github.com/amiliaapp/backgrid-select-filter
Copyright (c) 2014 Amilia Inc.
Written by Martin Drapeau
Updgraded by Alexey Ismailov aka teddybear
Licensed under the MIT @license
*/
(function (root, factory) {
// CommonJS
if (typeof exports == "object") {
module.exports = factory(require("underscore"),
require("backbone"),
require("backgrid"),
require("backbone.paginator"));
}
// AMD. Register as an anonymous module.
else if (typeof define === 'function' && define.amd) {
define(['underscore', 'backbone', 'backgrid', 'backbone.paginator'], factory);
}
// Browser
else {
factory(root._, root.Backbone, root.Backgrid);
}
}(this, function (_, Backbone, Backgrid) {
"use strict";
var SelectFilter = Backgrid.Extension.SelectFilter = Backbone.View.extend({
tagName: "div",
className: "backgrid-filter",
template: _.template([
"<% for (var i=0; i < options.length; i++) { %>",
" <select <%=options[i].multiple === true ? multiple='multiple' : ''%> class='form-control'>",
" <% for (var j=0; j < options[i].selectOptions.length; j++) { %>",
" <option value='<%=JSON.stringify(options[i].selectOptions[j].value)%>' <%=options[i].selectOptions[j].value === clearValue ? 'selected=\"selected\"' : ''%>><%=options[i].selectOptions[j].label%></option>",
" <% } %>",
" </select>",
" <% } %>"
].join("\n")),
events: {
"change": "onChange"
},
defaults: {
fields:[
{
name:null,
selectOptions:undefined,
multiple: false
}
],
clearValue: null,
initialValue: undefined,
makeMatcher: function(values) {
var matcherValues = [];
_.each(this.fields, function(field, idx){
if(values[idx] !== this.clearValue)
matcherValues.push({field:field.name, value:values[idx]});
}, this);
if(!(_.isEmpty(matcherValues))){
return function(model){
var matches = _.filter(matcherValues, function(match){
if(_.isArray(match.value)){
return _.find(match.value, function(m){
return model.get(match.field) === m;
});
}
else if(model.get(match.field) === match.value){
return true;
} else {
return false;
}
});
return !_.isEmpty(matches) && matches.length === matcherValues.length;
}
} else {
return function(model){
return true;
}
}
}
},
initialize: function(options) {
SelectFilter.__super__.initialize.apply(this, arguments);
_.defaults(this, options || {}, this.defaults);
if (_.isEmpty(this.fields) || !this.fields.length) throw "Invalid or missing field.";
_.each(this.fields, function(f){
if (_.isEmpty(f.selectOptions) || !_.isArray(f.selectOptions)) throw "Invalid or missing selectOptions.";
});
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, "remove", function (model, collection, options) {
shadowCollection.remove(model, options);
});
this.listenTo(collection, "sort", function (col) {
if (_.uniq(this.currentValue()).length == 1 && _.uniq(this.currentValue())[0] == 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.fields,
initialValue: this.initialValue,
clearValue: this.clearValue
}));
this.onChange();
return this;
},
currentValue: function() {
r = this;
selects = _.filter(this.$el.children(), function(child){
return $(child).is('select');
});
// return _.map(this.$el.children(), function(sel){
return _.map(selects, function(sel){
var v = $(sel).val();
if(!_.isArray(v) || _.isArray(v) && v.length === 1){
return JSON.parse(v);
}
else {
console.log(this);
return _.filter(
_.map(v, function(i){return JSON.parse(i)}),
function(p){
return p !== this.clearValue;
},
this
);
}
}, this);
},
onChange: function(e) {
var col = this.collection;
var fields = this.fields;
var values = this.currentValue();
var matcher = _.bind(this.makeMatcher(values), this);
if (col.pageableCollection)
col.pageableCollection.getFirstPage({silent: true});
var buffer = _.filter(values, function(v){
if(v !== this.clearValue)
return v;
});
if (!_.isEmpty(buffer)) {
col.reset(this.shadowCollection.filter(matcher), {reindex: false});
this.trigger('cs-filter', this.collection);
}
else{
col.reset(this.shadowCollection.models, {reindex: false});
this.trigger('cs-filter', this.collection);
}
}
});
}));