Skip to content

Instantly share code, notes, and snippets.

@ianmstew
Last active August 29, 2015 14:05
Show Gist options
  • Save ianmstew/d64110142018b2b04233 to your computer and use it in GitHub Desktop.
Save ianmstew/d64110142018b2b04233 to your computer and use it in GitHub Desktop.
define(function (require) {
var Backbone = require('backbone');
var Marionette = require('marionette');
var eventedClasses = [
Backbone.Model,
Backbone.Collection,
Marionette.Controller,
Marionette.Object,
Marionette.Region,
Marionette.Behavior,
Marionette.Application,
Marionette.Module,
Marionette.View
];
function stopListeningWrapper (stopListening) {
var origArgs = Array.prototype.slice.call(arguments, 1);
this.stopComplying();
this.stopReplying();
return stopListening.apply(this, origArgs);
}
var RadioEvents = {
_repliers: null,
_compliers: null,
complyWith: function (channel, command, complier) {
channel.comply(command, complier);
this._compliers = this._compliers || [];
this._compliers.push([channel, command]);
return this;
},
replyWith: function (channel, request, replier) {
channel.reply(request, replier);
this._repliers = this._repliers || [];
this._repliers.push([channel, request]);
return this;
},
stopComplying: function () {
_.each(this._compliers, function (complier) {
var channel = complier[0];
var command = complier[1];
channel.stopComplying(command);
});
return this;
},
stopReplying: function () {
_.each(this._repliers, function (replier) {
var channel = replier[0];
var request = replier[1];
channel.stopReplying(request);
});
return this;
},
stopListening: _.wrap(Backbone.Events.stopListening, stopListeningWrapper)
};
_.each(eventedClasses, function (eventedClass) {
_.extend(eventedClass.prototype, RadioEvents);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment