GithubHelp home page GithubHelp logo

backbonejs-patterns's Introduction

Backbone.js Patterns

Good practices that our team has learned along the way building Backbone applications.

Related Articles

Style Guide

Event Naming Convention

Here's the list of custom events that can be used with any Model.

  • empty:[attribute] (model) — when a specific attribute becomes empty.
  • notempty:[attribute] (model) — when a specific attribute is not empty anymore.

Variables and Method Naming Conventions

viewData (object)

Object containing attributes to be sent to the template.

var Bookmark = Backbone.View.extend({
  template: _.template(),
    render: function () {
      var viewData = _.extend(this.viewOptions, this.model.toJSON());
      this.$el.html( this.template( viewData ) );
      return this;
    }
});

removeEl (method)

Used as a proxy for view.remove in cases where you need an animation or perform some action before remove the view.

onInitialize (method)

Whenever you extend a Class on Backbone and you want to keep the original behavior on the constructor, use onInitialize.

onRender (method)

Whenever you extend a View on Backbone and you want to keep the original behavior on the render method, use onRender.

onInvalid (method)

Patterns

Model Patterns

Model Validation

var Person = Backbone.Model.extend({
	validate: function(attrs, options) {
		this.errors = [];

		if(attrs.name === ''){
		  this.errors.push('error:name:empty');
		}

		if(this.errors.length > 0) return this.errors;
	}
});

Persisting an Collection

Whenever you need to save an entire Collection, you should have a Model as wrapper that will be the context. Than you can save it as an attribute. You can have a Backbone Collection as a property of the Model and bind it to the attribute to reflect changes.

Use set instead of reset when the collection changes on the attributes, this will trigger all the events like change, remove and add on the models.

The remove event on the Collection doesn't trigger destroy on the Model. So if you need to have it reflected on a model that is binded to a view, you should trigger remove on the model and listen on the view.

var MyModel = Backbone.View.extend{    
	initialize: function(){
	    this.elementsCollection.on({
	        'remove': this.onRemoveElement
	    }, this);
	},	

    onRemoveElement: function(model, collection, options){
        model.trigger('remove', model);
    },

    updateElementsCollection: function(model){
        this.elementsCollection = this.elementsCollection || new SD.Collection.ErfxElement();
        this.elementsCollection.set( this.get('Elements') );
        this.elementsCollection.parentModel = this;
    }
});

Persisting an Collection (Alternative)

As alternative, save the collection by extending Backbone.

var Groups = Backbone.Collection.extend({
  model: Group,
  url: function() {
    return '/groups/'; 
  },
  save: function(){
    Backbone.sync('create', this, {
      success: function() {
        console.log('Saved!');
      }
    });
  }
});
Send updated collection of elements as an attribure
PUT collection/{id} - Model (Subcollection)
{ Subcollection: [ { ... }, { ... } ] }

Send only new elements as collection to elements resource
POST collection/{id}/subcollection (Collection)
[ { ... }, { ... } ]

Update entire collection sending it to elements resource
PUT collection/{id}/subcollection (Collection)
[ { id: 1 }, { id: 2 }, { ... }, { ... } ]

Related links

View Patterns

Render Element Attributes

var Person = Backbone.View.extend({	
	renderAttr: function(){
		var attrs = {
			'id': 'my-element-' + this.model.attributes.id,
			'data-id': this.model.attributes.id,
		};

		_.each(attrs, function(value, name){
			this.$el.attr(name, value);
		}, this);
	}
});

Extending Backbone

Dispatcher

Documentation pending.

Views

dataBinding

One way bind model attributes to a view element.

renderElement

Render a piece of the View based on a provided selector.

Rename renderElement to renderEl to keep consistency with backbone styleguide.

this.renderElement('.name');

registerPartials

Documentation pending.

scrollToElement

Documentation pending.

backbonejs-patterns's People

Contributors

tarmann avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

ctourish

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.