Last active
December 12, 2015 09:29
-
-
Save wulftone/4751672 to your computer and use it in GitHub Desktop.
Rivetsjs adapter for backbonejs
This file contains 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
rivets.configure({ | |
adapter: { | |
subscribe: function(obj, keypath, callback) { | |
if (obj instanceof Backbone.Collection) { | |
obj.on('add remove reset', function () { | |
callback(obj[keypath]) | |
}); | |
} else { | |
obj.on('change:' + keypath, function (m, v) { callback(v) }); | |
}; | |
}, | |
unsubscribe: function(obj, keypath, callback) { | |
if (obj instanceof Backbone.Collection) { | |
obj.off('add remove reset', function () { | |
callback(obj[keypath]) | |
}); | |
} else { | |
obj.off('change:' + keypath, function (m, v) { callback(v) }); | |
}; | |
}, | |
read: function(obj, keypath) { | |
if (obj instanceof Backbone.Collection) { | |
return obj[keypath]; | |
} else { | |
return obj.get(keypath); | |
}; | |
}, | |
publish: function(obj, keypath, value) { | |
if (obj instanceof Backbone.Collection) { | |
obj[keypath] = value; | |
} else { | |
obj.set(keypath, value); | |
}; | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not sure if obj.off will unbind the callback (line 18), since the second parameter is a newly created function, not the same from line 9.