forked from mxriverlynn/backbone.modelbinding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackbone.modelbinding.js
453 lines (376 loc) · 14 KB
/
backbone.modelbinding.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
// Backbone.ModelBinding v0.4.0
//
// Copyright (C)2011 Derick Bailey, Muted Solutions, LLC
// Distributed Under MIT Liscene
//
// Documentation and Full Licence Availabe at:
// http://github.com/derickbailey/backbone.modelbinding
// ----------------------------
// Backbone.ModelBinding
// ----------------------------
Backbone.ModelBinding = (function(Backbone, _, $){
modelBinding = {
version: "0.4.0",
bind: function(view, options){
view.modelBinder = new ModelBinder(view, options);
view.modelBinder.bind();
},
unbind: function(view){
if (view.modelBinder){
view.modelBinder.unbind()
}
}
};
ModelBinder = function(view, options){
this.config = new modelBinding.Configuration(options);
this.modelBindings = [];
this.elementBindings = [];
this.bind = function(){
var conventions = modelBinding.Conventions;
for (var conventionName in conventions){
if (conventions.hasOwnProperty(conventionName)){
var conventionElement = conventions[conventionName];
var handler = conventionElement.handler;
var conventionSelector = conventionElement.selector;
handler.bind.call(this, conventionSelector, view, view.model, this.config);
}
}
}
this.unbind = function(){
// unbind the html element bindings
_.each(this.elementBindings, function(binding){
binding.element.unbind(binding.eventName, binding.callback);
});
// unbind the model bindings
_.each(this.modelBindings, function(binding){
binding.model.unbind(binding.eventName, binding.callback);
});
}
this.registerModelBinding = function(model, attribute_name, callback){
// bind the model changes to the form elements
var eventName = "change:" + attribute_name;
model.bind(eventName, callback);
this.modelBindings.push({model: model, eventName: eventName, callback: callback});
}
this.registerElementBinding = function(element, callback){
// bind the form changes to the model
element.bind("change", callback);
this.elementBindings.push({element: element, eventName: "change", callback: callback});
}
}
// ----------------------------
// Model Binding Configuration
// ----------------------------
modelBinding.Configuration = function(options){
this.bindingAttrConfig = {};
_.extend(this.bindingAttrConfig,
modelBinding.Configuration.bindindAttrConfig,
options
);
if (this.bindingAttrConfig.all){
var attr = this.bindingAttrConfig.all;
delete this.bindingAttrConfig.all;
for (var inputType in this.bindingAttrConfig){
if (this.bindingAttrConfig.hasOwnProperty(inputType)){
this.bindingAttrConfig[inputType] = attr;
}
}
}
this.getBindingAttr = function(type){
return this.bindingAttrConfig[type];
};
this.getBindingValue = function(element, type){
var bindingAttr = this.getBindingAttr(type);
return element.attr(bindingAttr);
};
};
modelBinding.Configuration.bindindAttrConfig = {
text: "id",
textarea: "id",
password: "id",
radio: "name",
checkbox: "id",
select: "id"
};
modelBinding.Configuration.store = function(){
modelBinding.Configuration.originalConfig = _.clone(modelBinding.Configuration.bindindAttrConfig);
};
modelBinding.Configuration.restore = function(){
modelBinding.Configuration.bindindAttrConfig = modelBinding.Configuration.originalConfig;
};
modelBinding.Configuration.configureBindingAttributes = function(options){
if (options.all){
this.configureAllBindingAttributes(options.all);
delete options.all;
}
_.extend(modelBinding.Configuration.bindindAttrConfig, options);
};
modelBinding.Configuration.configureAllBindingAttributes = function(attribute){
var config = modelBinding.Configuration.bindindAttrConfig;
config.text = attribute;
config.textarea = attribute;
config.password = attribute;
config.radio = attribute;
config.checkbox = attribute;
config.select = attribute;
};
// ----------------------------
// Text, Textarea, and Password Bi-Directional Binding Methods
// ----------------------------
StandardBinding = (function(Backbone){
var methods = {};
var _getElementType = function(element) {
var type = element[0].tagName.toLowerCase();
if (type == "input"){
type = element.attr("type");
if (type == undefined || type == ''){
type = 'text';
}
}
return type;
};
methods.bind = function(selector, view, model, config){
var modelBinder = this;
view.$(selector).each(function(index){
var element = view.$(this);
var elementType = _getElementType(element);
var attribute_name = config.getBindingValue(element, elementType);
var modelChange = function(changed_model, val){ element.val(val); };
var elementChange = function(ev){
var data = {};
data[attribute_name] = view.$(ev.target).val();
model.set(data);
};
modelBinder.registerModelBinding(model, attribute_name, modelChange);
modelBinder.registerElementBinding(element, elementChange);
// set the default value on the form, from the model
var attr_value = model.get(attribute_name);
if (typeof attr_value !== "undefined" && attr_value !== null) {
element.val(attr_value);
}
});
};
return methods;
})(Backbone);
// ----------------------------
// Select Box Bi-Directional Binding Methods
// ----------------------------
SelectBoxBinding = (function(Backbone){
var methods = {};
methods.bind = function(selector, view, model, config){
var modelBinder = this;
view.$(selector).each(function(index){
var element = view.$(this);
var attribute_name = config.getBindingValue(element, 'select');
var modelChange = function(changed_model, val){ element.val(val); };
var elementChange = function(ev){
var data = {};
var targetEl = view.$(ev.target);
data[attribute_name] = targetEl.val();
data[attribute_name + "_text"] = targetEl.find(":selected").text();
model.set(data);
}
modelBinder.registerModelBinding(model, attribute_name, modelChange);
modelBinder.registerElementBinding(element, elementChange);
// set the default value on the form, from the model
var attr_value = model.get(attribute_name);
if (typeof attr_value !== "undefined" && attr_value !== null) {
element.val(attr_value);
if (element.val() != attr_value) {
var data = {};
data[attribute_name] = element.val();
model.set(data);
}
}
});
};
return methods;
})(Backbone);
// ----------------------------
// Radio Button Group Bi-Directional Binding Methods
// ----------------------------
RadioGroupBinding = (function(Backbone){
var methods = {};
methods.bind = function(selector, view, model, config){
var modelBinder = this;
var foundElements = [];
view.$(selector).each(function(index){
var element = view.$(this);
var group_name = config.getBindingValue(element, 'radio');
if (!foundElements[group_name]) {
foundElements[group_name] = true;
var bindingAttr = config.getBindingAttr('radio');
var modelChange = function(model, val){
var value_selector = "input[type=radio][" + bindingAttr + "=" + group_name + "][value=" + val + "]";
view.$(value_selector).attr("checked", "checked");
};
modelBinder.registerModelBinding(model, group_name, modelChange);
// bind the form changes to the model
var elementChange = function(ev){
var element = view.$(ev.currentTarget);
if (element.is(":checked")){
var data = {};
data[group_name] = element.val();
model.set(data);
}
};
var group_selector = "input[type=radio][" + bindingAttr + "=" + group_name + "]";
view.$(group_selector).each(function(){
var groupEl = $(this);
modelBinder.registerElementBinding(groupEl, elementChange);
});
// set the default value on the form, from the model
var attr_value = model.get(group_name);
if (typeof attr_value !== "undefined" && attr_value !== null) {
var value_selector = "input[type=radio][" + bindingAttr + "=" + group_name + "][value=" + attr_value + "]";
view.$(value_selector).attr("checked", "checked");
}
}
});
};
return methods;
})(Backbone);
// ----------------------------
// Checkbox Bi-Directional Binding Methods
// ----------------------------
CheckboxBinding = (function(Backbone){
var methods = {};
methods.bind = function(selector, view, model, config){
var modelBinder = this;
view.$(selector).each(function(index){
var element = view.$(this);
var bindingAttr = config.getBindingAttr('checkbox');
var attribute_name = config.getBindingValue(element, 'checkbox');
var modelChange = function(model, val){
if (val){
element.attr("checked", "checked");
}
else{
element.removeAttr("checked");
}
};
var elementChange = function(ev){
var data = {};
var changedElement = view.$(ev.target);
var checked = changedElement.is(":checked")? true : false;
data[attribute_name] = checked;
model.set(data);
};
modelBinder.registerModelBinding(model, attribute_name, modelChange);
modelBinder.registerElementBinding(element, elementChange);
// set the default value on the form, from the model
var attr_exists = model.attributes.hasOwnProperty(attribute_name);
if (attr_exists) {
var attr_value = model.get(attribute_name);
if (typeof attr_value !== "undefined" && attr_value !== null && attr_value != false) {
element.attr("checked", "checked");
}
else{
element.removeAttr("checked");
}
}
});
};
return methods;
})(Backbone);
// ----------------------------
// Data-Bind Binding Methods
// ----------------------------
DataBindBinding = (function(Backbone, _, $){
var dataBindSubstConfig = {
"default": ""
};
modelBinding.Configuration.dataBindSubst = function(config){
this.storeDataBindSubstConfig();
_.extend(dataBindSubstConfig, config);
};
modelBinding.Configuration.storeDataBindSubstConfig = function(){
modelBinding.Configuration._dataBindSubstConfig = _.clone(dataBindSubstConfig);
};
modelBinding.Configuration.restoreDataBindSubstConfig = function(){
if (modelBinding.Configuration._dataBindSubstConfig){
dataBindSubstConfig = modelBinding.Configuration._dataBindSubstConfig;
delete modelBinding.Configuration._dataBindSubstConfig;
}
};
modelBinding.Configuration.getDataBindSubst = function(elementType, value){
var returnValue = value;
if (value === undefined){
if (dataBindSubstConfig.hasOwnProperty(elementType)){
returnValue = dataBindSubstConfig[elementType];
} else {
returnValue = dataBindSubstConfig["default"];
}
}
return returnValue;
};
setOnElement = function(element, attr, val){
var valBefore = val;
val = modelBinding.Configuration.getDataBindSubst(attr, val);
switch(attr){
case "html":
element.html(val);
break;
case "text":
element.text(val);
break;
case "enabled":
element.attr("disabled", !val);
break;
case "displayed":
element[val? "show" : "hide"]();
break;
case "hidden":
element[val? "hide" : "show"]();
break;
default:
element.attr(attr, val);
}
};
splitBindingAttr = function(element)
{
var dataBindConfigList = [];
var databindList = element.attr("data-bind").split(";");
_.each(databindList, function(attrbind){
var databind = $.trim(attrbind).split(" ");
// make the default special case "text" if none specified
if( databind.length == 1 ) databind.unshift("text");
dataBindConfigList.push({
elementAttr: databind[0],
modelAttr: databind[1]
});
});
return dataBindConfigList;
};
var methods = {};
methods.bind = function(selector, view, model, config){
var modelBinder = this;
view.$(selector).each(function(index){
var element = view.$(this);
var databindList = splitBindingAttr(element);
_.each(databindList, function(databind){
var modelChange = function(model, val){
setOnElement(element, databind.elementAttr, val);
};
modelBinder.registerModelBinding(model, databind.modelAttr, modelChange);
// set default on data-bind element
setOnElement(element, databind.elementAttr, model.get(databind.modelAttr));
});
});
};
return methods;
})(Backbone, _, $);
// ----------------------------
// Binding Conventions
// ----------------------------
modelBinding.Conventions = {
text: {selector: "input:text", handler: StandardBinding},
textarea: {selector: "textarea", handler: StandardBinding},
password: {selector: "input:password", handler: StandardBinding},
radio: {selector: "input:radio", handler: RadioGroupBinding},
checkbox: {selector: "input:checkbox", handler: CheckboxBinding},
select: {selector: "select", handler: SelectBoxBinding},
databind: { selector: "*[data-bind]", handler: DataBindBinding}
};
return modelBinding;
})(Backbone, _, jQuery);