blob: 7f100958bfbf4ee19cb9a0234ed792145b245c75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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;
|