mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 16:15:22 +00:00
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
var Promise = require('../utils/promise');
|
|
|
|
var THEME_PREFIX = require('../constants/themePrefix');
|
|
var LOADING_ORDER = ['plugin', 'theme'];
|
|
|
|
/**
|
|
Returns the type of a plugin given its name
|
|
|
|
@return {String}
|
|
*/
|
|
function pluginType(name) {
|
|
return (name && name.indexOf(THEME_PREFIX) === 0) ? 'theme' : 'plugin';
|
|
}
|
|
|
|
|
|
/**
|
|
Sort the list of installed plugins to match list in book.json
|
|
The themes should always be loaded after the plugins
|
|
|
|
@param {<OrderedMap<String:Plugin>>} plugins
|
|
@param {<List<String>>} requirementsKeys
|
|
@return {Promise<OrderedMap<String:Plugin>>}
|
|
*/
|
|
|
|
function sortPlugins(plugins, requirementsKeys) {
|
|
return Promise()
|
|
.then(function() {
|
|
// Sort plugins to match list in book.json
|
|
plugins = plugins.sort(function(a, b) {
|
|
// Get order from book.json
|
|
var definitionOrder = requirementsKeys.indexOf(a.getName()) < requirementsKeys.indexOf(b.getName());
|
|
|
|
// Get order from plugins a and b type
|
|
var aType = pluginType(a.getName()),
|
|
bType = pluginType(b.getName()),
|
|
loadingOrder = LOADING_ORDER.indexOf(aType) < LOADING_ORDER.indexOf(bType);
|
|
|
|
return loadingOrder || definitionOrder ? -1 : 1;
|
|
});
|
|
|
|
return plugins;
|
|
});
|
|
}
|
|
|
|
module.exports = sortPlugins; |