backbone.js | |
|---|---|
| (function(){ |
Initial Setup | |
| The top-level namespace. | var Backbone = {}; |
| Keep the version in sync with | Backbone.VERSION = '0.1.0'; |
| Export for both CommonJS and the Browser. | (typeof exports !== 'undefined' ? exports : this).Backbone = Backbone; |
| Helper function to correctly set up the prototype chain, for subclasses.
Similar to | var inherits = function(parent, protoProps, classProps) {
var child = protoProps.hasOwnProperty('constructor') ? protoProps.constructor :
function(){ return parent.apply(this, arguments); };
var ctor = function(){};
ctor.prototype = parent.prototype;
child.prototype = new ctor();
_.extend(child.prototype, protoProps);
if (classProps) _.extend(child, classProps);
child.prototype.constructor = child;
return child;
}; |
Backbone.Bindable | |
| A module that can be mixed in to any object in order to provide it with
custom events. You may | Backbone.Bindable = { |
| Bind an event, specified by a string name, | bind : function(ev, callback) {
var calls = this._callbacks || (this._callbacks = {});
var list = this._callbacks[ev] || (this._callbacks[ev] = []);
list.push(callback);
return this;
}, |
| Remove one or many callbacks. If | unbind : function(ev, callback) {
var calls;
if (!ev) {
this._callbacks = {};
} else if (calls = this._callbacks) {
if (!callback) {
calls[ev] = [];
} else {
var list = calls[ev];
if (!list) return this;
for (var i = 0, l = list.length; i < l; i++) {
if (callback === list[i]) {
list.splice(i, 1);
break;
}
}
}
}
return this;
}, |
| Trigger an event, firing all bound callbacks. | trigger : function(ev) {
var calls = this._callbacks;
for (var i = 0; i < 2; i++) {
var list = calls && calls[i ? 'all' : ev];
if (!list) continue;
for (var j = 0, l = list.length; j < l; j++) {
list[j].apply(this, _.rest(arguments));
}
}
return this;
}
}; |
Backbone.Model | |
| Create a new model, with defined attributes. If you do not specify the id, a negative id will be assigned for you. | Backbone.Model = function(attributes) {
this._attributes = {};
attributes = attributes || {};
this.set(attributes, {silent : true});
this.cid = _.uniqueId('c');
this._formerAttributes = this.attributes();
}; |
| Attach all inheritable methods to the Model prototype. | _.extend(Backbone.Model.prototype, Backbone.Bindable, { |
| A snapshot of the model's previous attributes, taken immediately
after the last | _formerAttributes : null, |
| Has the item been changed since the last | _changed : false, |
| Return a copy of the model's | attributes : function() {
return _.clone(this._attributes);
}, |
| Default URL for the model's representation on the server -- if you're using Backbone's restful methods, override this to change the endpoint that will be called. | url : function() {
var base = this.collection.url();
if (this.isNew()) return base;
return base + '/' + this.id;
}, |
| String representation of the model. Override this to provide a nice way to print models to the console. | toString : function() {
return 'Model ' + this.id;
}, |
| Create a new model with identical attributes to this one. | clone : function() {
return new (this.constructor)(this.attributes());
}, |
| Are this model's attributes identical to another model? | isEqual : function(other) {
return other && _.isEqual(this._attributes, other._attributes);
}, |
| A model is new if it has never been saved to the server, and has a negative ID. | isNew : function() {
return !this.id;
}, |
| Get the value of an attribute. | get : function(attr) {
return this._attributes[attr];
}, |
| Set a hash of model attributes on the object, firing | set : function(attrs, options) {
options || (options = {});
if (!attrs) return this;
attrs = attrs._attributes || attrs;
var now = this._attributes;
if ('id' in attrs) {
this.id = attrs.id;
if (this.collection) this.resource = this.collection.resource + '/' + this.id;
}
for (var attr in attrs) {
var val = attrs[attr];
if (val === '') val = null;
if (!_.isEqual(now[attr], val)) {
now[attr] = val;
if (!options.silent) {
this._changed = true;
this.trigger('change:' + attr);
}
}
}
if (!options.silent && this._changed) this.changed();
return this;
}, |
| Remove an attribute from the model, firing | unset : function(attr, options) {
options || (options = {});
var value = this._attributes[attr];
delete this._attributes[attr];
if (!options.silent) {
this._changed = true;
this.trigger('change:' + attr);
this.changed();
}
return value;
}, |
| Call this method to fire manually fire a | changed : function() {
this.trigger('change', this);
this._formerAttributes = this.attributes();
this._changed = false;
}, |
| Determine if the model has changed since the last | hasChanged : function(attr) {
if (attr) return this._formerAttributes[attr] != this._attributes[attr];
return this._changed;
}, |
| Return an object containing all the attributes that have changed, or false if there are no changed attributes. Useful for determining what parts of a view need to be updated and/or what attributes need to be persisted to the server. | changedAttributes : function(now) {
var old = this.formerAttributes(), now = now || this.attributes(), changed = false;
for (var attr in now) {
if (!_.isEqual(old[attr], now[attr])) {
changed = changed || {};
changed[attr] = now[attr];
}
}
return changed;
}, |
| Get the previous value of an attribute, recorded at the time the last
| formerValue : function(attr) {
if (!attr || !this._formerAttributes) return null;
return this._formerAttributes[attr];
}, |
| Get all of the attributes of the model at the time of the previous
| formerAttributes : function() {
return this._formerAttributes;
}, |
| Set a hash of model attributes, and sync the model to the server. | save : function(attrs, options) {
attrs || (attrs = {});
options || (options = {});
this.set(attrs, options);
var model = this;
var success = function(resp) {
model.set(resp.model);
if (options.success) options.success(model, resp);
};
var method = this.isNew() ? 'POST' : 'PUT';
Backbone.request(method, this, success, options.error);
return this;
}, |
| Destroy this model on the server. | destroy : function(options) {
options || (options = {});
var model = this;
var success = function(resp) {
if (model.collection) model.collection.remove(model);
if (options.success) options.success(model, resp);
};
Backbone.request('DELETE', this, success, options.error);
return this;
}
}); |
Backbone.Collection | |
| Provides a standard collection class for our sets of models, ordered
or unordered. If a | Backbone.Collection = function(models, options) {
options || (options = {});
if (options.comparator) {
this.comparator = options.comparator;
delete options.comparator;
}
this._boundOnModelChange = _.bind(this._onModelChange, this);
this._initialize();
if (models) this.refresh(models,true);
}; |
| Define the Collection's inheritable methods. | _.extend(Backbone.Collection.prototype, Backbone.Bindable, {
model : Backbone.Model, |
| Override this function to get convenient logging in the console. | toString : function() {
return 'Collection (' + this.length + " models)";
}, |
| Get a model from the set by id. | get : function(id) {
return id && this._byId[id.id != null ? id.id : id];
}, |
| Get a model from the set by client id. | getByCid : function(cid) {
return cid && this._byCid[cid.cid || cid];
}, |
| Get the model at the given index. | at: function(index) {
return this.models[index];
}, |
| What are the ids for every model in the set? | getIds : function() {
return _.keys(this._byId);
}, |
| What are the client ids for every model in the set? | getCids : function() {
return _.keys(this._byCid);
}, |
| Pluck an attribute from each model in the collection. | pluck : function(attr) {
return _.map(this.models, function(model){ return model.get(attr); });
}, |
| Add a model, or list of models to the set. Pass silent to avoid
firing the | add : function(models, options) {
if (!_.isArray(models)) return this._add(models, options);
for (var i=0; i<models.length; i++) this._add(models[i], options);
return models;
}, |
| Internal implementation of adding a single model to the set. | _add : function(model, options) {
options || (options = {});
var already = this.get(model);
if (already) throw new Error(["Can't add the same model to a set twice", already.id]);
this._byId[model.id] = model;
this._byCid[model.cid] = model;
model.collection = this;
var index = this.comparator ? this.sortedIndex(model, this.comparator) : this.length;
this.models.splice(index, 0, model);
model.bind('change', this._boundOnModelChange);
this.length++;
if (!options.silent) this.trigger('add', model);
return model;
}, |
| Remove a model, or a list of models from the set. Pass silent to avoid
firing the | remove : function(models, options) {
if (!_.isArray(models)) return this._remove(models, options);
for (var i=0; i<models.length; i++) this._remove(models[i], options);
return models;
}, |
| Internal implementation of removing a single model from the set. | _remove : function(model, options) {
options || (options = {});
model = this.get(model);
if (!model) return null;
delete this._byId[model.id];
delete this._byCid[model.cid];
delete model.collection;
this.models.splice(this.indexOf(model), 1);
model.unbind('change', this._boundOnModelChange);
this.length--;
if (!options.silent) this.trigger('remove', model);
return model;
}, |
| Force the set to re-sort itself. You don't need to call this under normal circumstances, as the set will maintain sort order as each item is added. | sort : function(options) {
options || (options = {});
if (!this.comparator) throw new Error('Cannot sort a set without a comparator');
this.models = this.sortBy(this.comparator);
if (!options.silent) this.trigger('refresh');
return this;
}, |
| When you have more items than you want to add or remove individually,
you can refresh the entire set with a new list of models, without firing
any | refresh : function(models, options) {
options || (options = {});
models = models || [];
var collection = this;
if (models[0] && !(models[0] instanceof Backbone.Model)) {
models = _.map(models, function(attrs, i) {
return new collection.model(attrs);
});
}
this._initialize();
this.add(models, {silent: true});
if (!options.silent) this.trigger('refresh');
return this;
}, |
| Fetch the default set of models for this collection, refreshing the collection. | fetch : function(options) {
options || (options = {});
var collection = this;
var success = function(resp) {
collection.refresh(resp.models);
if (options.success) options.success(collection, resp);
};
Backbone.request('GET', this, success, options.error);
return this;
}, |
| Create a new instance of a model in this collection. | create : function(model, options) {
options || (options = {});
if (!(model instanceof Backbone.Model)) model = new this.model(model);
model.collection = this;
var success = function(model, resp) {
model.set(resp.model);
model.collection.add(model);
if (options.success) options.success(model, resp);
};
return model.save(null, {success : success, error : options.error});
}, |
| Initialize or re-initialize all internal state. Called when the collection is refreshed. | _initialize : function(options) {
this.length = 0;
this.models = [];
this._byId = {};
this._byCid = {};
}, |
| Internal method called every time a model in the set fires an event. Sets need to update their indexes when models change ids. | _onModelChange : function(model) {
if (model.hasChanged('id')) {
delete this._byId[model.formerValue('id')];
this._byId[model.id] = model;
}
this.trigger('change', model);
}
}); |
| Underscore methods that we want to implement on the Collection. | var methods = ['each', 'map', 'reduce', 'reduceRight', 'detect', 'select',
'reject', 'all', 'any', 'include', 'invoke', 'max', 'min', 'sortBy',
'sortedIndex', 'toArray', 'size', 'first', 'rest', 'last', 'without',
'indexOf', 'lastIndexOf', 'isEmpty']; |
| Mix in each Underscore method as a proxy to | _.each(methods, function(method) {
Backbone.Collection.prototype[method] = function() {
return _[method].apply(_, [this.models].concat(_.toArray(arguments)));
};
}); |
Backbone.View | |
| Creating a Backbone.View creates its intial element outside of the DOM, if an existing element is not provided... | Backbone.View = function(options) {
this.modes = {};
this._initialize(options || {});
if (this.options.el) {
this.el = this.options.el;
} else {
var attrs = {};
if (this.id) attrs.id = this.id;
if (this.className) attrs.className = this.className;
this.el = this.make(this.tagName, attrs);
}
return this;
}; |
| jQuery lookup, scoped to DOM elements within the current view. This should be prefered to global jQuery lookups, if you're dealing with a specific view. | var jQueryScoped = function(selector) {
return $(selector, this.el);
}; |
| Set up all interitable Backbone.View properties and methods. | _.extend(Backbone.View.prototype, { |
| The default tagName of a View's element is "div". | tagName : 'div', |
| Attach the jQuery function as the | $ : jQueryScoped,
jQuery : jQueryScoped, |
| render is the core function that your view should override, in order
to populate its element ( | render : function() {
return this;
}, |
| For small amounts of DOM Elements, where a full-blown template isn't needed, use make to manufacture elements, one at a time. | make : function(tagName, attributes, content) {
var el = document.createElement(tagName);
if (attributes) $(el).attr(attributes);
if (content) $(el).html(content);
return el;
}, |
| Makes the view enter a mode. Modes have both a 'mode' and a 'group', and are mutually exclusive with any other modes in the same group. Setting will update the view's modes hash, as well as set an HTML class of [mode]_[group] on the view's element. Convenient way to swap styles and behavior. | setMode : function(mode, group) {
if (this.modes[group] == mode) return;
$(this.el).setMode(mode, group);
this.modes[group] = mode;
}, |
| Set callbacks, where this.callbacks is a hash of {selector.event_name: callback_name}
pairs. Callbacks will be bound to the view, with | setCallbacks : function(callbacks) {
$(this.el).unbind();
if (!(callbacks || (callbacks = this.callbacks))) return this;
for (key in callbacks) {
var methodName = callbacks[key];
key = key.split(/\.(?!.*\.)/);
var selector = key[0], eventName = key[1];
var method = _.bind(this[methodName], this);
if (selector === '' || eventName == 'change') {
$(this.el).bind(eventName, method);
} else {
$(this.el).delegate(selector, eventName, method);
}
}
return this;
}, |
| Performs the initial configuration of a View with a set of options. Keys with special meaning (model, collection, id, className), are attatched directly to the view. | _initialize : function(options) {
if (this.options) options = _.extend({}, this.options, options);
if (options.model) this.model = options.model;
if (options.collection) this.collection = options.collection;
if (options.id) this.id = options.id;
if (options.className) this.className = options.className;
this.options = options;
}
}); |
| Set up inheritance for the model, collection, and view. | var extend = Backbone.Model.extend = Backbone.Collection.extend = Backbone.View.extend = function (protoProps, classProps) {
var child = inherits(this, protoProps, classProps);
child.extend = extend;
return child;
}; |
| Override this function to change the manner in which Backbone persists
models to the server. You will be passed the type of request, and the
model in question. By default, uses jQuery to make a RESTful Ajax request
to the model's
| Backbone.request = function(type, model, success, error) {
var data = model.attributes ? {model : JSON.stringify(model.attributes())} : {};
$.ajax({
url : model.url(),
type : type,
data : data,
dataType : 'json',
success : success,
error : error
});
};
})();
|