Created
May 8, 2012 17:16
-
-
Save tjbladez/2637522 to your computer and use it in GitHub Desktop.
basic computed properties in backbone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Namespace.models.Base = Backbone.Model.extend | |
initialize: ()-> | |
Backbone.Model::initialize @, arguments | |
return if _.isUndefined(@computed) | |
@_computed = {} | |
for attr, dependencies of @computed | |
@on "change:#{attr}", ()=> | |
@_computed[attr] = @[attr].call @ | |
_(dependencies).each (dep)=> | |
@on "change:#{dep}", ()=> | |
@trigger "change:#{attr}" | |
@trigger "change:#{attr}" if @has(dep) | |
get: (attr)-> | |
if @computed?.hasOwnProperty(attr) | |
@_computed[attr] | |
else | |
Backbone.Model::get.call @, attr | |
Namespace.models.Example = Namespace.models.Base.extend | |
computed: | |
fullName: ['firstName', 'lastName'] | |
fullName: ()-> | |
"#{@get('firstName')} #{@get('lastName')}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Greetings,
Here is a small function that implements computed properties for Backbone https://github.com/curran/backboneComputedProperties .
Regards,
Curran