/app/components/backbone-relational/README.md
Markdown | 562 lines | 417 code | 145 blank | 0 comment | 0 complexity | 4b8e5d8858fe1c49c90d2fec6e0be6b3 MD5 | raw file
- # Backbone-relational
- Backbone-relational provides one-to-one, one-to-many and many-to-one relations between models for [Backbone](https://github.com/documentcloud/backbone). To use relations, extend `Backbone.RelationalModel` (instead of the regular `Backbone.Model`) and define a property `relations`, containing an array of option objects. Each relation must define (as a minimum) the `type`, `key` and `relatedModel`. Available relation types are `Backbone.HasOne` and `Backbone.HasMany`. Backbone-relational features:
- * Bidirectional relations, which notify related models of changes through events.
- * Control how relations are serialized using the `includeInJSON` option.
- * Automatically convert nested objects in a model's attributes into Model instances using the `createModels` option.
- * Lazily retrieve (a set of) related models through the `fetchRelated(key<string>, [options<object>], update<bool>)` method.
- * Determine the type of `HasMany` collections with `collectionType`.
- * Bind new events to a `Backbone.RelationalModel` for:
- * addition to a `HasMany` relation (bind to `add:<key>`; arguments: `(addedModel, relatedCollection)`),
- * removal from a `HasMany` relation (bind to `remove:<key>`; arguments: `(removedModel, relatedCollection)`),
- * reset of a `HasMany` relation (bind to `reset:<key>`; arguments: `(relatedCollection)`),
- * changes to the key itself on `HasMany` and `HasOne` relations (bind to `update:<key>`; arguments=`(model, relatedModel/relatedCollection)`).
- ## Contents
- * [Getting started](#getting-started)
- * [Backbone.Relation options](#backbone-relation)
- * [Backbone.RelationalModel](#backbone-relationalmodel)
- * [Example](#example)
- * [Known problems and solutions](#q-and-a)
- * [Under the hood](#under-the-hood)
- ## <a name="getting-started"/>Getting started
- Resources to get you started with Backbone-relational:
- * [A great tutorial by antoviaque](http://antoviaque.org/docs/tutorials/backbone-relational-tutorial/) ([and the accompanying git repository](https://github.com/antoviaque/backbone-relational-tutorial))
- ### <a name="installation"/>Installation
- Backbone-relational depends on [Backbone](https://github.com/documentcloud/backbone) (and thus on [Underscore](https://github.com/documentcloud/underscore)). Include Backbone-relational right after Backbone and Underscore:
- ```html
- <script type="text/javascript" src="./js/underscore.js"></script>
- <script type="text/javascript" src="./js/backbone.js"></script>
- <script type="text/javascript" src="./js/backbone-relational.js"></script>
- ```
- Backbone-relational has been tested with Backbone 0.9.10 (or newer) and Underscore 1.4.3 (or newer).
- ## <a name="backbone-relation"/>Backbone.Relation options
- Each `Backbone.RelationalModel` can contain an array of `relations`.
- Each relation supports a number of options, of which `relatedModel`, `key` and `type` are mandatory.
- A relation could look like the following:
- ```javascript
- Zoo = Backbone.RelationalModel.extend({
- relations: [{
- type: Backbone.HasMany,
- key: 'animals',
- relatedModel: 'Animal',
- collectionType: 'AnimalCollection',
- reverseRelation: {
- key: 'livesIn',
- includeInJSON: 'id'
- // 'relatedModel' is automatically set to 'Zoo'; the 'relationType' to 'HasOne'.
- }
- }]
- });
- Animal = Backbone.RelationalModel.extend({
- urlRoot: '/animal/'
- });
- AnimalCollection = Backbone.Collection.extend({
- model: Animal,
-
- url: function( models ) {
- return '/animal/' + ( models ? 'set/' + _.pluck( models, 'id' ).join(';') + '/' : '' );
- }
- });
- ```
- ### relatedModel
- Value: a string (which can be resolved to an object type on the global scope), or a reference to a `Backbone.RelationalModel` type.
- ### key
- Value: a string. References an attribute name on `relatedModel`.
- ### type
- Value: a string, or a reference to a `Backbone.Relation` type
- Example: `Backbone.HasOne` or `'HasMany'`.
- ###### **HasOne relations (`Backbone.HasOne`)**
- The key for a `HasOne` relation consists of a single `Backbone.RelationalModel`. The default `reverseRelation.type` for a HasOne relation is HasMany.
- This can be set to `HasOne` instead, to create a one-to-one relation.
- ###### **HasMany relations (`Backbone.HasMany`)**
- The key for a `HasMany` relation consists of a `Backbone.Collection`, containing zero or more `Backbone.RelationalModel`s.
- The default `reverseRelation.type` for a HasMany relation is HasOne; this is the only option here, since many-to-many is not supported directly.
- ###### **<a name="many-to-many"/>Many-to-many relations**
- A many-to-many relation can be modeled using two `Backbone.HasMany` relations, with a link model in between:
- ```javascript
- Person = Backbone.RelationalModel.extend({
- relations: [
- {
- type: 'HasMany',
- key: 'jobs',
- relatedModel: 'Job',
- reverseRelation: {
- key: 'person'
- }
- }
- ]
- });
- // A link object between 'Person' and 'Company', to achieve many-to-many relations.
- Job = Backbone.RelationalModel.extend({
- defaults: {
- 'startDate': null,
- 'endDate': null
- }
- })
- Company = Backbone.RelationalModel.extend({
- relations: [
- {
- type: 'HasMany',
- key: 'employees',
- relatedModel: 'Job',
- reverseRelation: {
- key: 'company'
- }
- }
- ]
- });
- niceCompany = new Company( { name: 'niceCompany' } );
- niceCompany.bind( 'add:employees', function( model, coll ) {
- // Will see a Job with attributes { person: paul, company: niceCompany } being added here
- });
- paul.get( 'jobs' ).add( { company: niceCompany } );
- ```
- ### keySource
- Value: a string. References an attribute on the data used to instantiate `relatedModel`.
- Used to override `key` when determining what data to use when (de)serializing a relation, since the data backing your relations may use different naming conventions.
- For example, a Rails backend may provide the keys suffixed with `_id` or `_ids`. The behavior for `keySource` corresponds to the following rules:
- 1. When a relation is instantiated, the contents of the `keySource` are used as it's initial data.
- 2. The application uses the regular `key` attribute to interface with the relation and the models in it; the `keySource` is not available as an attribute for the model.
- So you may be provided with data containing `animal_ids`, while you want to access this relation as `zoo.get( 'animals' );`.
- **NOTE**: for backward compatibility reasons, setting `keySource` will set `keyDestination` as well.
- This means that when saving `zoo`, the `animals` attribute will be serialized back into the `animal_ids` key.
- **WARNING**: when using a `keySource`, you should not use that attribute name for other purposes.
- ### keyDestination
- Value: a string. References an attribute to serialize `relatedModel` into.
- Used to override `key` (and `keySource`) when determining what attribute to be written into when serializing a relation, since the server backing your relations may use different naming conventions.
- For example, a Rails backend may expect the keys to be suffixed with `_attributes` for nested attributes.
- When calling `toJSON` on a model (either via `Backbone.sync`, or directly), the data in the `key` attribute is transformed and assigned to the `keyDestination`.
- So you may want a relation to be serialized into the `animals_attributes` key, while you want to access this relation as `zoo.get( 'animals' );`.
- **WARNING**: when using a `keyDestination`, you should not use that attribute name for other purposes.
- ### collectionType
- Value: a string (which can be resolved to an object type on the global scope), or a reference to a `Backbone.Collection` type.
- Determine the type of collections used for a `HasMany` relation. If you define a `url(models<Backbone.Model[]>)` function on
- the specified collection, this enables `fetchRelated` to fetch all missing models in one request, instead of firing a separate request for each.
- See [Backbone-tastypie](https://github.com/PaulUithol/backbone-tastypie/blob/master/backbone_tastypie/static/js/backbone-tastypie.js#L92) for an example
- of a `url` function that can build a url for the collection (or a subset of models).
- ### collectionKey
- Value: a string or a boolean
- Used to create a back reference from the `Backbone.Collection` used for a `HasMany` relation to the model on the other side of this relation.
- By default, the relation's `key` attribute will be used to create a reference to the RelationalModel instance from the generated collection.
- If you set `collectionKey` to a string, it will use that string as the reference to the RelationalModel, rather than the relation's `key` attribute.
- If you don't want this behavior at all, set `collectionKey` to false (or any falsy value) and this reference will not be created.
- ### collectionOptions
- Value: an options hash or a function that accepts an instance of a `Backbone.RelationalModel` and returns an option hash
- Used to provide options for the initialization of the collection in the "Many"-end of a `HasMany` relation. Can be an options hash or
- a function that should take the instance in the "One"-end of the "HasMany" relation and return an options hash
- ### includeInJSON
- Value: a boolean, a string referencing one of the model's attributes, or an array of strings referencing model attributes. Default: `true`.
- Determines how the contents of a relation will be serialized following a call to the `toJSON` method. If you specify a:
- * Boolean: a value of `true` serializes the full set of attributes on the related model(s).
- Set to `false` to exclude the relation completely.
- * String: include a single attribute from the related model(s). For example, `'name'`,
- or `Backbone.Model.prototype.idAttribute` to include ids.
- * String[]: includes the specified attributes from the related model(s).
- Only specifying `true` is cascading, meaning the relations of the model will get serialized as well!
- ### createModels
- Value: a boolean. Default: `true`.
- Should models be created from nested objects, or not?
- ### reverseRelation
- If the relation should be bidirectional, specify the details for the reverse relation here.
- It's only mandatory to supply a `key`; `relatedModel` is automatically set. The default `type` for a `reverseRelation` is `HasMany` for a `HasOne` relation (which can be overridden to `HasOne` in order to create a one-to-one relation), and `HasOne` for a `HasMany` relation. In this case, you cannot create a reverseRelation with type `HasMany` as well; please see [Many-to-many relations](#many-to-many) on how to model these type of relations.
- **Please note**: if you define a relation (plus a `reverseRelation`) on a model, but never actually create an instance of that model, the model's `constructor` will never run, which means it's `initializeRelations` will never get called, and the reverseRelation will not be initialized either. In that case, you could either define the relation on the opposite model, or define two single relations. See [issue 20](https://github.com/PaulUithol/Backbone-relational/issues/20) for a discussion.
- ### autoFetch
- Value: a boolean or an Object (see below). Default: `false`.
- If this property is set to `true`, when a model is instantiated the related model is automatically fetched using [fetchRelated](#fetchRelated).
- The value of the property can also be an object. In that case the related model is automatically fetched and the object is passed
- to [fetchRelated](#fetchRelated) as the options parameter.
- ```javascript
- var Shop = Backbone.RelationalModel.extend({
- relations: [{
- type: Backbone.HasMany,
- key: 'customers',
- relatedModel: 'Customer',
- autoFetch: true
- },{
- type: Backbone.HasOne,
- key: 'address',
- relatedModel: 'Address',
- autoFetch: {
- success: function(model, response){
- //...
- },
- error: function(model, response){
- //...
- }
- }
- }
- ]
- ```
- ## <a name="backbone-relationalmodel"/>Backbone.RelationalModel
- `Backbone.RelationalModel` introduces a couple of new methods, events and properties.
- ### Methods
- ###### **getRelations `relationalModel.getRelations()`**
- Returns the set of initialized relations on the model.
- ###### <a name="fetchRelated"/>**fetchRelated `relationalModel.fetchRelated(key<string>, [options<object>], [update<boolean>])`**
- Fetch models from the server that were referenced in the model's attributes, but have not been found/created yet.
- This can be used specifically for lazy-loading scenarios. Setting `update` to true guarantees that the model
- will be fetched from the server and any model that already exists in the store will be updated with the retrieved data.
- The options object specifies options to be passed to [Backbone.sync](http://backbonejs.org/#Sync).
- By default, a separate request will be fired for each additional model that is to be fetched from the server.
- However, if your server/API supports it, you can fetch the set of models in one request by specifying a `collectionType`
- for the relation you call `fetchRelated` on. The `collectionType` should have an overridden `url(models<Backbone.Model[]>)`
- method that allows it to construct a url for an array of models.
- See the example at the top of [Backbone.Relation options](#backbone-relation) or
- [Backbone-tastypie](https://github.com/PaulUithol/backbone-tastypie/blob/master/backbone_tastypie/static/js/backbone-tastypie.js#L92) for an example.
- ### Methods on the type itself
- Several methods don't operate on model instances, but are defined on the type itself.
- ###### **setup `ModelType.setup()`**
- Initialize the relations and submodels for the model type. See the [`Q and A`](#q-and-a) for a possible scenario where
- it's useful to call this method manually.
- ###### **build `ModelType.build(attributes<object>, [options<object>])`**
- Create an instance of a model, taking into account what submodels have been defined.
- ###### **findOrCreate `ModelType.findOrCreate(attributes<string|number|object>, [options<object>])`**
- Search for a model instance in the `Backbone.Relational.store`.
- * If `attributes` is a string or a number, `findOrCreate` will just query the `store` and return a model if found.
- * If `attributes` is an object, the model will be updated with `attributes` if found.
- Otherwise, a new model is created with `attributes` (unless `options.create` is explicitly set to `false`).
- ### Events
- * `add`: triggered on addition to a `HasMany` relation.
- Bind to `add:<key>`; arguments: `(addedModel<Backbone.Model>, related<Backbone.Collection>)`.
- * `remove`: triggered on removal from a `HasMany` relation.
- Bind to `remove:<key>`; arguments: `(removedModel<Backbone.Model>, related<Backbone.Collection>)`.
- * `update`: triggered on changes to the key itself on `HasMany` and `HasOne` relations.
- Bind to `update:<key>`; arguments: `(model<Backbone.Model>, related<Backbone.Model|Backbone.Collection>)`.
- ### Properties
- Properties can be defined along with the subclass prototype when extending `Backbone.RelationalModel` or a subclass thereof.
- ###### <a name="property-submodel-types" />**subModelTypes**
- Value: an object. Default: `{}`.
- A mapping that defines what submodels exist for the model (the `superModel`) on which `subModelTypes` is defined.
- The keys are used to match the [`subModelTypeAttribute`](#property-submodel-type-attribute) when deserializing,
- and the values determine what type of submodel should be created for a key. When building model instances from data,
- we need to determine what kind of object we're dealing with in order to create instances of the right `subModel` type.
- This is done by finding the model for which the key is equal to the value of the
- [`submodelTypeAttribute`](#property-submodel-type-attribute) attribute on the passed in data.
- Each `subModel` is considered to be a proper submodel of its superclass (the model type you're extending),
- with a shared id pool. This means that when looking for an object of the supermodel's type, objects
- of a submodel's type can be returned as well, as long as the id matches. In effect, any relations pointing to
- the supermodel will look for instances of it's submodels as well.
- Example:
- ```javascript
- Mammal = Animal.extend({
- subModelTypes: {
- 'primate': 'Primate',
- 'carnivore': 'Carnivore'
- }
- });
- var Primate = Mammal.extend();
- var Carnivore = Mammal.extend();
- var MammalCollection = AnimalCollection.extend({
- model: Mammal
- });
- // Create a collection that contains a 'Primate' and a 'Carnivore'.
- var mammals = new MammalCollection([
- { id: 3, species: 'chimp', type: 'primate' },
- { id: 5, species: 'panther', type: 'carnivore' }
- ]);
- ```
- Suppose that we have an `Mammal` model and a `Primate` model extending `Mammal`. If we have a `Primate` object with
- id `3`, this object will be returned when we have a relation pointing to a `Mammal` with id `3`, as `Primate` is
- regarded a specific kind of `Mammal`; it's just a `Mammal` with possibly some primate-specific properties or methods.
- Note that this means that there cannot be any overlap in ids between instances of `Mammal` and `Primate`, as the
- `Primate` with id `3` will *be* the `Mammal` with id `3`.
- ###### <a name="property-submodel-type-attribute" />**subModelTypeAttribute**
- Value: a string. Default: `"type"`.
- The `subModelTypeAttribute` is a references an attribute on the data used to instantiate `relatedModel`.
- The attribute that will be checked to determine the type of model that
- should be built when a raw object of attributes is set as the related value,
- and if the `relatedModel` has one or more submodels.
- See [`subModelTypes`](#property-submodel-types) for more information.
- ## <a name="example"/>Example
- ```javascript
- paul = new Person({
- id: 'person-1',
- name: 'Paul',
- user: { id: 'user-1', login: 'dude', email: 'me@gmail.com' }
- });
- // A User object is automatically created from the JSON; so 'login' returns 'dude'.
- paul.get('user').get('login');
- ourHouse = new House({
- id: 'house-1',
- location: 'in the middle of the street',
- occupants: ['person-1', 'person-2', 'person-5']
- });
- // 'ourHouse.occupants' is turned into a Backbone.Collection of Persons.
- // The first person in 'ourHouse.occupants' will point to 'paul'.
- ourHouse.get('occupants').at(0); // === paul
- // If a collection is created from a HasMany relation, it contains a reference
- // back to the originator of the relation
- ourHouse.get('occupants').livesIn; // === ourHouse
- // the relation from 'House.occupants' to 'Person' has been defined as a bi-directional HasMany relation,
- // with a reverse relation to 'Person.livesIn'. So, 'paul.livesIn' will automatically point back to 'ourHouse'.
- paul.get('livesIn'); // === ourHouse
- // You can control which relations get serialized to JSON (when saving), using the 'includeInJSON'
- // property on a Relation. Also, each object will only get serialized once to prevent loops.
- paul.get('user').toJSON();
- /* result:
- {
- email: "me@gmail.com",
- id: "user-1",
- login: "dude",
- person: {
- id: "person-1",
- name: "Paul",
- livesIn: {
- id: "house-1",
- location: "in the middle of the street",
- occupants: ["person-1"] // just the id, since 'includeInJSON' references the 'idAttribute'
- },
- user: "user-1" // not serialized because it is already in the JSON, so we won't create a loop
- }
- }
- */
- // Load occupants 'person-2' and 'person-5', which don't exist yet, from the server
- ourHouse.fetchRelated( 'occupants' );
- // Use the 'add' and 'remove' events to listen for additions/removals on HasMany relations (like 'House.occupants').
- ourHouse.bind( 'add:occupants', function( model, coll ) {
- // create a View?
- console.debug( 'add %o', model );
- });
- ourHouse.bind( 'remove:occupants', function( model, coll ) {
- // destroy a View?
- console.debug( 'remove %o', model );
- });
- // Use the 'update' event to listen for changes on a HasOne relation (like 'Person.livesIn').
- paul.bind( 'update:livesIn', function( model, attr ) {
- console.debug( 'update to %o', attr );
- });
- // Modifying either side of a bi-directional relation updates the other side automatically.
- // Make paul homeless; triggers 'remove:occupants' on ourHouse, and 'update:livesIn' on paul
- ourHouse.get('occupants').remove( paul.id );
- paul.get('livesIn'); // yup; nothing.
- // Move back in; triggers 'add:occupants' on ourHouse, and 'update:livesIn' on paul
- paul.set( { 'livesIn': 'house-1' } );
- ```
- This is achieved using the following relations and models:
- ```javascript
- House = Backbone.RelationalModel.extend({
- // The 'relations' property, on the House's prototype. Initialized separately for each instance of House.
- // Each relation must define (as a minimum) the 'type', 'key' and 'relatedModel'. Options are
- // 'includeInJSON', 'createModels' and 'reverseRelation', which takes the same options as the relation itself.
- relations: [
- {
- type: Backbone.HasMany, // Use the type, or the string 'HasOne' or 'HasMany'.
- key: 'occupants',
- relatedModel: 'Person',
- includeInJSON: Backbone.Model.prototype.idAttribute,
- collectionType: 'PersonCollection',
- reverseRelation: {
- key: 'livesIn'
- }
- }
- ]
- });
- Person = Backbone.RelationalModel.extend({
- relations: [
- { // Create a (recursive) one-to-one relationship
- type: Backbone.HasOne,
- key: 'user',
- relatedModel: 'User',
- reverseRelation: {
- type: Backbone.HasOne,
- key: 'person'
- }
- }
- ],
-
- initialize: function() {
- // do whatever you want :)
- }
- });
- PersonCollection = Backbone.Collection.extend({
- url: function( models ) {
- // Logic to create a url for the whole collection, or a set of models.
- // See the tests, or Backbone-tastypie, for an example.
- return '/person/' + ( models ? 'set/' + _.pluck( models, 'id' ).join(';') + '/' : '' );
- }
- });
- User = Backbone.RelationalModel.extend();
- ```
- ## <a name="q-and-a"/>Known problems and solutions
- > **Q:** (Reverse) relations or submodels don't seem to be initialized properly (and I'm using CoffeeScript!)
- **A:** You're probably using the syntax `class MyModel extends Backbone.RelationalModel` instead of `MyModel = Backbone.RelationalModel.extend`.
- This has advantages in CoffeeScript, but it also means that `Backbone.Model.extend` will not get called.
- Instead, CoffeeScript generates piece of code that would normally achieve roughly the same.
- However, `extend` is also the method that Backbone-relational overrides to set up relations and other things as you're defining your `Backbone.RelationalModel` subclass.
- For exactly this scenario where you're not using `.extend`, `Backbone.RelationalModel` has the `.setup` method, that you can call manually after defining your subclass CoffeeScript-style. For example:
- ```javascript
- class MyModel extends Backbone.RelationalModel
- relations: [
- // etc
- ]
- MyModel.setup()
- ```
- See [issue #91](https://github.com/PaulUithol/Backbone-relational/issues/91) for more information.
- > **Q:** After a fetch, I don't get `add:<key>` events for nested relations.
- **A:** This is due to `Backbone.Collection.reset` silencing add events. Pass `fetch( {add: true} )` to bypass this problem.
- You may want to override `Backbone.Collection.fetch` for this, and also trigger an event when the fetch has finished while you're at it.
- Example:
- ```javascript
- var _fetch = Backbone.Collection.prototype.fetch;
- Backbone.Collection.prototype.fetch = function( options ) {
- options || ( options = {} );
- _.defaults( options, { add: true } );
- // Remove old models
- this.reset();
-
- // Call 'fetch', and trigger an event when done.
- var dit = this,
- request = _fetch.call( this, options );
- request.done( function() {
- if ( !options.silent ) {
- dit.trigger( 'fetch', dit, options );
- }
- });
- return request;
- };
- ```
- ## <a name="under-the-hood"/>Under the hood
- Each `Backbone.RelationalModel` registers itself with `Backbone.Store` upon creation (and is removed from the `Store` when destroyed).
- When creating or updating an attribute that is a key in a relation, removed related objects are notified of their removal,
- and new related objects are looked up in the `Store`.