|
1 // Backbone.js 1.2.2 |
|
2 |
|
3 // (c) 2010-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors |
|
4 // Backbone may be freely distributed under the MIT license. |
|
5 // For all details and documentation: |
|
6 // http://backbonejs.org |
|
7 |
|
8 (function(factory) { |
|
9 |
|
10 // Establish the root object, `window` (`self`) in the browser, or `global` on the server. |
|
11 // We use `self` instead of `window` for `WebWorker` support. |
|
12 var root = (typeof self == 'object' && self.self == self && self) || |
|
13 (typeof global == 'object' && global.global == global && global); |
|
14 |
|
15 // Set up Backbone appropriately for the environment. Start with AMD. |
|
16 if (typeof define === 'function' && define.amd) { |
|
17 define(['underscore', 'jquery', 'exports'], function(_, $, exports) { |
|
18 // Export global even in AMD case in case this script is loaded with |
|
19 // others that may still expect a global Backbone. |
|
20 root.Backbone = factory(root, exports, _, $); |
|
21 }); |
|
22 |
|
23 // Next for Node.js or CommonJS. jQuery may not be needed as a module. |
|
24 } else if (typeof exports !== 'undefined') { |
|
25 var _ = require('underscore'), $; |
|
26 try { $ = require('jquery'); } catch(e) {} |
|
27 factory(root, exports, _, $); |
|
28 |
|
29 // Finally, as a browser global. |
|
30 } else { |
|
31 root.Backbone = factory(root, {}, root._, (root.jQuery || root.Zepto || root.ender || root.$)); |
|
32 } |
|
33 |
|
34 }(function(root, Backbone, _, $) { |
|
35 |
|
36 // Initial Setup |
|
37 // ------------- |
|
38 |
|
39 // Save the previous value of the `Backbone` variable, so that it can be |
|
40 // restored later on, if `noConflict` is used. |
|
41 var previousBackbone = root.Backbone; |
|
42 |
|
43 // Create a local reference to a common array method we'll want to use later. |
|
44 var slice = Array.prototype.slice; |
|
45 |
|
46 // Current version of the library. Keep in sync with `package.json`. |
|
47 Backbone.VERSION = '1.2.2'; |
|
48 |
|
49 // For Backbone's purposes, jQuery, Zepto, Ender, or My Library (kidding) owns |
|
50 // the `$` variable. |
|
51 Backbone.$ = $; |
|
52 |
|
53 // Runs Backbone.js in *noConflict* mode, returning the `Backbone` variable |
|
54 // to its previous owner. Returns a reference to this Backbone object. |
|
55 Backbone.noConflict = function() { |
|
56 root.Backbone = previousBackbone; |
|
57 return this; |
|
58 }; |
|
59 |
|
60 // Turn on `emulateHTTP` to support legacy HTTP servers. Setting this option |
|
61 // will fake `"PATCH"`, `"PUT"` and `"DELETE"` requests via the `_method` parameter and |
|
62 // set a `X-Http-Method-Override` header. |
|
63 Backbone.emulateHTTP = false; |
|
64 |
|
65 // Turn on `emulateJSON` to support legacy servers that can't deal with direct |
|
66 // `application/json` requests ... this will encode the body as |
|
67 // `application/x-www-form-urlencoded` instead and will send the model in a |
|
68 // form param named `model`. |
|
69 Backbone.emulateJSON = false; |
|
70 |
|
71 // Proxy Backbone class methods to Underscore functions, wrapping the model's |
|
72 // `attributes` object or collection's `models` array behind the scenes. |
|
73 // |
|
74 // collection.filter(function(model) { return model.get('age') > 10 }); |
|
75 // collection.each(this.addView); |
|
76 // |
|
77 // `Function#apply` can be slow so we use the method's arg count, if we know it. |
|
78 var addMethod = function(length, method, attribute) { |
|
79 switch (length) { |
|
80 case 1: return function() { |
|
81 return _[method](this[attribute]); |
|
82 }; |
|
83 case 2: return function(value) { |
|
84 return _[method](this[attribute], value); |
|
85 }; |
|
86 case 3: return function(iteratee, context) { |
|
87 return _[method](this[attribute], cb(iteratee, this), context); |
|
88 }; |
|
89 case 4: return function(iteratee, defaultVal, context) { |
|
90 return _[method](this[attribute], cb(iteratee, this), defaultVal, context); |
|
91 }; |
|
92 default: return function() { |
|
93 var args = slice.call(arguments); |
|
94 args.unshift(this[attribute]); |
|
95 return _[method].apply(_, args); |
|
96 }; |
|
97 } |
|
98 }; |
|
99 var addUnderscoreMethods = function(Class, methods, attribute) { |
|
100 _.each(methods, function(length, method) { |
|
101 if (_[method]) Class.prototype[method] = addMethod(length, method, attribute); |
|
102 }); |
|
103 }; |
|
104 |
|
105 // Support `collection.sortBy('attr')` and `collection.findWhere({id: 1})`. |
|
106 var cb = function(iteratee, instance) { |
|
107 if (_.isFunction(iteratee)) return iteratee; |
|
108 if (_.isObject(iteratee) && !instance._isModel(iteratee)) return modelMatcher(iteratee); |
|
109 if (_.isString(iteratee)) return function(model) { return model.get(iteratee); }; |
|
110 return iteratee; |
|
111 }; |
|
112 var modelMatcher = function(attrs) { |
|
113 var matcher = _.matches(attrs); |
|
114 return function(model) { |
|
115 return matcher(model.attributes); |
|
116 }; |
|
117 }; |
|
118 |
|
119 // Backbone.Events |
|
120 // --------------- |
|
121 |
|
122 // A module that can be mixed in to *any object* in order to provide it with |
|
123 // a custom event channel. You may bind a callback to an event with `on` or |
|
124 // remove with `off`; `trigger`-ing an event fires all callbacks in |
|
125 // succession. |
|
126 // |
|
127 // var object = {}; |
|
128 // _.extend(object, Backbone.Events); |
|
129 // object.on('expand', function(){ alert('expanded'); }); |
|
130 // object.trigger('expand'); |
|
131 // |
|
132 var Events = Backbone.Events = {}; |
|
133 |
|
134 // Regular expression used to split event strings. |
|
135 var eventSplitter = /\s+/; |
|
136 |
|
137 // Iterates over the standard `event, callback` (as well as the fancy multiple |
|
138 // space-separated events `"change blur", callback` and jQuery-style event |
|
139 // maps `{event: callback}`). |
|
140 var eventsApi = function(iteratee, events, name, callback, opts) { |
|
141 var i = 0, names; |
|
142 if (name && typeof name === 'object') { |
|
143 // Handle event maps. |
|
144 if (callback !== void 0 && 'context' in opts && opts.context === void 0) opts.context = callback; |
|
145 for (names = _.keys(name); i < names.length ; i++) { |
|
146 events = eventsApi(iteratee, events, names[i], name[names[i]], opts); |
|
147 } |
|
148 } else if (name && eventSplitter.test(name)) { |
|
149 // Handle space separated event names by delegating them individually. |
|
150 for (names = name.split(eventSplitter); i < names.length; i++) { |
|
151 events = iteratee(events, names[i], callback, opts); |
|
152 } |
|
153 } else { |
|
154 // Finally, standard events. |
|
155 events = iteratee(events, name, callback, opts); |
|
156 } |
|
157 return events; |
|
158 }; |
|
159 |
|
160 // Bind an event to a `callback` function. Passing `"all"` will bind |
|
161 // the callback to all events fired. |
|
162 Events.on = function(name, callback, context) { |
|
163 return internalOn(this, name, callback, context); |
|
164 }; |
|
165 |
|
166 // Guard the `listening` argument from the public API. |
|
167 var internalOn = function(obj, name, callback, context, listening) { |
|
168 obj._events = eventsApi(onApi, obj._events || {}, name, callback, { |
|
169 context: context, |
|
170 ctx: obj, |
|
171 listening: listening |
|
172 }); |
|
173 |
|
174 if (listening) { |
|
175 var listeners = obj._listeners || (obj._listeners = {}); |
|
176 listeners[listening.id] = listening; |
|
177 } |
|
178 |
|
179 return obj; |
|
180 }; |
|
181 |
|
182 // Inversion-of-control versions of `on`. Tell *this* object to listen to |
|
183 // an event in another object... keeping track of what it's listening to |
|
184 // for easier unbinding later. |
|
185 Events.listenTo = function(obj, name, callback) { |
|
186 if (!obj) return this; |
|
187 var id = obj._listenId || (obj._listenId = _.uniqueId('l')); |
|
188 var listeningTo = this._listeningTo || (this._listeningTo = {}); |
|
189 var listening = listeningTo[id]; |
|
190 |
|
191 // This object is not listening to any other events on `obj` yet. |
|
192 // Setup the necessary references to track the listening callbacks. |
|
193 if (!listening) { |
|
194 var thisId = this._listenId || (this._listenId = _.uniqueId('l')); |
|
195 listening = listeningTo[id] = {obj: obj, objId: id, id: thisId, listeningTo: listeningTo, count: 0}; |
|
196 } |
|
197 |
|
198 // Bind callbacks on obj, and keep track of them on listening. |
|
199 internalOn(obj, name, callback, this, listening); |
|
200 return this; |
|
201 }; |
|
202 |
|
203 // The reducing API that adds a callback to the `events` object. |
|
204 var onApi = function(events, name, callback, options) { |
|
205 if (callback) { |
|
206 var handlers = events[name] || (events[name] = []); |
|
207 var context = options.context, ctx = options.ctx, listening = options.listening; |
|
208 if (listening) listening.count++; |
|
209 |
|
210 handlers.push({ callback: callback, context: context, ctx: context || ctx, listening: listening }); |
|
211 } |
|
212 return events; |
|
213 }; |
|
214 |
|
215 // Remove one or many callbacks. If `context` is null, removes all |
|
216 // callbacks with that function. If `callback` is null, removes all |
|
217 // callbacks for the event. If `name` is null, removes all bound |
|
218 // callbacks for all events. |
|
219 Events.off = function(name, callback, context) { |
|
220 if (!this._events) return this; |
|
221 this._events = eventsApi(offApi, this._events, name, callback, { |
|
222 context: context, |
|
223 listeners: this._listeners |
|
224 }); |
|
225 return this; |
|
226 }; |
|
227 |
|
228 // Tell this object to stop listening to either specific events ... or |
|
229 // to every object it's currently listening to. |
|
230 Events.stopListening = function(obj, name, callback) { |
|
231 var listeningTo = this._listeningTo; |
|
232 if (!listeningTo) return this; |
|
233 |
|
234 var ids = obj ? [obj._listenId] : _.keys(listeningTo); |
|
235 |
|
236 for (var i = 0; i < ids.length; i++) { |
|
237 var listening = listeningTo[ids[i]]; |
|
238 |
|
239 // If listening doesn't exist, this object is not currently |
|
240 // listening to obj. Break out early. |
|
241 if (!listening) break; |
|
242 |
|
243 listening.obj.off(name, callback, this); |
|
244 } |
|
245 if (_.isEmpty(listeningTo)) this._listeningTo = void 0; |
|
246 |
|
247 return this; |
|
248 }; |
|
249 |
|
250 // The reducing API that removes a callback from the `events` object. |
|
251 var offApi = function(events, name, callback, options) { |
|
252 if (!events) return; |
|
253 |
|
254 var i = 0, listening; |
|
255 var context = options.context, listeners = options.listeners; |
|
256 |
|
257 // Delete all events listeners and "drop" events. |
|
258 if (!name && !callback && !context) { |
|
259 var ids = _.keys(listeners); |
|
260 for (; i < ids.length; i++) { |
|
261 listening = listeners[ids[i]]; |
|
262 delete listeners[listening.id]; |
|
263 delete listening.listeningTo[listening.objId]; |
|
264 } |
|
265 return; |
|
266 } |
|
267 |
|
268 var names = name ? [name] : _.keys(events); |
|
269 for (; i < names.length; i++) { |
|
270 name = names[i]; |
|
271 var handlers = events[name]; |
|
272 |
|
273 // Bail out if there are no events stored. |
|
274 if (!handlers) break; |
|
275 |
|
276 // Replace events if there are any remaining. Otherwise, clean up. |
|
277 var remaining = []; |
|
278 for (var j = 0; j < handlers.length; j++) { |
|
279 var handler = handlers[j]; |
|
280 if ( |
|
281 callback && callback !== handler.callback && |
|
282 callback !== handler.callback._callback || |
|
283 context && context !== handler.context |
|
284 ) { |
|
285 remaining.push(handler); |
|
286 } else { |
|
287 listening = handler.listening; |
|
288 if (listening && --listening.count === 0) { |
|
289 delete listeners[listening.id]; |
|
290 delete listening.listeningTo[listening.objId]; |
|
291 } |
|
292 } |
|
293 } |
|
294 |
|
295 // Update tail event if the list has any events. Otherwise, clean up. |
|
296 if (remaining.length) { |
|
297 events[name] = remaining; |
|
298 } else { |
|
299 delete events[name]; |
|
300 } |
|
301 } |
|
302 if (_.size(events)) return events; |
|
303 }; |
|
304 |
|
305 // Bind an event to only be triggered a single time. After the first time |
|
306 // the callback is invoked, its listener will be removed. If multiple events |
|
307 // are passed in using the space-separated syntax, the handler will fire |
|
308 // once for each event, not once for a combination of all events. |
|
309 Events.once = function(name, callback, context) { |
|
310 // Map the event into a `{event: once}` object. |
|
311 var events = eventsApi(onceMap, {}, name, callback, _.bind(this.off, this)); |
|
312 return this.on(events, void 0, context); |
|
313 }; |
|
314 |
|
315 // Inversion-of-control versions of `once`. |
|
316 Events.listenToOnce = function(obj, name, callback) { |
|
317 // Map the event into a `{event: once}` object. |
|
318 var events = eventsApi(onceMap, {}, name, callback, _.bind(this.stopListening, this, obj)); |
|
319 return this.listenTo(obj, events); |
|
320 }; |
|
321 |
|
322 // Reduces the event callbacks into a map of `{event: onceWrapper}`. |
|
323 // `offer` unbinds the `onceWrapper` after it has been called. |
|
324 var onceMap = function(map, name, callback, offer) { |
|
325 if (callback) { |
|
326 var once = map[name] = _.once(function() { |
|
327 offer(name, once); |
|
328 callback.apply(this, arguments); |
|
329 }); |
|
330 once._callback = callback; |
|
331 } |
|
332 return map; |
|
333 }; |
|
334 |
|
335 // Trigger one or many events, firing all bound callbacks. Callbacks are |
|
336 // passed the same arguments as `trigger` is, apart from the event name |
|
337 // (unless you're listening on `"all"`, which will cause your callback to |
|
338 // receive the true name of the event as the first argument). |
|
339 Events.trigger = function(name) { |
|
340 if (!this._events) return this; |
|
341 |
|
342 var length = Math.max(0, arguments.length - 1); |
|
343 var args = Array(length); |
|
344 for (var i = 0; i < length; i++) args[i] = arguments[i + 1]; |
|
345 |
|
346 eventsApi(triggerApi, this._events, name, void 0, args); |
|
347 return this; |
|
348 }; |
|
349 |
|
350 // Handles triggering the appropriate event callbacks. |
|
351 var triggerApi = function(objEvents, name, cb, args) { |
|
352 if (objEvents) { |
|
353 var events = objEvents[name]; |
|
354 var allEvents = objEvents.all; |
|
355 if (events && allEvents) allEvents = allEvents.slice(); |
|
356 if (events) triggerEvents(events, args); |
|
357 if (allEvents) triggerEvents(allEvents, [name].concat(args)); |
|
358 } |
|
359 return objEvents; |
|
360 }; |
|
361 |
|
362 // A difficult-to-believe, but optimized internal dispatch function for |
|
363 // triggering events. Tries to keep the usual cases speedy (most internal |
|
364 // Backbone events have 3 arguments). |
|
365 var triggerEvents = function(events, args) { |
|
366 var ev, i = -1, l = events.length, a1 = args[0], a2 = args[1], a3 = args[2]; |
|
367 switch (args.length) { |
|
368 case 0: while (++i < l) (ev = events[i]).callback.call(ev.ctx); return; |
|
369 case 1: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1); return; |
|
370 case 2: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1, a2); return; |
|
371 case 3: while (++i < l) (ev = events[i]).callback.call(ev.ctx, a1, a2, a3); return; |
|
372 default: while (++i < l) (ev = events[i]).callback.apply(ev.ctx, args); return; |
|
373 } |
|
374 }; |
|
375 |
|
376 // Aliases for backwards compatibility. |
|
377 Events.bind = Events.on; |
|
378 Events.unbind = Events.off; |
|
379 |
|
380 // Allow the `Backbone` object to serve as a global event bus, for folks who |
|
381 // want global "pubsub" in a convenient place. |
|
382 _.extend(Backbone, Events); |
|
383 |
|
384 // Backbone.Model |
|
385 // -------------- |
|
386 |
|
387 // Backbone **Models** are the basic data object in the framework -- |
|
388 // frequently representing a row in a table in a database on your server. |
|
389 // A discrete chunk of data and a bunch of useful, related methods for |
|
390 // performing computations and transformations on that data. |
|
391 |
|
392 // Create a new model with the specified attributes. A client id (`cid`) |
|
393 // is automatically generated and assigned for you. |
|
394 var Model = Backbone.Model = function(attributes, options) { |
|
395 var attrs = attributes || {}; |
|
396 options || (options = {}); |
|
397 this.cid = _.uniqueId(this.cidPrefix); |
|
398 this.attributes = {}; |
|
399 if (options.collection) this.collection = options.collection; |
|
400 if (options.parse) attrs = this.parse(attrs, options) || {}; |
|
401 attrs = _.defaults({}, attrs, _.result(this, 'defaults')); |
|
402 this.set(attrs, options); |
|
403 this.changed = {}; |
|
404 this.initialize.apply(this, arguments); |
|
405 }; |
|
406 |
|
407 // Attach all inheritable methods to the Model prototype. |
|
408 _.extend(Model.prototype, Events, { |
|
409 |
|
410 // A hash of attributes whose current and previous value differ. |
|
411 changed: null, |
|
412 |
|
413 // The value returned during the last failed validation. |
|
414 validationError: null, |
|
415 |
|
416 // The default name for the JSON `id` attribute is `"id"`. MongoDB and |
|
417 // CouchDB users may want to set this to `"_id"`. |
|
418 idAttribute: 'id', |
|
419 |
|
420 // The prefix is used to create the client id which is used to identify models locally. |
|
421 // You may want to override this if you're experiencing name clashes with model ids. |
|
422 cidPrefix: 'c', |
|
423 |
|
424 // Initialize is an empty function by default. Override it with your own |
|
425 // initialization logic. |
|
426 initialize: function(){}, |
|
427 |
|
428 // Return a copy of the model's `attributes` object. |
|
429 toJSON: function(options) { |
|
430 return _.clone(this.attributes); |
|
431 }, |
|
432 |
|
433 // Proxy `Backbone.sync` by default -- but override this if you need |
|
434 // custom syncing semantics for *this* particular model. |
|
435 sync: function() { |
|
436 return Backbone.sync.apply(this, arguments); |
|
437 }, |
|
438 |
|
439 // Get the value of an attribute. |
|
440 get: function(attr) { |
|
441 return this.attributes[attr]; |
|
442 }, |
|
443 |
|
444 // Get the HTML-escaped value of an attribute. |
|
445 escape: function(attr) { |
|
446 return _.escape(this.get(attr)); |
|
447 }, |
|
448 |
|
449 // Returns `true` if the attribute contains a value that is not null |
|
450 // or undefined. |
|
451 has: function(attr) { |
|
452 return this.get(attr) != null; |
|
453 }, |
|
454 |
|
455 // Special-cased proxy to underscore's `_.matches` method. |
|
456 matches: function(attrs) { |
|
457 return !!_.iteratee(attrs, this)(this.attributes); |
|
458 }, |
|
459 |
|
460 // Set a hash of model attributes on the object, firing `"change"`. This is |
|
461 // the core primitive operation of a model, updating the data and notifying |
|
462 // anyone who needs to know about the change in state. The heart of the beast. |
|
463 set: function(key, val, options) { |
|
464 if (key == null) return this; |
|
465 |
|
466 // Handle both `"key", value` and `{key: value}` -style arguments. |
|
467 var attrs; |
|
468 if (typeof key === 'object') { |
|
469 attrs = key; |
|
470 options = val; |
|
471 } else { |
|
472 (attrs = {})[key] = val; |
|
473 } |
|
474 |
|
475 options || (options = {}); |
|
476 |
|
477 // Run validation. |
|
478 if (!this._validate(attrs, options)) return false; |
|
479 |
|
480 // Extract attributes and options. |
|
481 var unset = options.unset; |
|
482 var silent = options.silent; |
|
483 var changes = []; |
|
484 var changing = this._changing; |
|
485 this._changing = true; |
|
486 |
|
487 if (!changing) { |
|
488 this._previousAttributes = _.clone(this.attributes); |
|
489 this.changed = {}; |
|
490 } |
|
491 |
|
492 var current = this.attributes; |
|
493 var changed = this.changed; |
|
494 var prev = this._previousAttributes; |
|
495 |
|
496 // For each `set` attribute, update or delete the current value. |
|
497 for (var attr in attrs) { |
|
498 val = attrs[attr]; |
|
499 if (!_.isEqual(current[attr], val)) changes.push(attr); |
|
500 if (!_.isEqual(prev[attr], val)) { |
|
501 changed[attr] = val; |
|
502 } else { |
|
503 delete changed[attr]; |
|
504 } |
|
505 unset ? delete current[attr] : current[attr] = val; |
|
506 } |
|
507 |
|
508 // Update the `id`. |
|
509 this.id = this.get(this.idAttribute); |
|
510 |
|
511 // Trigger all relevant attribute changes. |
|
512 if (!silent) { |
|
513 if (changes.length) this._pending = options; |
|
514 for (var i = 0; i < changes.length; i++) { |
|
515 this.trigger('change:' + changes[i], this, current[changes[i]], options); |
|
516 } |
|
517 } |
|
518 |
|
519 // You might be wondering why there's a `while` loop here. Changes can |
|
520 // be recursively nested within `"change"` events. |
|
521 if (changing) return this; |
|
522 if (!silent) { |
|
523 while (this._pending) { |
|
524 options = this._pending; |
|
525 this._pending = false; |
|
526 this.trigger('change', this, options); |
|
527 } |
|
528 } |
|
529 this._pending = false; |
|
530 this._changing = false; |
|
531 return this; |
|
532 }, |
|
533 |
|
534 // Remove an attribute from the model, firing `"change"`. `unset` is a noop |
|
535 // if the attribute doesn't exist. |
|
536 unset: function(attr, options) { |
|
537 return this.set(attr, void 0, _.extend({}, options, {unset: true})); |
|
538 }, |
|
539 |
|
540 // Clear all attributes on the model, firing `"change"`. |
|
541 clear: function(options) { |
|
542 var attrs = {}; |
|
543 for (var key in this.attributes) attrs[key] = void 0; |
|
544 return this.set(attrs, _.extend({}, options, {unset: true})); |
|
545 }, |
|
546 |
|
547 // Determine if the model has changed since the last `"change"` event. |
|
548 // If you specify an attribute name, determine if that attribute has changed. |
|
549 hasChanged: function(attr) { |
|
550 if (attr == null) return !_.isEmpty(this.changed); |
|
551 return _.has(this.changed, attr); |
|
552 }, |
|
553 |
|
554 // Return an object containing all the attributes that have changed, or |
|
555 // false if there are no changed attributes. Useful for determining what |
|
556 // parts of a view need to be updated and/or what attributes need to be |
|
557 // persisted to the server. Unset attributes will be set to undefined. |
|
558 // You can also pass an attributes object to diff against the model, |
|
559 // determining if there *would be* a change. |
|
560 changedAttributes: function(diff) { |
|
561 if (!diff) return this.hasChanged() ? _.clone(this.changed) : false; |
|
562 var old = this._changing ? this._previousAttributes : this.attributes; |
|
563 var changed = {}; |
|
564 for (var attr in diff) { |
|
565 var val = diff[attr]; |
|
566 if (_.isEqual(old[attr], val)) continue; |
|
567 changed[attr] = val; |
|
568 } |
|
569 return _.size(changed) ? changed : false; |
|
570 }, |
|
571 |
|
572 // Get the previous value of an attribute, recorded at the time the last |
|
573 // `"change"` event was fired. |
|
574 previous: function(attr) { |
|
575 if (attr == null || !this._previousAttributes) return null; |
|
576 return this._previousAttributes[attr]; |
|
577 }, |
|
578 |
|
579 // Get all of the attributes of the model at the time of the previous |
|
580 // `"change"` event. |
|
581 previousAttributes: function() { |
|
582 return _.clone(this._previousAttributes); |
|
583 }, |
|
584 |
|
585 // Fetch the model from the server, merging the response with the model's |
|
586 // local attributes. Any changed attributes will trigger a "change" event. |
|
587 fetch: function(options) { |
|
588 options = _.extend({parse: true}, options); |
|
589 var model = this; |
|
590 var success = options.success; |
|
591 options.success = function(resp) { |
|
592 var serverAttrs = options.parse ? model.parse(resp, options) : resp; |
|
593 if (!model.set(serverAttrs, options)) return false; |
|
594 if (success) success.call(options.context, model, resp, options); |
|
595 model.trigger('sync', model, resp, options); |
|
596 }; |
|
597 wrapError(this, options); |
|
598 return this.sync('read', this, options); |
|
599 }, |
|
600 |
|
601 // Set a hash of model attributes, and sync the model to the server. |
|
602 // If the server returns an attributes hash that differs, the model's |
|
603 // state will be `set` again. |
|
604 save: function(key, val, options) { |
|
605 // Handle both `"key", value` and `{key: value}` -style arguments. |
|
606 var attrs; |
|
607 if (key == null || typeof key === 'object') { |
|
608 attrs = key; |
|
609 options = val; |
|
610 } else { |
|
611 (attrs = {})[key] = val; |
|
612 } |
|
613 |
|
614 options = _.extend({validate: true, parse: true}, options); |
|
615 var wait = options.wait; |
|
616 |
|
617 // If we're not waiting and attributes exist, save acts as |
|
618 // `set(attr).save(null, opts)` with validation. Otherwise, check if |
|
619 // the model will be valid when the attributes, if any, are set. |
|
620 if (attrs && !wait) { |
|
621 if (!this.set(attrs, options)) return false; |
|
622 } else { |
|
623 if (!this._validate(attrs, options)) return false; |
|
624 } |
|
625 |
|
626 // After a successful server-side save, the client is (optionally) |
|
627 // updated with the server-side state. |
|
628 var model = this; |
|
629 var success = options.success; |
|
630 var attributes = this.attributes; |
|
631 options.success = function(resp) { |
|
632 // Ensure attributes are restored during synchronous saves. |
|
633 model.attributes = attributes; |
|
634 var serverAttrs = options.parse ? model.parse(resp, options) : resp; |
|
635 if (wait) serverAttrs = _.extend({}, attrs, serverAttrs); |
|
636 if (serverAttrs && !model.set(serverAttrs, options)) return false; |
|
637 if (success) success.call(options.context, model, resp, options); |
|
638 model.trigger('sync', model, resp, options); |
|
639 }; |
|
640 wrapError(this, options); |
|
641 |
|
642 // Set temporary attributes if `{wait: true}` to properly find new ids. |
|
643 if (attrs && wait) this.attributes = _.extend({}, attributes, attrs); |
|
644 |
|
645 var method = this.isNew() ? 'create' : (options.patch ? 'patch' : 'update'); |
|
646 if (method === 'patch' && !options.attrs) options.attrs = attrs; |
|
647 var xhr = this.sync(method, this, options); |
|
648 |
|
649 // Restore attributes. |
|
650 this.attributes = attributes; |
|
651 |
|
652 return xhr; |
|
653 }, |
|
654 |
|
655 // Destroy this model on the server if it was already persisted. |
|
656 // Optimistically removes the model from its collection, if it has one. |
|
657 // If `wait: true` is passed, waits for the server to respond before removal. |
|
658 destroy: function(options) { |
|
659 options = options ? _.clone(options) : {}; |
|
660 var model = this; |
|
661 var success = options.success; |
|
662 var wait = options.wait; |
|
663 |
|
664 var destroy = function() { |
|
665 model.stopListening(); |
|
666 model.trigger('destroy', model, model.collection, options); |
|
667 }; |
|
668 |
|
669 options.success = function(resp) { |
|
670 if (wait) destroy(); |
|
671 if (success) success.call(options.context, model, resp, options); |
|
672 if (!model.isNew()) model.trigger('sync', model, resp, options); |
|
673 }; |
|
674 |
|
675 var xhr = false; |
|
676 if (this.isNew()) { |
|
677 _.defer(options.success); |
|
678 } else { |
|
679 wrapError(this, options); |
|
680 xhr = this.sync('delete', this, options); |
|
681 } |
|
682 if (!wait) destroy(); |
|
683 return xhr; |
|
684 }, |
|
685 |
|
686 // Default URL for the model's representation on the server -- if you're |
|
687 // using Backbone's restful methods, override this to change the endpoint |
|
688 // that will be called. |
|
689 url: function() { |
|
690 var base = |
|
691 _.result(this, 'urlRoot') || |
|
692 _.result(this.collection, 'url') || |
|
693 urlError(); |
|
694 if (this.isNew()) return base; |
|
695 var id = this.get(this.idAttribute); |
|
696 return base.replace(/[^\/]$/, '$&/') + encodeURIComponent(id); |
|
697 }, |
|
698 |
|
699 // **parse** converts a response into the hash of attributes to be `set` on |
|
700 // the model. The default implementation is just to pass the response along. |
|
701 parse: function(resp, options) { |
|
702 return resp; |
|
703 }, |
|
704 |
|
705 // Create a new model with identical attributes to this one. |
|
706 clone: function() { |
|
707 return new this.constructor(this.attributes); |
|
708 }, |
|
709 |
|
710 // A model is new if it has never been saved to the server, and lacks an id. |
|
711 isNew: function() { |
|
712 return !this.has(this.idAttribute); |
|
713 }, |
|
714 |
|
715 // Check if the model is currently in a valid state. |
|
716 isValid: function(options) { |
|
717 return this._validate({}, _.defaults({validate: true}, options)); |
|
718 }, |
|
719 |
|
720 // Run validation against the next complete set of model attributes, |
|
721 // returning `true` if all is well. Otherwise, fire an `"invalid"` event. |
|
722 _validate: function(attrs, options) { |
|
723 if (!options.validate || !this.validate) return true; |
|
724 attrs = _.extend({}, this.attributes, attrs); |
|
725 var error = this.validationError = this.validate(attrs, options) || null; |
|
726 if (!error) return true; |
|
727 this.trigger('invalid', this, error, _.extend(options, {validationError: error})); |
|
728 return false; |
|
729 } |
|
730 |
|
731 }); |
|
732 |
|
733 // Underscore methods that we want to implement on the Model, mapped to the |
|
734 // number of arguments they take. |
|
735 var modelMethods = { keys: 1, values: 1, pairs: 1, invert: 1, pick: 0, |
|
736 omit: 0, chain: 1, isEmpty: 1 }; |
|
737 |
|
738 // Mix in each Underscore method as a proxy to `Model#attributes`. |
|
739 addUnderscoreMethods(Model, modelMethods, 'attributes'); |
|
740 |
|
741 // Backbone.Collection |
|
742 // ------------------- |
|
743 |
|
744 // If models tend to represent a single row of data, a Backbone Collection is |
|
745 // more analogous to a table full of data ... or a small slice or page of that |
|
746 // table, or a collection of rows that belong together for a particular reason |
|
747 // -- all of the messages in this particular folder, all of the documents |
|
748 // belonging to this particular author, and so on. Collections maintain |
|
749 // indexes of their models, both in order, and for lookup by `id`. |
|
750 |
|
751 // Create a new **Collection**, perhaps to contain a specific type of `model`. |
|
752 // If a `comparator` is specified, the Collection will maintain |
|
753 // its models in sort order, as they're added and removed. |
|
754 var Collection = Backbone.Collection = function(models, options) { |
|
755 options || (options = {}); |
|
756 if (options.model) this.model = options.model; |
|
757 if (options.comparator !== void 0) this.comparator = options.comparator; |
|
758 this._reset(); |
|
759 this.initialize.apply(this, arguments); |
|
760 if (models) this.reset(models, _.extend({silent: true}, options)); |
|
761 }; |
|
762 |
|
763 // Default options for `Collection#set`. |
|
764 var setOptions = {add: true, remove: true, merge: true}; |
|
765 var addOptions = {add: true, remove: false}; |
|
766 |
|
767 // Splices `insert` into `array` at index `at`. |
|
768 var splice = function(array, insert, at) { |
|
769 var tail = Array(array.length - at); |
|
770 var length = insert.length; |
|
771 for (var i = 0; i < tail.length; i++) tail[i] = array[i + at]; |
|
772 for (i = 0; i < length; i++) array[i + at] = insert[i]; |
|
773 for (i = 0; i < tail.length; i++) array[i + length + at] = tail[i]; |
|
774 }; |
|
775 |
|
776 // Define the Collection's inheritable methods. |
|
777 _.extend(Collection.prototype, Events, { |
|
778 |
|
779 // The default model for a collection is just a **Backbone.Model**. |
|
780 // This should be overridden in most cases. |
|
781 model: Model, |
|
782 |
|
783 // Initialize is an empty function by default. Override it with your own |
|
784 // initialization logic. |
|
785 initialize: function(){}, |
|
786 |
|
787 // The JSON representation of a Collection is an array of the |
|
788 // models' attributes. |
|
789 toJSON: function(options) { |
|
790 return this.map(function(model) { return model.toJSON(options); }); |
|
791 }, |
|
792 |
|
793 // Proxy `Backbone.sync` by default. |
|
794 sync: function() { |
|
795 return Backbone.sync.apply(this, arguments); |
|
796 }, |
|
797 |
|
798 // Add a model, or list of models to the set. `models` may be Backbone |
|
799 // Models or raw JavaScript objects to be converted to Models, or any |
|
800 // combination of the two. |
|
801 add: function(models, options) { |
|
802 return this.set(models, _.extend({merge: false}, options, addOptions)); |
|
803 }, |
|
804 |
|
805 // Remove a model, or a list of models from the set. |
|
806 remove: function(models, options) { |
|
807 options = _.extend({}, options); |
|
808 var singular = !_.isArray(models); |
|
809 models = singular ? [models] : _.clone(models); |
|
810 var removed = this._removeModels(models, options); |
|
811 if (!options.silent && removed) this.trigger('update', this, options); |
|
812 return singular ? removed[0] : removed; |
|
813 }, |
|
814 |
|
815 // Update a collection by `set`-ing a new list of models, adding new ones, |
|
816 // removing models that are no longer present, and merging models that |
|
817 // already exist in the collection, as necessary. Similar to **Model#set**, |
|
818 // the core operation for updating the data contained by the collection. |
|
819 set: function(models, options) { |
|
820 if (models == null) return; |
|
821 |
|
822 options = _.defaults({}, options, setOptions); |
|
823 if (options.parse && !this._isModel(models)) models = this.parse(models, options); |
|
824 |
|
825 var singular = !_.isArray(models); |
|
826 models = singular ? [models] : models.slice(); |
|
827 |
|
828 var at = options.at; |
|
829 if (at != null) at = +at; |
|
830 if (at < 0) at += this.length + 1; |
|
831 |
|
832 var set = []; |
|
833 var toAdd = []; |
|
834 var toRemove = []; |
|
835 var modelMap = {}; |
|
836 |
|
837 var add = options.add; |
|
838 var merge = options.merge; |
|
839 var remove = options.remove; |
|
840 |
|
841 var sort = false; |
|
842 var sortable = this.comparator && (at == null) && options.sort !== false; |
|
843 var sortAttr = _.isString(this.comparator) ? this.comparator : null; |
|
844 |
|
845 // Turn bare objects into model references, and prevent invalid models |
|
846 // from being added. |
|
847 var model; |
|
848 for (var i = 0; i < models.length; i++) { |
|
849 model = models[i]; |
|
850 |
|
851 // If a duplicate is found, prevent it from being added and |
|
852 // optionally merge it into the existing model. |
|
853 var existing = this.get(model); |
|
854 if (existing) { |
|
855 if (merge && model !== existing) { |
|
856 var attrs = this._isModel(model) ? model.attributes : model; |
|
857 if (options.parse) attrs = existing.parse(attrs, options); |
|
858 existing.set(attrs, options); |
|
859 if (sortable && !sort) sort = existing.hasChanged(sortAttr); |
|
860 } |
|
861 if (!modelMap[existing.cid]) { |
|
862 modelMap[existing.cid] = true; |
|
863 set.push(existing); |
|
864 } |
|
865 models[i] = existing; |
|
866 |
|
867 // If this is a new, valid model, push it to the `toAdd` list. |
|
868 } else if (add) { |
|
869 model = models[i] = this._prepareModel(model, options); |
|
870 if (model) { |
|
871 toAdd.push(model); |
|
872 this._addReference(model, options); |
|
873 modelMap[model.cid] = true; |
|
874 set.push(model); |
|
875 } |
|
876 } |
|
877 } |
|
878 |
|
879 // Remove stale models. |
|
880 if (remove) { |
|
881 for (i = 0; i < this.length; i++) { |
|
882 model = this.models[i]; |
|
883 if (!modelMap[model.cid]) toRemove.push(model); |
|
884 } |
|
885 if (toRemove.length) this._removeModels(toRemove, options); |
|
886 } |
|
887 |
|
888 // See if sorting is needed, update `length` and splice in new models. |
|
889 var orderChanged = false; |
|
890 var replace = !sortable && add && remove; |
|
891 if (set.length && replace) { |
|
892 orderChanged = this.length != set.length || _.some(this.models, function(model, index) { |
|
893 return model !== set[index]; |
|
894 }); |
|
895 this.models.length = 0; |
|
896 splice(this.models, set, 0); |
|
897 this.length = this.models.length; |
|
898 } else if (toAdd.length) { |
|
899 if (sortable) sort = true; |
|
900 splice(this.models, toAdd, at == null ? this.length : at); |
|
901 this.length = this.models.length; |
|
902 } |
|
903 |
|
904 // Silently sort the collection if appropriate. |
|
905 if (sort) this.sort({silent: true}); |
|
906 |
|
907 // Unless silenced, it's time to fire all appropriate add/sort events. |
|
908 if (!options.silent) { |
|
909 for (i = 0; i < toAdd.length; i++) { |
|
910 if (at != null) options.index = at + i; |
|
911 model = toAdd[i]; |
|
912 model.trigger('add', model, this, options); |
|
913 } |
|
914 if (sort || orderChanged) this.trigger('sort', this, options); |
|
915 if (toAdd.length || toRemove.length) this.trigger('update', this, options); |
|
916 } |
|
917 |
|
918 // Return the added (or merged) model (or models). |
|
919 return singular ? models[0] : models; |
|
920 }, |
|
921 |
|
922 // When you have more items than you want to add or remove individually, |
|
923 // you can reset the entire set with a new list of models, without firing |
|
924 // any granular `add` or `remove` events. Fires `reset` when finished. |
|
925 // Useful for bulk operations and optimizations. |
|
926 reset: function(models, options) { |
|
927 options = options ? _.clone(options) : {}; |
|
928 for (var i = 0; i < this.models.length; i++) { |
|
929 this._removeReference(this.models[i], options); |
|
930 } |
|
931 options.previousModels = this.models; |
|
932 this._reset(); |
|
933 models = this.add(models, _.extend({silent: true}, options)); |
|
934 if (!options.silent) this.trigger('reset', this, options); |
|
935 return models; |
|
936 }, |
|
937 |
|
938 // Add a model to the end of the collection. |
|
939 push: function(model, options) { |
|
940 return this.add(model, _.extend({at: this.length}, options)); |
|
941 }, |
|
942 |
|
943 // Remove a model from the end of the collection. |
|
944 pop: function(options) { |
|
945 var model = this.at(this.length - 1); |
|
946 return this.remove(model, options); |
|
947 }, |
|
948 |
|
949 // Add a model to the beginning of the collection. |
|
950 unshift: function(model, options) { |
|
951 return this.add(model, _.extend({at: 0}, options)); |
|
952 }, |
|
953 |
|
954 // Remove a model from the beginning of the collection. |
|
955 shift: function(options) { |
|
956 var model = this.at(0); |
|
957 return this.remove(model, options); |
|
958 }, |
|
959 |
|
960 // Slice out a sub-array of models from the collection. |
|
961 slice: function() { |
|
962 return slice.apply(this.models, arguments); |
|
963 }, |
|
964 |
|
965 // Get a model from the set by id. |
|
966 get: function(obj) { |
|
967 if (obj == null) return void 0; |
|
968 var id = this.modelId(this._isModel(obj) ? obj.attributes : obj); |
|
969 return this._byId[obj] || this._byId[id] || this._byId[obj.cid]; |
|
970 }, |
|
971 |
|
972 // Get the model at the given index. |
|
973 at: function(index) { |
|
974 if (index < 0) index += this.length; |
|
975 return this.models[index]; |
|
976 }, |
|
977 |
|
978 // Return models with matching attributes. Useful for simple cases of |
|
979 // `filter`. |
|
980 where: function(attrs, first) { |
|
981 return this[first ? 'find' : 'filter'](attrs); |
|
982 }, |
|
983 |
|
984 // Return the first model with matching attributes. Useful for simple cases |
|
985 // of `find`. |
|
986 findWhere: function(attrs) { |
|
987 return this.where(attrs, true); |
|
988 }, |
|
989 |
|
990 // Force the collection to re-sort itself. You don't need to call this under |
|
991 // normal circumstances, as the set will maintain sort order as each item |
|
992 // is added. |
|
993 sort: function(options) { |
|
994 var comparator = this.comparator; |
|
995 if (!comparator) throw new Error('Cannot sort a set without a comparator'); |
|
996 options || (options = {}); |
|
997 |
|
998 var length = comparator.length; |
|
999 if (_.isFunction(comparator)) comparator = _.bind(comparator, this); |
|
1000 |
|
1001 // Run sort based on type of `comparator`. |
|
1002 if (length === 1 || _.isString(comparator)) { |
|
1003 this.models = this.sortBy(comparator); |
|
1004 } else { |
|
1005 this.models.sort(comparator); |
|
1006 } |
|
1007 if (!options.silent) this.trigger('sort', this, options); |
|
1008 return this; |
|
1009 }, |
|
1010 |
|
1011 // Pluck an attribute from each model in the collection. |
|
1012 pluck: function(attr) { |
|
1013 return _.invoke(this.models, 'get', attr); |
|
1014 }, |
|
1015 |
|
1016 // Fetch the default set of models for this collection, resetting the |
|
1017 // collection when they arrive. If `reset: true` is passed, the response |
|
1018 // data will be passed through the `reset` method instead of `set`. |
|
1019 fetch: function(options) { |
|
1020 options = _.extend({parse: true}, options); |
|
1021 var success = options.success; |
|
1022 var collection = this; |
|
1023 options.success = function(resp) { |
|
1024 var method = options.reset ? 'reset' : 'set'; |
|
1025 collection[method](resp, options); |
|
1026 if (success) success.call(options.context, collection, resp, options); |
|
1027 collection.trigger('sync', collection, resp, options); |
|
1028 }; |
|
1029 wrapError(this, options); |
|
1030 return this.sync('read', this, options); |
|
1031 }, |
|
1032 |
|
1033 // Create a new instance of a model in this collection. Add the model to the |
|
1034 // collection immediately, unless `wait: true` is passed, in which case we |
|
1035 // wait for the server to agree. |
|
1036 create: function(model, options) { |
|
1037 options = options ? _.clone(options) : {}; |
|
1038 var wait = options.wait; |
|
1039 model = this._prepareModel(model, options); |
|
1040 if (!model) return false; |
|
1041 if (!wait) this.add(model, options); |
|
1042 var collection = this; |
|
1043 var success = options.success; |
|
1044 options.success = function(model, resp, callbackOpts) { |
|
1045 if (wait) collection.add(model, callbackOpts); |
|
1046 if (success) success.call(callbackOpts.context, model, resp, callbackOpts); |
|
1047 }; |
|
1048 model.save(null, options); |
|
1049 return model; |
|
1050 }, |
|
1051 |
|
1052 // **parse** converts a response into a list of models to be added to the |
|
1053 // collection. The default implementation is just to pass it through. |
|
1054 parse: function(resp, options) { |
|
1055 return resp; |
|
1056 }, |
|
1057 |
|
1058 // Create a new collection with an identical list of models as this one. |
|
1059 clone: function() { |
|
1060 return new this.constructor(this.models, { |
|
1061 model: this.model, |
|
1062 comparator: this.comparator |
|
1063 }); |
|
1064 }, |
|
1065 |
|
1066 // Define how to uniquely identify models in the collection. |
|
1067 modelId: function (attrs) { |
|
1068 return attrs[this.model.prototype.idAttribute || 'id']; |
|
1069 }, |
|
1070 |
|
1071 // Private method to reset all internal state. Called when the collection |
|
1072 // is first initialized or reset. |
|
1073 _reset: function() { |
|
1074 this.length = 0; |
|
1075 this.models = []; |
|
1076 this._byId = {}; |
|
1077 }, |
|
1078 |
|
1079 // Prepare a hash of attributes (or other model) to be added to this |
|
1080 // collection. |
|
1081 _prepareModel: function(attrs, options) { |
|
1082 if (this._isModel(attrs)) { |
|
1083 if (!attrs.collection) attrs.collection = this; |
|
1084 return attrs; |
|
1085 } |
|
1086 options = options ? _.clone(options) : {}; |
|
1087 options.collection = this; |
|
1088 var model = new this.model(attrs, options); |
|
1089 if (!model.validationError) return model; |
|
1090 this.trigger('invalid', this, model.validationError, options); |
|
1091 return false; |
|
1092 }, |
|
1093 |
|
1094 // Internal method called by both remove and set. |
|
1095 _removeModels: function(models, options) { |
|
1096 var removed = []; |
|
1097 for (var i = 0; i < models.length; i++) { |
|
1098 var model = this.get(models[i]); |
|
1099 if (!model) continue; |
|
1100 |
|
1101 var index = this.indexOf(model); |
|
1102 this.models.splice(index, 1); |
|
1103 this.length--; |
|
1104 |
|
1105 if (!options.silent) { |
|
1106 options.index = index; |
|
1107 model.trigger('remove', model, this, options); |
|
1108 } |
|
1109 |
|
1110 removed.push(model); |
|
1111 this._removeReference(model, options); |
|
1112 } |
|
1113 return removed.length ? removed : false; |
|
1114 }, |
|
1115 |
|
1116 // Method for checking whether an object should be considered a model for |
|
1117 // the purposes of adding to the collection. |
|
1118 _isModel: function (model) { |
|
1119 return model instanceof Model; |
|
1120 }, |
|
1121 |
|
1122 // Internal method to create a model's ties to a collection. |
|
1123 _addReference: function(model, options) { |
|
1124 this._byId[model.cid] = model; |
|
1125 var id = this.modelId(model.attributes); |
|
1126 if (id != null) this._byId[id] = model; |
|
1127 model.on('all', this._onModelEvent, this); |
|
1128 }, |
|
1129 |
|
1130 // Internal method to sever a model's ties to a collection. |
|
1131 _removeReference: function(model, options) { |
|
1132 delete this._byId[model.cid]; |
|
1133 var id = this.modelId(model.attributes); |
|
1134 if (id != null) delete this._byId[id]; |
|
1135 if (this === model.collection) delete model.collection; |
|
1136 model.off('all', this._onModelEvent, this); |
|
1137 }, |
|
1138 |
|
1139 // Internal method called every time a model in the set fires an event. |
|
1140 // Sets need to update their indexes when models change ids. All other |
|
1141 // events simply proxy through. "add" and "remove" events that originate |
|
1142 // in other collections are ignored. |
|
1143 _onModelEvent: function(event, model, collection, options) { |
|
1144 if ((event === 'add' || event === 'remove') && collection !== this) return; |
|
1145 if (event === 'destroy') this.remove(model, options); |
|
1146 if (event === 'change') { |
|
1147 var prevId = this.modelId(model.previousAttributes()); |
|
1148 var id = this.modelId(model.attributes); |
|
1149 if (prevId !== id) { |
|
1150 if (prevId != null) delete this._byId[prevId]; |
|
1151 if (id != null) this._byId[id] = model; |
|
1152 } |
|
1153 } |
|
1154 this.trigger.apply(this, arguments); |
|
1155 } |
|
1156 |
|
1157 }); |
|
1158 |
|
1159 // Underscore methods that we want to implement on the Collection. |
|
1160 // 90% of the core usefulness of Backbone Collections is actually implemented |
|
1161 // right here: |
|
1162 var collectionMethods = { forEach: 3, each: 3, map: 3, collect: 3, reduce: 4, |
|
1163 foldl: 4, inject: 4, reduceRight: 4, foldr: 4, find: 3, detect: 3, filter: 3, |
|
1164 select: 3, reject: 3, every: 3, all: 3, some: 3, any: 3, include: 3, includes: 3, |
|
1165 contains: 3, invoke: 0, max: 3, min: 3, toArray: 1, size: 1, first: 3, |
|
1166 head: 3, take: 3, initial: 3, rest: 3, tail: 3, drop: 3, last: 3, |
|
1167 without: 0, difference: 0, indexOf: 3, shuffle: 1, lastIndexOf: 3, |
|
1168 isEmpty: 1, chain: 1, sample: 3, partition: 3, groupBy: 3, countBy: 3, |
|
1169 sortBy: 3, indexBy: 3}; |
|
1170 |
|
1171 // Mix in each Underscore method as a proxy to `Collection#models`. |
|
1172 addUnderscoreMethods(Collection, collectionMethods, 'models'); |
|
1173 |
|
1174 // Backbone.View |
|
1175 // ------------- |
|
1176 |
|
1177 // Backbone Views are almost more convention than they are actual code. A View |
|
1178 // is simply a JavaScript object that represents a logical chunk of UI in the |
|
1179 // DOM. This might be a single item, an entire list, a sidebar or panel, or |
|
1180 // even the surrounding frame which wraps your whole app. Defining a chunk of |
|
1181 // UI as a **View** allows you to define your DOM events declaratively, without |
|
1182 // having to worry about render order ... and makes it easy for the view to |
|
1183 // react to specific changes in the state of your models. |
|
1184 |
|
1185 // Creating a Backbone.View creates its initial element outside of the DOM, |
|
1186 // if an existing element is not provided... |
|
1187 var View = Backbone.View = function(options) { |
|
1188 this.cid = _.uniqueId('view'); |
|
1189 _.extend(this, _.pick(options, viewOptions)); |
|
1190 this._ensureElement(); |
|
1191 this.initialize.apply(this, arguments); |
|
1192 }; |
|
1193 |
|
1194 // Cached regex to split keys for `delegate`. |
|
1195 var delegateEventSplitter = /^(\S+)\s*(.*)$/; |
|
1196 |
|
1197 // List of view options to be set as properties. |
|
1198 var viewOptions = ['model', 'collection', 'el', 'id', 'attributes', 'className', 'tagName', 'events']; |
|
1199 |
|
1200 // Set up all inheritable **Backbone.View** properties and methods. |
|
1201 _.extend(View.prototype, Events, { |
|
1202 |
|
1203 // The default `tagName` of a View's element is `"div"`. |
|
1204 tagName: 'div', |
|
1205 |
|
1206 // jQuery delegate for element lookup, scoped to DOM elements within the |
|
1207 // current view. This should be preferred to global lookups where possible. |
|
1208 $: function(selector) { |
|
1209 return this.$el.find(selector); |
|
1210 }, |
|
1211 |
|
1212 // Initialize is an empty function by default. Override it with your own |
|
1213 // initialization logic. |
|
1214 initialize: function(){}, |
|
1215 |
|
1216 // **render** is the core function that your view should override, in order |
|
1217 // to populate its element (`this.el`), with the appropriate HTML. The |
|
1218 // convention is for **render** to always return `this`. |
|
1219 render: function() { |
|
1220 return this; |
|
1221 }, |
|
1222 |
|
1223 // Remove this view by taking the element out of the DOM, and removing any |
|
1224 // applicable Backbone.Events listeners. |
|
1225 remove: function() { |
|
1226 this._removeElement(); |
|
1227 this.stopListening(); |
|
1228 return this; |
|
1229 }, |
|
1230 |
|
1231 // Remove this view's element from the document and all event listeners |
|
1232 // attached to it. Exposed for subclasses using an alternative DOM |
|
1233 // manipulation API. |
|
1234 _removeElement: function() { |
|
1235 this.$el.remove(); |
|
1236 }, |
|
1237 |
|
1238 // Change the view's element (`this.el` property) and re-delegate the |
|
1239 // view's events on the new element. |
|
1240 setElement: function(element) { |
|
1241 this.undelegateEvents(); |
|
1242 this._setElement(element); |
|
1243 this.delegateEvents(); |
|
1244 return this; |
|
1245 }, |
|
1246 |
|
1247 // Creates the `this.el` and `this.$el` references for this view using the |
|
1248 // given `el`. `el` can be a CSS selector or an HTML string, a jQuery |
|
1249 // context or an element. Subclasses can override this to utilize an |
|
1250 // alternative DOM manipulation API and are only required to set the |
|
1251 // `this.el` property. |
|
1252 _setElement: function(el) { |
|
1253 this.$el = el instanceof Backbone.$ ? el : Backbone.$(el); |
|
1254 this.el = this.$el[0]; |
|
1255 }, |
|
1256 |
|
1257 // Set callbacks, where `this.events` is a hash of |
|
1258 // |
|
1259 // *{"event selector": "callback"}* |
|
1260 // |
|
1261 // { |
|
1262 // 'mousedown .title': 'edit', |
|
1263 // 'click .button': 'save', |
|
1264 // 'click .open': function(e) { ... } |
|
1265 // } |
|
1266 // |
|
1267 // pairs. Callbacks will be bound to the view, with `this` set properly. |
|
1268 // Uses event delegation for efficiency. |
|
1269 // Omitting the selector binds the event to `this.el`. |
|
1270 delegateEvents: function(events) { |
|
1271 events || (events = _.result(this, 'events')); |
|
1272 if (!events) return this; |
|
1273 this.undelegateEvents(); |
|
1274 for (var key in events) { |
|
1275 var method = events[key]; |
|
1276 if (!_.isFunction(method)) method = this[method]; |
|
1277 if (!method) continue; |
|
1278 var match = key.match(delegateEventSplitter); |
|
1279 this.delegate(match[1], match[2], _.bind(method, this)); |
|
1280 } |
|
1281 return this; |
|
1282 }, |
|
1283 |
|
1284 // Add a single event listener to the view's element (or a child element |
|
1285 // using `selector`). This only works for delegate-able events: not `focus`, |
|
1286 // `blur`, and not `change`, `submit`, and `reset` in Internet Explorer. |
|
1287 delegate: function(eventName, selector, listener) { |
|
1288 this.$el.on(eventName + '.delegateEvents' + this.cid, selector, listener); |
|
1289 return this; |
|
1290 }, |
|
1291 |
|
1292 // Clears all callbacks previously bound to the view by `delegateEvents`. |
|
1293 // You usually don't need to use this, but may wish to if you have multiple |
|
1294 // Backbone views attached to the same DOM element. |
|
1295 undelegateEvents: function() { |
|
1296 if (this.$el) this.$el.off('.delegateEvents' + this.cid); |
|
1297 return this; |
|
1298 }, |
|
1299 |
|
1300 // A finer-grained `undelegateEvents` for removing a single delegated event. |
|
1301 // `selector` and `listener` are both optional. |
|
1302 undelegate: function(eventName, selector, listener) { |
|
1303 this.$el.off(eventName + '.delegateEvents' + this.cid, selector, listener); |
|
1304 return this; |
|
1305 }, |
|
1306 |
|
1307 // Produces a DOM element to be assigned to your view. Exposed for |
|
1308 // subclasses using an alternative DOM manipulation API. |
|
1309 _createElement: function(tagName) { |
|
1310 return document.createElement(tagName); |
|
1311 }, |
|
1312 |
|
1313 // Ensure that the View has a DOM element to render into. |
|
1314 // If `this.el` is a string, pass it through `$()`, take the first |
|
1315 // matching element, and re-assign it to `el`. Otherwise, create |
|
1316 // an element from the `id`, `className` and `tagName` properties. |
|
1317 _ensureElement: function() { |
|
1318 if (!this.el) { |
|
1319 var attrs = _.extend({}, _.result(this, 'attributes')); |
|
1320 if (this.id) attrs.id = _.result(this, 'id'); |
|
1321 if (this.className) attrs['class'] = _.result(this, 'className'); |
|
1322 this.setElement(this._createElement(_.result(this, 'tagName'))); |
|
1323 this._setAttributes(attrs); |
|
1324 } else { |
|
1325 this.setElement(_.result(this, 'el')); |
|
1326 } |
|
1327 }, |
|
1328 |
|
1329 // Set attributes from a hash on this view's element. Exposed for |
|
1330 // subclasses using an alternative DOM manipulation API. |
|
1331 _setAttributes: function(attributes) { |
|
1332 this.$el.attr(attributes); |
|
1333 } |
|
1334 |
|
1335 }); |
|
1336 |
|
1337 // Backbone.sync |
|
1338 // ------------- |
|
1339 |
|
1340 // Override this function to change the manner in which Backbone persists |
|
1341 // models to the server. You will be passed the type of request, and the |
|
1342 // model in question. By default, makes a RESTful Ajax request |
|
1343 // to the model's `url()`. Some possible customizations could be: |
|
1344 // |
|
1345 // * Use `setTimeout` to batch rapid-fire updates into a single request. |
|
1346 // * Send up the models as XML instead of JSON. |
|
1347 // * Persist models via WebSockets instead of Ajax. |
|
1348 // |
|
1349 // Turn on `Backbone.emulateHTTP` in order to send `PUT` and `DELETE` requests |
|
1350 // as `POST`, with a `_method` parameter containing the true HTTP method, |
|
1351 // as well as all requests with the body as `application/x-www-form-urlencoded` |
|
1352 // instead of `application/json` with the model in a param named `model`. |
|
1353 // Useful when interfacing with server-side languages like **PHP** that make |
|
1354 // it difficult to read the body of `PUT` requests. |
|
1355 Backbone.sync = function(method, model, options) { |
|
1356 var type = methodMap[method]; |
|
1357 |
|
1358 // Default options, unless specified. |
|
1359 _.defaults(options || (options = {}), { |
|
1360 emulateHTTP: Backbone.emulateHTTP, |
|
1361 emulateJSON: Backbone.emulateJSON |
|
1362 }); |
|
1363 |
|
1364 // Default JSON-request options. |
|
1365 var params = {type: type, dataType: 'json'}; |
|
1366 |
|
1367 // Ensure that we have a URL. |
|
1368 if (!options.url) { |
|
1369 params.url = _.result(model, 'url') || urlError(); |
|
1370 } |
|
1371 |
|
1372 // Ensure that we have the appropriate request data. |
|
1373 if (options.data == null && model && (method === 'create' || method === 'update' || method === 'patch')) { |
|
1374 params.contentType = 'application/json'; |
|
1375 params.data = JSON.stringify(options.attrs || model.toJSON(options)); |
|
1376 } |
|
1377 |
|
1378 // For older servers, emulate JSON by encoding the request into an HTML-form. |
|
1379 if (options.emulateJSON) { |
|
1380 params.contentType = 'application/x-www-form-urlencoded'; |
|
1381 params.data = params.data ? {model: params.data} : {}; |
|
1382 } |
|
1383 |
|
1384 // For older servers, emulate HTTP by mimicking the HTTP method with `_method` |
|
1385 // And an `X-HTTP-Method-Override` header. |
|
1386 if (options.emulateHTTP && (type === 'PUT' || type === 'DELETE' || type === 'PATCH')) { |
|
1387 params.type = 'POST'; |
|
1388 if (options.emulateJSON) params.data._method = type; |
|
1389 var beforeSend = options.beforeSend; |
|
1390 options.beforeSend = function(xhr) { |
|
1391 xhr.setRequestHeader('X-HTTP-Method-Override', type); |
|
1392 if (beforeSend) return beforeSend.apply(this, arguments); |
|
1393 }; |
|
1394 } |
|
1395 |
|
1396 // Don't process data on a non-GET request. |
|
1397 if (params.type !== 'GET' && !options.emulateJSON) { |
|
1398 params.processData = false; |
|
1399 } |
|
1400 |
|
1401 // Pass along `textStatus` and `errorThrown` from jQuery. |
|
1402 var error = options.error; |
|
1403 options.error = function(xhr, textStatus, errorThrown) { |
|
1404 options.textStatus = textStatus; |
|
1405 options.errorThrown = errorThrown; |
|
1406 if (error) error.call(options.context, xhr, textStatus, errorThrown); |
|
1407 }; |
|
1408 |
|
1409 // Make the request, allowing the user to override any Ajax options. |
|
1410 var xhr = options.xhr = Backbone.ajax(_.extend(params, options)); |
|
1411 model.trigger('request', model, xhr, options); |
|
1412 return xhr; |
|
1413 }; |
|
1414 |
|
1415 // Map from CRUD to HTTP for our default `Backbone.sync` implementation. |
|
1416 var methodMap = { |
|
1417 'create': 'POST', |
|
1418 'update': 'PUT', |
|
1419 'patch': 'PATCH', |
|
1420 'delete': 'DELETE', |
|
1421 'read': 'GET' |
|
1422 }; |
|
1423 |
|
1424 // Set the default implementation of `Backbone.ajax` to proxy through to `$`. |
|
1425 // Override this if you'd like to use a different library. |
|
1426 Backbone.ajax = function() { |
|
1427 return Backbone.$.ajax.apply(Backbone.$, arguments); |
|
1428 }; |
|
1429 |
|
1430 // Backbone.Router |
|
1431 // --------------- |
|
1432 |
|
1433 // Routers map faux-URLs to actions, and fire events when routes are |
|
1434 // matched. Creating a new one sets its `routes` hash, if not set statically. |
|
1435 var Router = Backbone.Router = function(options) { |
|
1436 options || (options = {}); |
|
1437 if (options.routes) this.routes = options.routes; |
|
1438 this._bindRoutes(); |
|
1439 this.initialize.apply(this, arguments); |
|
1440 }; |
|
1441 |
|
1442 // Cached regular expressions for matching named param parts and splatted |
|
1443 // parts of route strings. |
|
1444 var optionalParam = /\((.*?)\)/g; |
|
1445 var namedParam = /(\(\?)?:\w+/g; |
|
1446 var splatParam = /\*\w+/g; |
|
1447 var escapeRegExp = /[\-{}\[\]+?.,\\\^$|#\s]/g; |
|
1448 |
|
1449 // Set up all inheritable **Backbone.Router** properties and methods. |
|
1450 _.extend(Router.prototype, Events, { |
|
1451 |
|
1452 // Initialize is an empty function by default. Override it with your own |
|
1453 // initialization logic. |
|
1454 initialize: function(){}, |
|
1455 |
|
1456 // Manually bind a single named route to a callback. For example: |
|
1457 // |
|
1458 // this.route('search/:query/p:num', 'search', function(query, num) { |
|
1459 // ... |
|
1460 // }); |
|
1461 // |
|
1462 route: function(route, name, callback) { |
|
1463 if (!_.isRegExp(route)) route = this._routeToRegExp(route); |
|
1464 if (_.isFunction(name)) { |
|
1465 callback = name; |
|
1466 name = ''; |
|
1467 } |
|
1468 if (!callback) callback = this[name]; |
|
1469 var router = this; |
|
1470 Backbone.history.route(route, function(fragment) { |
|
1471 var args = router._extractParameters(route, fragment); |
|
1472 if (router.execute(callback, args, name) !== false) { |
|
1473 router.trigger.apply(router, ['route:' + name].concat(args)); |
|
1474 router.trigger('route', name, args); |
|
1475 Backbone.history.trigger('route', router, name, args); |
|
1476 } |
|
1477 }); |
|
1478 return this; |
|
1479 }, |
|
1480 |
|
1481 // Execute a route handler with the provided parameters. This is an |
|
1482 // excellent place to do pre-route setup or post-route cleanup. |
|
1483 execute: function(callback, args, name) { |
|
1484 if (callback) callback.apply(this, args); |
|
1485 }, |
|
1486 |
|
1487 // Simple proxy to `Backbone.history` to save a fragment into the history. |
|
1488 navigate: function(fragment, options) { |
|
1489 Backbone.history.navigate(fragment, options); |
|
1490 return this; |
|
1491 }, |
|
1492 |
|
1493 // Bind all defined routes to `Backbone.history`. We have to reverse the |
|
1494 // order of the routes here to support behavior where the most general |
|
1495 // routes can be defined at the bottom of the route map. |
|
1496 _bindRoutes: function() { |
|
1497 if (!this.routes) return; |
|
1498 this.routes = _.result(this, 'routes'); |
|
1499 var route, routes = _.keys(this.routes); |
|
1500 while ((route = routes.pop()) != null) { |
|
1501 this.route(route, this.routes[route]); |
|
1502 } |
|
1503 }, |
|
1504 |
|
1505 // Convert a route string into a regular expression, suitable for matching |
|
1506 // against the current location hash. |
|
1507 _routeToRegExp: function(route) { |
|
1508 route = route.replace(escapeRegExp, '\\$&') |
|
1509 .replace(optionalParam, '(?:$1)?') |
|
1510 .replace(namedParam, function(match, optional) { |
|
1511 return optional ? match : '([^/?]+)'; |
|
1512 }) |
|
1513 .replace(splatParam, '([^?]*?)'); |
|
1514 return new RegExp('^' + route + '(?:\\?([\\s\\S]*))?$'); |
|
1515 }, |
|
1516 |
|
1517 // Given a route, and a URL fragment that it matches, return the array of |
|
1518 // extracted decoded parameters. Empty or unmatched parameters will be |
|
1519 // treated as `null` to normalize cross-browser behavior. |
|
1520 _extractParameters: function(route, fragment) { |
|
1521 var params = route.exec(fragment).slice(1); |
|
1522 return _.map(params, function(param, i) { |
|
1523 // Don't decode the search params. |
|
1524 if (i === params.length - 1) return param || null; |
|
1525 return param ? decodeURIComponent(param) : null; |
|
1526 }); |
|
1527 } |
|
1528 |
|
1529 }); |
|
1530 |
|
1531 // Backbone.History |
|
1532 // ---------------- |
|
1533 |
|
1534 // Handles cross-browser history management, based on either |
|
1535 // [pushState](http://diveintohtml5.info/history.html) and real URLs, or |
|
1536 // [onhashchange](https://developer.mozilla.org/en-US/docs/DOM/window.onhashchange) |
|
1537 // and URL fragments. If the browser supports neither (old IE, natch), |
|
1538 // falls back to polling. |
|
1539 var History = Backbone.History = function() { |
|
1540 this.handlers = []; |
|
1541 this.checkUrl = _.bind(this.checkUrl, this); |
|
1542 |
|
1543 // Ensure that `History` can be used outside of the browser. |
|
1544 if (typeof window !== 'undefined') { |
|
1545 this.location = window.location; |
|
1546 this.history = window.history; |
|
1547 } |
|
1548 }; |
|
1549 |
|
1550 // Cached regex for stripping a leading hash/slash and trailing space. |
|
1551 var routeStripper = /^[#\/]|\s+$/g; |
|
1552 |
|
1553 // Cached regex for stripping leading and trailing slashes. |
|
1554 var rootStripper = /^\/+|\/+$/g; |
|
1555 |
|
1556 // Cached regex for stripping urls of hash. |
|
1557 var pathStripper = /#.*$/; |
|
1558 |
|
1559 // Has the history handling already been started? |
|
1560 History.started = false; |
|
1561 |
|
1562 // Set up all inheritable **Backbone.History** properties and methods. |
|
1563 _.extend(History.prototype, Events, { |
|
1564 |
|
1565 // The default interval to poll for hash changes, if necessary, is |
|
1566 // twenty times a second. |
|
1567 interval: 50, |
|
1568 |
|
1569 // Are we at the app root? |
|
1570 atRoot: function() { |
|
1571 var path = this.location.pathname.replace(/[^\/]$/, '$&/'); |
|
1572 return path === this.root && !this.getSearch(); |
|
1573 }, |
|
1574 |
|
1575 // Does the pathname match the root? |
|
1576 matchRoot: function() { |
|
1577 var path = this.decodeFragment(this.location.pathname); |
|
1578 var root = path.slice(0, this.root.length - 1) + '/'; |
|
1579 return root === this.root; |
|
1580 }, |
|
1581 |
|
1582 // Unicode characters in `location.pathname` are percent encoded so they're |
|
1583 // decoded for comparison. `%25` should not be decoded since it may be part |
|
1584 // of an encoded parameter. |
|
1585 decodeFragment: function(fragment) { |
|
1586 return decodeURI(fragment.replace(/%25/g, '%2525')); |
|
1587 }, |
|
1588 |
|
1589 // In IE6, the hash fragment and search params are incorrect if the |
|
1590 // fragment contains `?`. |
|
1591 getSearch: function() { |
|
1592 var match = this.location.href.replace(/#.*/, '').match(/\?.+/); |
|
1593 return match ? match[0] : ''; |
|
1594 }, |
|
1595 |
|
1596 // Gets the true hash value. Cannot use location.hash directly due to bug |
|
1597 // in Firefox where location.hash will always be decoded. |
|
1598 getHash: function(window) { |
|
1599 var match = (window || this).location.href.match(/#(.*)$/); |
|
1600 return match ? match[1] : ''; |
|
1601 }, |
|
1602 |
|
1603 // Get the pathname and search params, without the root. |
|
1604 getPath: function() { |
|
1605 var path = this.decodeFragment( |
|
1606 this.location.pathname + this.getSearch() |
|
1607 ).slice(this.root.length - 1); |
|
1608 return path.charAt(0) === '/' ? path.slice(1) : path; |
|
1609 }, |
|
1610 |
|
1611 // Get the cross-browser normalized URL fragment from the path or hash. |
|
1612 getFragment: function(fragment) { |
|
1613 if (fragment == null) { |
|
1614 if (this._usePushState || !this._wantsHashChange) { |
|
1615 fragment = this.getPath(); |
|
1616 } else { |
|
1617 fragment = this.getHash(); |
|
1618 } |
|
1619 } |
|
1620 return fragment.replace(routeStripper, ''); |
|
1621 }, |
|
1622 |
|
1623 // Start the hash change handling, returning `true` if the current URL matches |
|
1624 // an existing route, and `false` otherwise. |
|
1625 start: function(options) { |
|
1626 if (History.started) throw new Error('Backbone.history has already been started'); |
|
1627 History.started = true; |
|
1628 |
|
1629 // Figure out the initial configuration. Do we need an iframe? |
|
1630 // Is pushState desired ... is it available? |
|
1631 this.options = _.extend({root: '/'}, this.options, options); |
|
1632 this.root = this.options.root; |
|
1633 this._wantsHashChange = this.options.hashChange !== false; |
|
1634 this._hasHashChange = 'onhashchange' in window && (document.documentMode === void 0 || document.documentMode > 7); |
|
1635 this._useHashChange = this._wantsHashChange && this._hasHashChange; |
|
1636 this._wantsPushState = !!this.options.pushState; |
|
1637 this._hasPushState = !!(this.history && this.history.pushState); |
|
1638 this._usePushState = this._wantsPushState && this._hasPushState; |
|
1639 this.fragment = this.getFragment(); |
|
1640 |
|
1641 // Normalize root to always include a leading and trailing slash. |
|
1642 this.root = ('/' + this.root + '/').replace(rootStripper, '/'); |
|
1643 |
|
1644 // Transition from hashChange to pushState or vice versa if both are |
|
1645 // requested. |
|
1646 if (this._wantsHashChange && this._wantsPushState) { |
|
1647 |
|
1648 // If we've started off with a route from a `pushState`-enabled |
|
1649 // browser, but we're currently in a browser that doesn't support it... |
|
1650 if (!this._hasPushState && !this.atRoot()) { |
|
1651 var root = this.root.slice(0, -1) || '/'; |
|
1652 this.location.replace(root + '#' + this.getPath()); |
|
1653 // Return immediately as browser will do redirect to new url |
|
1654 return true; |
|
1655 |
|
1656 // Or if we've started out with a hash-based route, but we're currently |
|
1657 // in a browser where it could be `pushState`-based instead... |
|
1658 } else if (this._hasPushState && this.atRoot()) { |
|
1659 this.navigate(this.getHash(), {replace: true}); |
|
1660 } |
|
1661 |
|
1662 } |
|
1663 |
|
1664 // Proxy an iframe to handle location events if the browser doesn't |
|
1665 // support the `hashchange` event, HTML5 history, or the user wants |
|
1666 // `hashChange` but not `pushState`. |
|
1667 if (!this._hasHashChange && this._wantsHashChange && !this._usePushState) { |
|
1668 this.iframe = document.createElement('iframe'); |
|
1669 this.iframe.src = 'javascript:0'; |
|
1670 this.iframe.style.display = 'none'; |
|
1671 this.iframe.tabIndex = -1; |
|
1672 var body = document.body; |
|
1673 // Using `appendChild` will throw on IE < 9 if the document is not ready. |
|
1674 var iWindow = body.insertBefore(this.iframe, body.firstChild).contentWindow; |
|
1675 iWindow.document.open(); |
|
1676 iWindow.document.close(); |
|
1677 iWindow.location.hash = '#' + this.fragment; |
|
1678 } |
|
1679 |
|
1680 // Add a cross-platform `addEventListener` shim for older browsers. |
|
1681 var addEventListener = window.addEventListener || function (eventName, listener) { |
|
1682 return attachEvent('on' + eventName, listener); |
|
1683 }; |
|
1684 |
|
1685 // Depending on whether we're using pushState or hashes, and whether |
|
1686 // 'onhashchange' is supported, determine how we check the URL state. |
|
1687 if (this._usePushState) { |
|
1688 addEventListener('popstate', this.checkUrl, false); |
|
1689 } else if (this._useHashChange && !this.iframe) { |
|
1690 addEventListener('hashchange', this.checkUrl, false); |
|
1691 } else if (this._wantsHashChange) { |
|
1692 this._checkUrlInterval = setInterval(this.checkUrl, this.interval); |
|
1693 } |
|
1694 |
|
1695 if (!this.options.silent) return this.loadUrl(); |
|
1696 }, |
|
1697 |
|
1698 // Disable Backbone.history, perhaps temporarily. Not useful in a real app, |
|
1699 // but possibly useful for unit testing Routers. |
|
1700 stop: function() { |
|
1701 // Add a cross-platform `removeEventListener` shim for older browsers. |
|
1702 var removeEventListener = window.removeEventListener || function (eventName, listener) { |
|
1703 return detachEvent('on' + eventName, listener); |
|
1704 }; |
|
1705 |
|
1706 // Remove window listeners. |
|
1707 if (this._usePushState) { |
|
1708 removeEventListener('popstate', this.checkUrl, false); |
|
1709 } else if (this._useHashChange && !this.iframe) { |
|
1710 removeEventListener('hashchange', this.checkUrl, false); |
|
1711 } |
|
1712 |
|
1713 // Clean up the iframe if necessary. |
|
1714 if (this.iframe) { |
|
1715 document.body.removeChild(this.iframe); |
|
1716 this.iframe = null; |
|
1717 } |
|
1718 |
|
1719 // Some environments will throw when clearing an undefined interval. |
|
1720 if (this._checkUrlInterval) clearInterval(this._checkUrlInterval); |
|
1721 History.started = false; |
|
1722 }, |
|
1723 |
|
1724 // Add a route to be tested when the fragment changes. Routes added later |
|
1725 // may override previous routes. |
|
1726 route: function(route, callback) { |
|
1727 this.handlers.unshift({route: route, callback: callback}); |
|
1728 }, |
|
1729 |
|
1730 // Checks the current URL to see if it has changed, and if it has, |
|
1731 // calls `loadUrl`, normalizing across the hidden iframe. |
|
1732 checkUrl: function(e) { |
|
1733 var current = this.getFragment(); |
|
1734 |
|
1735 // If the user pressed the back button, the iframe's hash will have |
|
1736 // changed and we should use that for comparison. |
|
1737 if (current === this.fragment && this.iframe) { |
|
1738 current = this.getHash(this.iframe.contentWindow); |
|
1739 } |
|
1740 |
|
1741 if (current === this.fragment) return false; |
|
1742 if (this.iframe) this.navigate(current); |
|
1743 this.loadUrl(); |
|
1744 }, |
|
1745 |
|
1746 // Attempt to load the current URL fragment. If a route succeeds with a |
|
1747 // match, returns `true`. If no defined routes matches the fragment, |
|
1748 // returns `false`. |
|
1749 loadUrl: function(fragment) { |
|
1750 // If the root doesn't match, no routes can match either. |
|
1751 if (!this.matchRoot()) return false; |
|
1752 fragment = this.fragment = this.getFragment(fragment); |
|
1753 return _.some(this.handlers, function(handler) { |
|
1754 if (handler.route.test(fragment)) { |
|
1755 handler.callback(fragment); |
|
1756 return true; |
|
1757 } |
|
1758 }); |
|
1759 }, |
|
1760 |
|
1761 // Save a fragment into the hash history, or replace the URL state if the |
|
1762 // 'replace' option is passed. You are responsible for properly URL-encoding |
|
1763 // the fragment in advance. |
|
1764 // |
|
1765 // The options object can contain `trigger: true` if you wish to have the |
|
1766 // route callback be fired (not usually desirable), or `replace: true`, if |
|
1767 // you wish to modify the current URL without adding an entry to the history. |
|
1768 navigate: function(fragment, options) { |
|
1769 if (!History.started) return false; |
|
1770 if (!options || options === true) options = {trigger: !!options}; |
|
1771 |
|
1772 // Normalize the fragment. |
|
1773 fragment = this.getFragment(fragment || ''); |
|
1774 |
|
1775 // Don't include a trailing slash on the root. |
|
1776 var root = this.root; |
|
1777 if (fragment === '' || fragment.charAt(0) === '?') { |
|
1778 root = root.slice(0, -1) || '/'; |
|
1779 } |
|
1780 var url = root + fragment; |
|
1781 |
|
1782 // Strip the hash and decode for matching. |
|
1783 fragment = this.decodeFragment(fragment.replace(pathStripper, '')); |
|
1784 |
|
1785 if (this.fragment === fragment) return; |
|
1786 this.fragment = fragment; |
|
1787 |
|
1788 // If pushState is available, we use it to set the fragment as a real URL. |
|
1789 if (this._usePushState) { |
|
1790 this.history[options.replace ? 'replaceState' : 'pushState']({}, document.title, url); |
|
1791 |
|
1792 // If hash changes haven't been explicitly disabled, update the hash |
|
1793 // fragment to store history. |
|
1794 } else if (this._wantsHashChange) { |
|
1795 this._updateHash(this.location, fragment, options.replace); |
|
1796 if (this.iframe && (fragment !== this.getHash(this.iframe.contentWindow))) { |
|
1797 var iWindow = this.iframe.contentWindow; |
|
1798 |
|
1799 // Opening and closing the iframe tricks IE7 and earlier to push a |
|
1800 // history entry on hash-tag change. When replace is true, we don't |
|
1801 // want this. |
|
1802 if (!options.replace) { |
|
1803 iWindow.document.open(); |
|
1804 iWindow.document.close(); |
|
1805 } |
|
1806 |
|
1807 this._updateHash(iWindow.location, fragment, options.replace); |
|
1808 } |
|
1809 |
|
1810 // If you've told us that you explicitly don't want fallback hashchange- |
|
1811 // based history, then `navigate` becomes a page refresh. |
|
1812 } else { |
|
1813 return this.location.assign(url); |
|
1814 } |
|
1815 if (options.trigger) return this.loadUrl(fragment); |
|
1816 }, |
|
1817 |
|
1818 // Update the hash location, either replacing the current entry, or adding |
|
1819 // a new one to the browser history. |
|
1820 _updateHash: function(location, fragment, replace) { |
|
1821 if (replace) { |
|
1822 var href = location.href.replace(/(javascript:|#).*$/, ''); |
|
1823 location.replace(href + '#' + fragment); |
|
1824 } else { |
|
1825 // Some browsers require that `hash` contains a leading #. |
|
1826 location.hash = '#' + fragment; |
|
1827 } |
|
1828 } |
|
1829 |
|
1830 }); |
|
1831 |
|
1832 // Create the default Backbone.history. |
|
1833 Backbone.history = new History; |
|
1834 |
|
1835 // Helpers |
|
1836 // ------- |
|
1837 |
|
1838 // Helper function to correctly set up the prototype chain for subclasses. |
|
1839 // Similar to `goog.inherits`, but uses a hash of prototype properties and |
|
1840 // class properties to be extended. |
|
1841 var extend = function(protoProps, staticProps) { |
|
1842 var parent = this; |
|
1843 var child; |
|
1844 |
|
1845 // The constructor function for the new subclass is either defined by you |
|
1846 // (the "constructor" property in your `extend` definition), or defaulted |
|
1847 // by us to simply call the parent constructor. |
|
1848 if (protoProps && _.has(protoProps, 'constructor')) { |
|
1849 child = protoProps.constructor; |
|
1850 } else { |
|
1851 child = function(){ return parent.apply(this, arguments); }; |
|
1852 } |
|
1853 |
|
1854 // Add static properties to the constructor function, if supplied. |
|
1855 _.extend(child, parent, staticProps); |
|
1856 |
|
1857 // Set the prototype chain to inherit from `parent`, without calling |
|
1858 // `parent` constructor function. |
|
1859 var Surrogate = function(){ this.constructor = child; }; |
|
1860 Surrogate.prototype = parent.prototype; |
|
1861 child.prototype = new Surrogate; |
|
1862 |
|
1863 // Add prototype properties (instance properties) to the subclass, |
|
1864 // if supplied. |
|
1865 if (protoProps) _.extend(child.prototype, protoProps); |
|
1866 |
|
1867 // Set a convenience property in case the parent's prototype is needed |
|
1868 // later. |
|
1869 child.__super__ = parent.prototype; |
|
1870 |
|
1871 return child; |
|
1872 }; |
|
1873 |
|
1874 // Set up inheritance for the model, collection, router, view and history. |
|
1875 Model.extend = Collection.extend = Router.extend = View.extend = History.extend = extend; |
|
1876 |
|
1877 // Throw an error when a URL is needed, and none is supplied. |
|
1878 var urlError = function() { |
|
1879 throw new Error('A "url" property or function must be specified'); |
|
1880 }; |
|
1881 |
|
1882 // Wrap an optional error callback with a fallback error event. |
|
1883 var wrapError = function(model, options) { |
|
1884 var error = options.error; |
|
1885 options.error = function(resp) { |
|
1886 if (error) error.call(options.context, model, resp, options); |
|
1887 model.trigger('error', model, resp, options); |
|
1888 }; |
|
1889 }; |
|
1890 |
|
1891 return Backbone; |
|
1892 |
|
1893 })); |