mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-12 05:48:57 +00:00
34 lines
842 B
JavaScript
34 lines
842 B
JavaScript
var Immutable = require('immutable');
|
|
|
|
var THEME_PREFIX = require('../constants/themePrefix');
|
|
|
|
var TYPE_PLUGIN = 'plugin';
|
|
var TYPE_THEME = 'theme';
|
|
|
|
|
|
/**
|
|
* Returns the type of a plugin given its name
|
|
* @param {Plugin} plugin
|
|
* @return {String}
|
|
*/
|
|
function pluginType(plugin) {
|
|
var name = plugin.getName();
|
|
return (name && name.indexOf(THEME_PREFIX) === 0) ? TYPE_THEME : TYPE_PLUGIN;
|
|
}
|
|
|
|
|
|
/**
|
|
* Sort the list of dependencies to match list in book.json
|
|
* The themes should always be loaded after the plugins
|
|
*
|
|
* @param {List<PluginDependency>} deps
|
|
* @return {List<PluginDependency>}
|
|
*/
|
|
function sortDependencies(plugins) {
|
|
var byTypes = plugins.groupBy(pluginType);
|
|
|
|
return byTypes.get(TYPE_PLUGIN, Immutable.List())
|
|
.concat(byTypes.get(TYPE_THEME, Immutable.List()));
|
|
}
|
|
|
|
module.exports = sortDependencies; |