Socket
Socket
Sign inDemoInstall

backbone.nested-types

Package Overview
Dependencies
2
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    backbone.nested-types

backbone.js extension adding type annotations to model attributes, easiest possible way of dealing with nested models and collections, and native properties for attributes. Providing you with a more or less complete, simple, and powerful object system for


Version published
Maintainers
1
Install size
1.10 MB
Created

Readme

Source

0.10.0 Release Notes

  • attribute get and set hooks
    • they can be chained now. Thus, they work on Model.from and Collection.subsetOf
    • they takes attribute name as second argument
    • fixed bug in set hook (returning undefined didn't prevent attribute modification in some cases)
  • Model
    • Model.defaults() - added syntax for inline nested model definitions.
    • .isValid - fixed exception
    • .set now report error when not a plain object is passed as argument.
    • .deepClone now pass options through the nested calls
    • Model constructor now pass options to the nested constructors in defaults (except 'parse' and 'collection')
  • Model.from: fixed bug (assignment of the same id to resolved reference caused unnecessary 'change' event)
  • Collection:
    • Collection.defaults() - added syntax for inline nested collection definitions.
    • 'sort' event now doesn't count as nested attribute update, and won't bubble (it caused multiple problems)
  • Collection.subsetOf improvements:
    • Collections of different types now can be assigned to each other (model arrays will be passed to .set).
    • Added set manipulation methods: addAll, removeAll, justOne.

backbone.nestedTypes

NestedTypes is the type system for JavaScript, implemented on top of Backbone. It solve common architectural problems of Backbone applications, providing simple yet powerful tools to deal with complex nested data structures. Brief feature list:

  • Class and Integer types
  • Native properties for Model attributes, Collection, and Class.
  • Inline Collection definition syntax for Models.
  • Model.defaults inheritance and deep copying.
  • Type declarations and automatic type casts for Model attributes.
  • Easy handling of Date attributes.
  • Nested models and collections.
  • One-to-many and many-to-many models relations.
  • 'change' event bubbling for nested models and collections.
  • Attribute-level control for parse/toJSON and event bubbling.
  • Run-time type error detection and logging.

How it feels like

It feels much like statically typed programming language. Yet, it's vanilla JavaScript.

var User = Nested.Model.extend({
    urlRoot : '/api/users',

    attributes : {
        // Primitive types
        login    : String, // = ""
        email    : String.value( null ), // = null
        loginCount : Number.options({ toJSON : false }) // = 0, not serialized
        active   : Boolean.value( true ), // = true

        created  : Date, // = new Date()

        settings : Settings, // nested model

        // collection of models, received as an array of model ids
        roles    : Role.Collection.SubsetOf( rolesCollection ),
        // reference to model, received as model id.
        office : Office.From( officeCollection )
    }
});

var collection = new User.Collection(); // Collection is already there...
collection.fetch().done( function(){
    var user = collection.first();
    console.log( user.name ); // native properties
    console.log( user.office.name );
    console.log( user.roles.first().name );
});

Types are being checked in run-time on assignment, but instead of throwing exceptions it tries to cast values to defined types. For example:

    user.login = 1;
    console.assert( user.login === "1" );

    user.active = undefined;
    console.assert( user.active === false );

    user.loginCount = "hjkhjkhfjkhjkfd";
    console.assert( _.isNan( user.loginCount ) );

    user.settings = { timeZone : 180 }; // same as user.settings.set({ timeZone : 180 })
    console.assert( user.settings instanceof Settings );

Requirements & Installation

All modern browsers and IE9+ are supported. To install, type

bower install backbone.nested-types

or

npm install backbone.nested-types

or just copy 'nestedtypes.js' file to desired location.

NestedTypes is compatible with node.js, CommonJS/AMD (e.g. RequireJS) module loaders, and could be included with plain script tag as well. To include it, use

var NestedTypes = require( 'nestedtypes');

or

require([ 'nestedtypes' ], function( NestedTypes ){

or

<script src="nestedtypes.js" type="text/javascript"></script>

API Reference

Basic features

Model.defaults:

  • Models.attributes as an alternative to 'defaults'
  • Native properties are created for every entry.
  • Entries are inherited from the base Model.defaults/attributes.
  • JSON literals will be deep copied upon creation of model.
  • attributes must be declared in defaults/attributes.

'defaults' spec may be a function or object, 'attributes' must be an object.

    var UserInfo = Nested.Model.extend({
        defaults : {
            name : 'test',
        }
    });

    var DetailedUserInfo = UserInfo.extend({
        attributes : { // <- the same as 'defaults', use whatever you like
            login : '',
            roles : [ 'user' ]
        }
    });

    var user = new DetailedUserInfo();

    // user.get( 'name' ) would be undefined in plain Backbone.
    console.assert( user.name === 'test' ); // you still can use 'get', but why...
    user.name = 'admin';

    // In Backbone all models will share the same instance of [ 'user' ] array.
    // So, following line will create a bug. Not in NestedTypes.
    user.roles.push( 'admin' );

Inline collection definition (Model.collection).

By the way, our models from previous example has collections defined already.

    var users = new UserInfo.Collection();
    var detailedUsers = new DetailedUserInfo.Collection();

Every model definition creates Collection type extending base Model.Collection. Collection.model and Collection.url properties are taken from model. You could customize collection with a spec in Model.collection, which then will be passed to BaseModel.Collection.extend.

var DetailedUserInfo = UserInfo.extend({
    urlBase : '/api/detailed_user/',

    defaults : {
        login : '',
        roles : [ 'user' ]
    },

    collection : {
        initialize : function(){
            this.fetch();
        }
    }
});

/*
    DetailedUserInfo.Collection = UserInfo.Collection.extend({
        url : '/api/detailed_user/',
        model : DetailedUserInfo,

        initialize: function(){
            this.fetch();
        }
    });
*/

Class type, which can be extended and can throw/listen to events.

    var A = Nested.Class.extend({
        a : 1,

        initialize : function( options ){
            this.listenTo( options.other, 'event', doSomething )
        },

        doSomething : function(){
            this.trigger( 'something' );
        }
    });

    var B = A.extend({
        b : 2,

        initialize : function( options ){
            A.prototype.initialize.apply( this, arguments );
            this.listenTo( options.another, 'event', doSomething )
        },
    });

    var b = new B( options );

Explicit native properties definition (Model, Class, Collection).

Native properties are generated for model attributes, however, they also can be defined explicitly for Model, Class, Collection with 'properties' specification.

For Model, explicit property will override generated one, and "properties : false" disable defaults native properties generation.

    var A = Nested.Model.extend({
        defaults : {
            a : 1,
            b : 2
        },

        properties : {
            c : function(){
                return this.a + this.b;
            },

            ax2 : {
                get : function(){
                    return this.a * 2;
                },

                set : function( value ){
                    this.a = value / 2;
                    return value;
                }
            }
        }
    });

    var a = new A();
    console.assert( a.c === 3 );

    a.ax2 = 4;
    console.assert( a.c === 2 );

Run-time errors

NestedTypes detect three error types in the runtime, which will be logged to console using console.error.

[Type error](Model.extend) Property "name" conflicts with base class members.

It's forbidden for native properties to override members of the base Model. Since native properties are generated for Model.defaults elements, its also forbidden to have attribute names which are the same as members of the base Model.

[Type Error](Model.set) Attribute hash is not an object: ...

First argument of Model.set must be either string, or literal object representing attribute hash.

[Type Error](Model.set) Attribute "name" has no default value.

Attempt to set attribute which is not declared in defaults.

Model.defaults Type Specs

Basic type annotation syntax and rules

IMPORTANT! Model.defaults must be an object to use attribute type annotations features described here. defaults function body is supported for backward compatibility with backbone only, in order to simplify transition.

Type specs can be optionally used instead of init values in Model.defaults. They looks like this:

name : Constructor

or

name : Constructor.value( x )

where Constructor is JS constructor function, and x is its default value.

When default value is not specified, typed attribute is initialized invoking 'new Constructor()'.

As a general rule, when typed attribute is assigned with the value...

  • which is null, attribute will be set to null.
  • which is an instance of Constructor, attribute's value will be replaced.
  • in other case, NestedTypes will try to convert value to the Constructor type, typically invoking "new Constructor( value )". This type conversion algorithm may be overriden for some selected types.

When receiving data from server, type cast logic is used to parse JSON responce; typically you don't need to override Model.parse.

When sending data to the server, Constructor.toJSON will be invoked to produce JSON for typed attributes, so you don't need to override Model.toJSON for that.

var A = Nested.Model.extend({
    defaults : {
        obj1 : Ctor, // = new Ctor()
        obj2 : Ctor.value( null ), // = null
        obj3 : Ctor.value( something ), // = new Ctor( something )
    }
});

var a = A();

a.obj2 = "dsds"; // a.obj2 = new Ctor( "dsds" );

console.assert( a.obj2 instanceof Ctor );

Primitive types (Boolean, Number, String, Integer)

Primitive types are special in a sense that they are inferred from their values, so they are always typed. In most cases special type annotation syntax is not really required.

It means that if attribute has default value of 5 then it's guaranteed to be Number or null (it will be casted to Number on assignments). This is quite different from original Backbone's behaviour which you might expect, and it makes models safer. For polimorphic attributes holding different types you can disable type inference using 'Nested.value'.

IMPORTANT! Although it's not possible to use type annotations in Model.defaults function body, primitive types will be inferred from their values in this case. So beware.

NestedTypes adds global Integer type, to be used in type annotations. It behaves the same as Number, but convert values to integer on attribute assignment using Math.round. Integer type is not being inferred from the values, and needs to be specified explicitly.

var A = Nested.Model.extend({
    defaults : {
        // Original backbone behaviour - no type, value is 3232
        untyped : Nested.value( 3232 )

        // defaults with primitive types are always 'typed'
        number  : 5,           // same as Number.value( 5 )
        integer : Integer.value( 6 ),
        string  : 'something', // same as String.value( 'something' )
        string1 : '',          // same as String
        boolean : true,        // same as Boolean.value( true )

        initWithNull  : String.value( null ), // Type is String, default value is null
    }
});

var a = A();

a.boolean = "hello";
console.assert( a.boolean === true );

a.number = "5";
console.assert( a.number === 5 );

a.number = "hjhjfd";
console.assert( _.isNaN( a.number ) );

a.integer = 1.5423;
console.assert( a.integer === 2 );

a.string = 5;
console.assert( a.string === "5" );

a.boolean = 0;
console.assert( a.boolean === false );

Date type

  • Automatic parsing of common JSON date representations.
  • Automatically serialized to ISO string (don't need to override toJSON)

Date attributes free you from overriding Model.parse or Model.toJSON when you want to transfer dates between server and client.

Strings and numbers will be converted to date with Date constructor. NestedTypes contains additional logic to implement cross-browser ISO date parsing and handling of MS date format.

On serialization, Date.toJSON will be invoked for date attribute, producing UTC-0 ISO date string representation.

var A = Nested.Model.extend({
    defaults : {
        created : Date, // = new Date()
        updated : Date.value( null ), // = null
        a : Date.value( 327943789 ), //  = new Date( 327943789 )
        b : Date.value( "2012-12-12 12:12" ) //  = new Date( "2012-12-12 12:12" )
    }
});

var a = A();

a.updated = '2012-12-12 12:12';
console.assert( a.updated instanceof Date );

a.updated = '/Date(32323232323)/';
console.assert( a.updated instanceof Date );

Nested Models and Collections

  • automatic parsing and serialization
  • 'deep updates' and 'deep clone'
  • 'change' event bubbling

To define nested model or collection, just annotate attributes with Model or Collection type.

Note, that Backbone's .clone() method will create shallow copy of the root model, while Model.deepClone() and Collection.deepClone() will clone model and collection with all subitems.

var User = Nested.Model.extend({
    defaults : {
        name        : String,
        created     : Date,
        group       : GroupModel,
        permissions : PermissionCollection
    }
});

var a = new User(),
    b = a.deepClone();

Model/Collection type cast behavior depends on attribute value before assignment:

  • If attribute value is null, Model/Collection constructor will be invoked as for usual types.
  • If attribute already holds model or collection, deep update will be performed instead.

"Deep update" means that model/collection object itself will remain in place, and 'set' method will be used to perform an update.

I.e. this code:

var user = new User();
user.group = {
    name: "Admin"
};

user.permissions = [{ id: 5, type: 'full' }];

is equivalent of:

user.group.set({
   name: "Admin"
};

user.permissions.set( [{ id: 5, type: 'full' }] );

This mechanics of 'set' allows you to work with JSON from in case of deeply nested models and collections without the need to override 'parse'. This code (considering that nested attributes defined as models):

user.group = {
    nestedModel : {
        deeplyNestedModel : {
            attr : 'value'
        },

        attr : 5
    }
};

is almost equivalent of:

user.group.nestedModel.deeplyNestedModel.set( 'attr', 'value' );
user.group.nestedModel.set( 'attr', 'value' );

but it will fire just single change event.

Change events will be bubbled from nested models and collections.

  • change and change:attribute events for any changes in nested models and collections. Multiple change events from submodels during bulk updates are carefully joined together, which make it suitable to subscribe View.render to the top model's change.
  • replace:attribute event when model or collection is replaced with new object. You might need it to subscribe for events from submodels.
  • It's possible to control event bubbling for every attribute. You can completely disable it, or override the list of events which would be counted as change:
var M = Nested.Model.extend({
	defaults: {
		bubbleChanges : ModelOrCollection,

		dontBubble : ModelOrCollection.options({ triggerWhanChanged : false })
		}),

		bubbleCustomEvents : ModelOrCollection.options({
            triggerWhanChanged : 'event1 event2 whatever'
		}),
	}
});

Inline nested Models and Collections definitions

Simple models and collections can be defined with special shortened syntax.

It's useful in case of deeply nested JS objects, when you previously preferred plain objects and arrays in place of models and collections. Now you could easily convert them to nested types, enjoying nested changes detection and 'deep update' features.

var M = Nested.Model.extend({
    defaults :{
        nestedModel : Nested.defaults({ // define model extending base Nested.Model
            a : 1,
            b : MyModel.defaults({ //define model extending specified model
                items : Collection.defaults({ // define collection of nested models
                    a : 1,
                    b : 2
                })

            })
        })
    }
})

Attribute options

  • type and value
  • override native property
  • override parse/toJSON

Attribute options spec allow for a full control on the attribute options, including 'type' and 'value'. Attribute type specification is the special case of options spec, which, in its most general form, looks like this:

Nested.options({ ... })

The relation between short and long forms of attribute options spec is summarized in the table below:

Short formLong form
TypeNested.options({ type : Type })
Type.options({ ... })Nested.options({ type : Type, ... })
Nested.value( x )Nested.options({ value : x })
Type.value( x )Nested.options({ type : Type, value: x })

Both long and short forms of attribute options are chainable. I.e. following constructs are possible:

Type.value( x ).options({ ... }) // same as Nested.options({ type : Type, value : x, ... })
Nested.value( x ).options({ ... }) // = Nested.options({ value : x, ... })
Nested.options({ ... }).value( x ) // = Nested.options({ value : x, ... })
...

Available options so far are:

type
type : Ctor

Attribute's type (constructor function). When no type is provided, attribute behaves as regular backbone attribute.

value
value : x

Attribute's default value. When type is specified, value will be casted to this type on construction.

toJSON
toJSON : function( attrValue, attrName ){ return attrValue.toJSON(); }
or
toJSON : false

When attribute will be serialized as a part of model, given function will be used instead of attribute's toJSON. Function will be executed in the context of the model.

Specifying 'false' will prevent attribute form serialization.

parse
parse  : function( data ){ return data; }

When attribute is parsed as a part of the model, given function will be called before calling the attribute's parse.

get hook
get : function( value, attrName ){ return value; }

Called on Model.get in the context of the model, allowing you to modify returned value.

set hook
set : function( value, attrName ){ return value; }

Called on Model.set in the context of the model, allowing you to modify value before set ot cancel setting of the attribute, returning 'undefined'.

set hook is executed on every attribute change, after type cast. So, it's guaranteed that value will be of the correct type.

For nested models and collections it will be called only in case when model/collection instance will be replaced, which makes it a perfect place to handle custom events subscriptions.

property
property : function( name ){
    return {
        get : function(){
            return this.attribute[ name ];
        },

        set: function( value ){
            this.set( name, value );
            return value;
        }
    }
}

or

property : false

This option is used to override attribute's native property. 'false' option will disable native property generation for this attribute.

It's low level, so use it with extreme care.

triggerWhenChanged
triggerWhenChanged : String
or
triggerWhenChanged : false

trigger 'change' event on the model when given list of events are triggered by the attribute. Specify 'false' to turn off event bubbling.

One-to-many and many-to-many model relations

Sometimes when you have one-to-many and many-to-many relationships between Models, it is suitable to transfer such a relationships from server as arrays of model ids. NestedTypes gives you special attribute data types for this situation.

var User = Nested.Model.extend({
    defaults : {
        name : String,
        roles : RolesCollection.subsetOf( roles ) // <- serialized as array of model ids
        location : Location.from( locations ) // <- serialized as model id
    }
});

var user = new User({ id: 0 });
user.fetch(); // <- you'll receive from server "{ id: 0, name : 'john', roles : [ 1, 2, 3 ] }"
...
// however, user.roles behaves like normal collection of Roles.
assert( user.roles instanceof Collection );
assert( user.roles.first() instanceof Role );

Collection.subsetOf is a collection of models taken from existing collection. On first access of attribute of this type, it will resolve ids to real models from the given master collection.

If master collection is empty and thus references cannot be resolved, it will defer id resolution and just return empty collection or null. If master collection is not empty, it will filter out ids of non-existent models.

Master collection reference may be:

  • direct reference to collection object
  • string, designating reference to the current model's member relative to 'this'.
  • function, which returns reference to collection and executed in the context of the current model.
var User = Nested.Model.extend({
    defaults : {
        name : String,
        roles : Collection.subsetOf( 'collection.roles' ); // this.collection.roles
        location : Location.from( function(){ return this.collection.locations; }); // this.collection.locations
    }
});

There's a global store for the collections, which might be useful in case of bi-directional relationships. It's available as a member of Model (this.store), and globally as Nested.store.

Store needs to be initialized with a hash of collections and models type specs. It can be initialized several times. On first access to every member of the store, it will fetch data from the server automatically. You need to take care of update events.

Nested.store = {
    roles : Role.Collection,
    locations : Locations.Collection
}

var User = Nested.Model.extend({
    defaults : {
        name : String,
        roles : Collection.subsetOf( 'store.roles' ); // this.store.roles
        location : Location.from( function(){ return this.store.locations; }); // this.store.locations
    }
});

Store behaves as regular model, but provide some additional methods:

  • fetch() will update all store members, which are loaded.
  • fetch( 'name1', 'name2', ... ) will fetch listed members and return promise.
  • clear() will clear all collections in store and return store to allow chained calls.
  • clear( 'name1', 'name2', ... ) will clear listed members.

Note, that 'change' events won't be bubbled from models in Collection.subsetOf. Other collection's events will.

For Model.from attribute no model changes will be bubbled.

Keywords

FAQs

Last updated on 20 Apr 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc