knockout-amd-helpers
Version:
Makes Knockout and AMD modules work better together
140 lines (112 loc) • 6.05 kB
JavaScript
function defaultModuleLoader(moduleName, done) {
require([addTrailingSlash(ko.bindingHandlers.module.baseDir) + moduleName], done);
}
//an AMD helper binding that allows declarative module loading/binding
ko.bindingHandlers.module = {
init: function(element, valueAccessor, allBindingsAccessor, data, context) {
var extendedContext, extractedNodes, disposeModule,
options = unwrap(valueAccessor()),
templateBinding = {},
initializer = ko.bindingHandlers.module.initializer,
disposeMethod = ko.bindingHandlers.module.disposeMethod;
//build up a proper template binding object
templateBinding.templateEngine = options && options.templateEngine;
//allow binding template to a string on module (can override in binding)
templateBinding.templateProperty = ko.bindingHandlers.module.templateProperty;
//afterRender could be different for each module, create a wrapper
templateBinding.afterRender = function(nodes, data) {
var handler,
options = unwrap(valueAccessor());
if (options && options.afterRender) {
handler = typeof options.afterRender === "string" ? data && data[options.afterRender] : options.afterRender;
if (typeof handler === "function") {
handler.apply(this, arguments);
}
}
};
if (options && options.moveNodesToContext) {
extractedNodes = Array.prototype.slice.call(ko.virtualElements.childNodes(element));
ko.virtualElements.emptyNode(element);
}
//if this is not an anonymous template, then build a function to properly return the template name
if (!isAnonymous(element)) {
templateBinding.name = function() {
var template = unwrap(valueAccessor());
return ((template && typeof template === "object") ? unwrap(template.template || template.name) : template) || "";
};
}
//set the data to an observable, that we will fill when the module is ready
templateBinding.data = ko.observable();
templateBinding["if"] = templateBinding.data;
//actually apply the template binding that we built. extend the context to include a $module property
ko.applyBindingsToNode(element, { template: templateBinding }, extendedContext = context.extend({ $module: null, $moduleTemplateNodes: extractedNodes }));
//disposal function to use when a module is swapped or element is removed
disposeModule = function() {
//avoid any dependencies
ko.computed(function() {
var currentData = templateBinding.data();
if (currentData) {
if (typeof currentData[disposeMethod] === "function") {
currentData[disposeMethod].call(currentData);
currentData = null;
}
templateBinding.data(null);
}
}).dispose();
extractedNodes = null;
};
//now that we have bound our element using the template binding, pull the module and populate the observable.
ko.computed({
read: function() {
//module name could be in an observable
var initialArgs,
moduleLoader = ko.bindingHandlers.module.loader || defaultModuleLoader,
moduleName = unwrap(valueAccessor());
//observable could return an object that contains a name property
if (moduleName && typeof moduleName === "object") {
//initializer/dispose function name can be overridden
initializer = moduleName.initializer || initializer;
disposeMethod = moduleName.disposeMethod || disposeMethod;
templateBinding.templateProperty = ko.unwrap(moduleName.templateProperty) || templateBinding.templateProperty;
//get the current copy of data to pass into module
initialArgs = [].concat(unwrap(moduleName.data));
//name property could be observable
moduleName = unwrap(moduleName.name);
}
//if there is a current module and it has a dispose callback, execute it and clear the data
disposeModule();
//at this point, if we have a module name, then require it dynamically
if (moduleName) {
moduleLoader(moduleName, function(mod) {
//if it is a constructor function then create a new instance
if (typeof mod === "function") {
mod = construct(mod, initialArgs);
}
else {
//if it has an appropriate initializer function, then call it
if (mod && mod[initializer]) {
//if the function has a return value, then use it as the data
mod = mod[initializer].apply(mod, initialArgs || []) || mod;
}
}
//update the data that we are binding against
extendedContext.$module = mod;
templateBinding.data(mod);
});
}
},
disposeWhenNodeIsRemoved: element
});
//optionally call module disposal when removing an element
ko.utils.domNodeDisposal.addDisposeCallback(element, disposeModule);
return { controlsDescendantBindings: true };
},
baseDir: "",
initializer: "initialize",
disposeMethod: "dispose",
templateProperty: ""
};
//support KO 2.0 that did not export ko.virtualElements
if (ko.virtualElements) {
ko.virtualElements.allowedBindings.module = true;
}