summaryrefslogtreecommitdiffstats
path: root/lib/plugins/sortPlugins.js
blob: 155b691033523c52a67b4535eaaa15e3b3fba8c0 (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
35
36
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 installed plugins to match list in book.json
 * The themes should always be loaded after the plugins
 *
 * @param {<OrderedMap<String:Plugin>>} plugins
 * @return {OrderedMap<String:Plugin>}
 */
function sortPlugins(plugins) {
    var byTypes = plugins.groupBy(pluginType);

    return byTypes.get(TYPE_PLUGIN, Immutable.OrderedMap())
        .merge(
            byTypes.get(TYPE_THEME, Immutable.OrderedMap())
        );
}

module.exports = sortPlugins;