Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nornagon
Created January 23, 2010 04:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nornagon/284442 to your computer and use it in GitHub Desktop.
Save nornagon/284442 to your computer and use it in GitHub Desktop.
asynchronous require() for JavaScript. Uses prototype.js.
var require = (function () {
var _required = {};
return (function (url, callback) {
if (typeof url == 'object') {
// we've (hopefully) got an array: time to chain!
if (url.length > 1) {
// load the nth file as soon as everything up to the n-1th one is done.
require(url.slice(0,url.length-1), function () {
require(url[url.length-1], callback);
});
} else if (url.length == 1) {
require(url[0], callback);
}
return;
}
if (typeof _required[url] == 'undefined') {
// haven't loaded this url yet; gogogo!
_required[url] = [];
var script = new Element('script', {src: url, type: 'text/javascript'});
script.observe('load', function () {
console.log("script " + url + " loaded.");
_required[url].each(function (cb) {
cb.call(); // TODO does this execute in the right context?
});
_required[url] = true;
});
$$('head')[0].insert(script);
} else if (typeof _required[url] == 'boolean') {
// we already loaded the thing, so go ahead
if (callback) { callback.call(); }
return;
}
if (callback) { _required[url].push(callback); }
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment