Created
September 15, 2012 19:47
-
-
Save yethee/3729470 to your computer and use it in GitHub Desktop.
Prototype of lazy-load a module of Marionette
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
App.module("FooModule.Bar", { | |
startWithApp: false, | |
define: function() { | |
// Code of submodule | |
} | |
}); |
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
App.module("FooModule", { | |
startWithApp: false, | |
define: function(Module, App, Backbone, Marionette, $, _) { | |
var Controller = function() {}; | |
_.extend(Controller.prototype, { | |
index: function() {}, | |
showItem: function(id) {} | |
}); | |
Module.addInitializer(function(options) { | |
var controller = new Controller(); | |
Module.controller = controller; | |
App.vent.on("foo-module:index", controller.index, controller); | |
App.vent.on("foo-module:show-item", controller.showItem, controller); | |
}); | |
Module.addFinalizer(function() { | |
var controller = Module.controller; | |
App.vent.off("foo-module:index", controller.index, controller); | |
App.vent.off("foo-module:show-item", controller.showItem, controller); | |
delete Module.controller; | |
}); | |
} | |
}); |
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
App = new Backbone.Marionette.Application(); | |
(function(App) { | |
var currentModule; | |
// Handles the event to stop previous module to release resources | |
App.vent.on("module:start", function(module) { | |
if (currentModule && currentModule !== module) { | |
currentModule.stop(); | |
} | |
currentModule = module; | |
}); | |
})(App); |
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
App.ModuleManager = (function(App, _) { | |
var config = {}; | |
return { | |
registerResource: function(moduleName, src) { | |
if (!_.has(config, moduleName)) { | |
config[moduleName] = { | |
resources: [] | |
}; | |
} | |
config[moduleName].resources.push(src); | |
}, | |
getModule: function(moduleName) { | |
var moduleConfig = config[moduleName]; | |
if (!moduleConfig.promise) { | |
var deferred = $.Deferred(); | |
yepnope({ | |
load: moduleConfig.resources, | |
complete: function() { | |
deferred.resolve(App.module(moduleName)); | |
} | |
}); | |
moduleConfig.promise = deferred.promise(); | |
} | |
return moduleConfig.promise; | |
} | |
}; | |
})(App, jQuery, _, yepnope); |
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
App.ModuleRouter = (function(App, Backbone, $) { | |
// "routes": A hash of urls and event names | |
return Backbone.Router.extend({ | |
_bindRoutes: function() { | |
var routes = []; | |
for (var route in this.routes) { | |
if (this.routes.hasOwnProperty(route)) { | |
routes.push([route, this.routes[route]]); | |
} | |
} | |
for (var i = 0, l = routes.length; i < l; i++) { | |
this.route(routes[i][0], routes[i][1], this.createTrigger(routes[i][1])); | |
} | |
}, | |
createTrigger: function(eventName) { | |
var that = this; | |
return function() { | |
var args = _.toArray(arguments); | |
args.unshift(eventName); | |
that.trigger.apply(that, args); | |
} | |
}, | |
trigger: function() { | |
var that = this; | |
var args = arguments; | |
$.when(App.ModuleManager.getModule(this.moduleName)).then(function(module) { | |
module.start(that.moduleOptions); | |
App.vent.trigger("module:start", module); | |
App.vent.trigger.apply(App.vent, args); | |
}); | |
} | |
}); | |
})(App, Backbone, jQuery); |
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
App.module("Routing.FooModule", function(Module, App, Backbone, Marionette, $, _) { | |
var Router = App.ModuleRouter.extend({ | |
moduleName: "FooModule", | |
routes: { | |
"": "foo-module:index", | |
"item/:id": "foo-module:show-item" | |
}, | |
initialize: function(options) { | |
this.moduleOptions = options.moduleOptions; | |
} | |
}); | |
App.addInitializer(function(options) { | |
new Router({ moduleOptions: options }); | |
}); | |
}); |
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
<!DOCTYPE html> | |
<html> | |
<head></head> | |
<body> | |
<script type="text/javascript" src="/assets/js/vendor/backbone.js"></script> | |
<script type="text/javascript" src="/assets/js/vendor/backbone.marionette.js"></script> | |
<script type="text/javascript" src="/assets/js/app.js"></script> | |
<script type="text/javascript" src="/assets/js/app.modulemanager.js"></script> | |
<script type="text/javascript" src="/assets/js/app.modulerouter.js"></script> | |
<script type="text/javascript" src="/assets/js/app.routing.foomodule.js"></script> | |
<script type="text/javascript"> | |
App.ModuleManager.registerResource("FooModule", '/assets/js/app.foomodule.js'); | |
App.ModuleManager.registerResource("FooModule", '/assets/js/app.foomodule.bar.js'); | |
</script> | |
<script type="text/javascript"> | |
App.start(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment