mojito
Version:
Mojito provides an architecture, components and tools for developers to build complex web applications faster.
60 lines (48 loc) • 1.56 kB
JavaScript
/*
* Copyright (c) 2011-2013, Yahoo! Inc. All rights reserved.
* Copyrights licensed under the New BSD License.
* See the accompanying LICENSE file for terms.
*/
/*jslint anon:true, sloppy:true*/
/*global YUI*/
YUI.add('LazyLoadBinderIndex', function(Y, NAME) {
Y.namespace('mojito.binders')[NAME] = {
init: function(mojitProxy) {
this.mp = mojitProxy;
},
bind: function(node) {
var my = this;
// immediately load the lazy mojit in my config
this.mp.invoke('load', {
params: {
body: {
mojit: this.mp.proxied
}
}
}, function(err, data) {
if (err) {
my.mp.broadcast('lazy-load-error',
{
error: err,
proxied: my.mp.proxied
});
} else {
// replace node completely
var markup = Y.JSON.parse(data).lazy;
node.replace(markup);
// notify
my.mp.broadcast('lazy-load-complete',
{
mojit: my.mp.proxied
});
// SEPPUKU!! (but leave the node on the DOM)
my.mp.destroySelf(true);
}
});
}
};
}, '0.0.1', {requires: [
'mojito-client',
'node',
'json'
]});