forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloaduikits.js
100 lines (88 loc) · 2.78 KB
/
loaduikits.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
'use strict';
const path = require('path');
const _ = require('lodash');
const logger = require('./log');
let findModules = require('./findModules'); //eslint-disable-line prefer-const
let fs = require('fs-extra'); // eslint-disable-line
const uiKitMatcher = /^uikit-(.*)$/;
const nodeModulesPath = path.join(process.cwd(), 'node_modules');
/**
* Given a path: return the uikit name if the path points to a valid uikit
* module directory, or false if it doesn't.
* @param filePath
* @returns UIKit name if exists or FALSE
*/
const isUIKitModule = filePath => {
const baseName = path.basename(filePath);
const engineMatch = baseName.match(uiKitMatcher);
if (engineMatch) {
return engineMatch[1];
}
return false;
};
const readModuleFile = (kit, subPath) => {
return fs.readFileSync(
path.resolve(path.join(kit.modulePath, subPath)),
'utf8'
);
};
/**
* Loads uikits, connecting configuration and installed modules
* [1] Looks in node_modules for uikits.
* [2] Only continue if uikit is enabled in patternlab-config.js
* [3] Reads files from uikit that apply to every template
* @param {object} patternlab
*/
module.exports = patternlab => {
const paths = patternlab.config.paths;
const uikits = findModules(nodeModulesPath, isUIKitModule); // [1]
uikits.forEach(kit => {
const configEntry = _.find(_.filter(patternlab.config.uikits, 'enabled'), {
name: `uikit-${kit.name}`,
}); // [2]
if (!configEntry) {
logger.warning(
`Could not find uikit with name uikit-${
kit.name
} defined within a patternlab-config.js file, or it is not enabled.`
);
return;
}
try {
patternlab.uikits[`uikit-${kit.name}`] = {
name: `uikit-${kit.name}`,
modulePath: kit.modulePath,
enabled: true,
outputDir: configEntry.outputDir,
excludedPatternStates: configEntry.excludedPatternStates,
excludedTags: configEntry.excludedTags,
header: readModuleFile(
kit,
paths.source.patternlabFiles['general-header']
),
footer: readModuleFile(
kit,
paths.source.patternlabFiles['general-footer']
),
patternSection: readModuleFile(
kit,
paths.source.patternlabFiles.patternSection
),
patternSectionSubType: readModuleFile(
kit,
paths.source.patternlabFiles.patternSectionSubtype
),
viewAll: readModuleFile(kit, paths.source.patternlabFiles.viewall),
}; // [3]
} catch (ex) {
logger.error(ex);
logger.error(
'\nERROR: missing an essential file from ' +
kit.modulePath +
paths.source.patternlabFiles +
". Pattern Lab won't work without this file.\n"
);
}
});
return Promise.resolve();
};