mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-04 06:57:03 +03:00
Clone 3.5.1 from github
This commit is contained in:
parent
5d281486d0
commit
091c4ec811
65 changed files with 6957 additions and 7 deletions
142
vendors/knockout/src/components/loaderRegistry.js
vendored
Normal file
142
vendors/knockout/src/components/loaderRegistry.js
vendored
Normal file
|
|
@ -0,0 +1,142 @@
|
|||
(function(undefined) {
|
||||
var loadingSubscribablesCache = {}, // Tracks component loads that are currently in flight
|
||||
loadedDefinitionsCache = {}; // Tracks component loads that have already completed
|
||||
|
||||
ko.components = {
|
||||
get: function(componentName, callback) {
|
||||
var cachedDefinition = getObjectOwnProperty(loadedDefinitionsCache, componentName);
|
||||
if (cachedDefinition) {
|
||||
// It's already loaded and cached. Reuse the same definition object.
|
||||
// Note that for API consistency, even cache hits complete asynchronously by default.
|
||||
// You can bypass this by putting synchronous:true on your component config.
|
||||
if (cachedDefinition.isSynchronousComponent) {
|
||||
ko.dependencyDetection.ignore(function() { // See comment in loaderRegistryBehaviors.js for reasoning
|
||||
callback(cachedDefinition.definition);
|
||||
});
|
||||
} else {
|
||||
ko.tasks.schedule(function() { callback(cachedDefinition.definition); });
|
||||
}
|
||||
} else {
|
||||
// Join the loading process that is already underway, or start a new one.
|
||||
loadComponentAndNotify(componentName, callback);
|
||||
}
|
||||
},
|
||||
|
||||
clearCachedDefinition: function(componentName) {
|
||||
delete loadedDefinitionsCache[componentName];
|
||||
},
|
||||
|
||||
_getFirstResultFromLoaders: getFirstResultFromLoaders
|
||||
};
|
||||
|
||||
function getObjectOwnProperty(obj, propName) {
|
||||
return Object.prototype.hasOwnProperty.call(obj, propName) ? obj[propName] : undefined;
|
||||
}
|
||||
|
||||
function loadComponentAndNotify(componentName, callback) {
|
||||
var subscribable = getObjectOwnProperty(loadingSubscribablesCache, componentName),
|
||||
completedAsync;
|
||||
if (!subscribable) {
|
||||
// It's not started loading yet. Start loading, and when it's done, move it to loadedDefinitionsCache.
|
||||
subscribable = loadingSubscribablesCache[componentName] = new ko.subscribable();
|
||||
subscribable.subscribe(callback);
|
||||
|
||||
beginLoadingComponent(componentName, function(definition, config) {
|
||||
var isSynchronousComponent = !!(config && config['synchronous']);
|
||||
loadedDefinitionsCache[componentName] = { definition: definition, isSynchronousComponent: isSynchronousComponent };
|
||||
delete loadingSubscribablesCache[componentName];
|
||||
|
||||
// For API consistency, all loads complete asynchronously. However we want to avoid
|
||||
// adding an extra task schedule if it's unnecessary (i.e., the completion is already
|
||||
// async).
|
||||
//
|
||||
// You can bypass the 'always asynchronous' feature by putting the synchronous:true
|
||||
// flag on your component configuration when you register it.
|
||||
if (completedAsync || isSynchronousComponent) {
|
||||
// Note that notifySubscribers ignores any dependencies read within the callback.
|
||||
// See comment in loaderRegistryBehaviors.js for reasoning
|
||||
subscribable['notifySubscribers'](definition);
|
||||
} else {
|
||||
ko.tasks.schedule(function() {
|
||||
subscribable['notifySubscribers'](definition);
|
||||
});
|
||||
}
|
||||
});
|
||||
completedAsync = true;
|
||||
} else {
|
||||
subscribable.subscribe(callback);
|
||||
}
|
||||
}
|
||||
|
||||
function beginLoadingComponent(componentName, callback) {
|
||||
getFirstResultFromLoaders('getConfig', [componentName], function(config) {
|
||||
if (config) {
|
||||
// We have a config, so now load its definition
|
||||
getFirstResultFromLoaders('loadComponent', [componentName, config], function(definition) {
|
||||
callback(definition, config);
|
||||
});
|
||||
} else {
|
||||
// The component has no config - it's unknown to all the loaders.
|
||||
// Note that this is not an error (e.g., a module loading error) - that would abort the
|
||||
// process and this callback would not run. For this callback to run, all loaders must
|
||||
// have confirmed they don't know about this component.
|
||||
callback(null, null);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders) {
|
||||
// On the first call in the stack, start with the full set of loaders
|
||||
if (!candidateLoaders) {
|
||||
candidateLoaders = ko.components['loaders'].slice(0); // Use a copy, because we'll be mutating this array
|
||||
}
|
||||
|
||||
// Try the next candidate
|
||||
var currentCandidateLoader = candidateLoaders.shift();
|
||||
if (currentCandidateLoader) {
|
||||
var methodInstance = currentCandidateLoader[methodName];
|
||||
if (methodInstance) {
|
||||
var wasAborted = false,
|
||||
synchronousReturnValue = methodInstance.apply(currentCandidateLoader, argsExceptCallback.concat(function(result) {
|
||||
if (wasAborted) {
|
||||
callback(null);
|
||||
} else if (result !== null) {
|
||||
// This candidate returned a value. Use it.
|
||||
callback(result);
|
||||
} else {
|
||||
// Try the next candidate
|
||||
getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders);
|
||||
}
|
||||
}));
|
||||
|
||||
// Currently, loaders may not return anything synchronously. This leaves open the possibility
|
||||
// that we'll extend the API to support synchronous return values in the future. It won't be
|
||||
// a breaking change, because currently no loader is allowed to return anything except undefined.
|
||||
if (synchronousReturnValue !== undefined) {
|
||||
wasAborted = true;
|
||||
|
||||
// Method to suppress exceptions will remain undocumented. This is only to keep
|
||||
// KO's specs running tidily, since we can observe the loading got aborted without
|
||||
// having exceptions cluttering up the console too.
|
||||
if (!currentCandidateLoader['suppressLoaderExceptions']) {
|
||||
throw new Error('Component loaders must supply values by invoking the callback, not by returning values synchronously.');
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// This candidate doesn't have the relevant handler. Synchronously move on to the next one.
|
||||
getFirstResultFromLoaders(methodName, argsExceptCallback, callback, candidateLoaders);
|
||||
}
|
||||
} else {
|
||||
// No candidates returned a value
|
||||
callback(null);
|
||||
}
|
||||
}
|
||||
|
||||
// Reference the loaders via string name so it's possible for developers
|
||||
// to replace the whole array by assigning to ko.components.loaders
|
||||
ko.components['loaders'] = [];
|
||||
|
||||
ko.exportSymbol('components', ko.components);
|
||||
ko.exportSymbol('components.get', ko.components.get);
|
||||
ko.exportSymbol('components.clearCachedDefinition', ko.components.clearCachedDefinition);
|
||||
})();
|
||||
Loading…
Add table
Add a link
Reference in a new issue