forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatternlab.js
367 lines (320 loc) · 10.9 KB
/
patternlab.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
'use strict';
const dive = require('dive');
const _ = require('lodash');
const path = require('path');
const cleanHtml = require('js-beautify').html;
const inherits = require('util').inherits;
const pm = require('./plugin_manager');
const plugin_manager = new pm();
const packageInfo = require('../../package.json');
const events = require('./events');
const buildListItems = require('./buildListItems');
const dataLoader = require('./data_loader')();
const loaduikits = require('./loaduikits');
const logger = require('./log');
const processIterative = require('./processIterative');
const processRecursive = require('./processRecursive');
const { findPatternLabConfig } = require('./utils/find-config-file');
const loadPattern = require('./loadPattern');
const sm = require('./starterkit_manager');
const patternEngines = require('./pattern_engines');
//these are mocked in unit tests, so let them be overridden
let fs = require('fs-extra'); // eslint-disable-line
const EventEmitter = require('events').EventEmitter;
function PatternLabEventEmitter() {
EventEmitter.call(this);
}
inherits(PatternLabEventEmitter, EventEmitter);
class PatternLab {
constructor(config) {
// Use the already-resolved config passed in OR auto load one up from the config
const getConfigAsync = async () => {
this.config = config || (await Promise.resolve(findPatternLabConfig()));
};
getConfigAsync();
//register our log events
this.registerLogger(this.config.logLevel);
logger.info(`Pattern Lab Node v${packageInfo.version}`);
// Load up engines please
this.engines = patternEngines;
this.engines.loadAllEngines(this.config);
//
// INITIALIZE EMPTY GLOBAL DATA STRUCTURES
//
this.data = {};
this.patterns = [];
this.subtypePatterns = {};
this.partials = {};
// Cache the package.json in RAM
this.package = fs.readJSONSync(
path.resolve(__dirname, '../../package.json')
);
// Make ye olde event emitter
this.events = new PatternLabEventEmitter();
// Make a place for the pattern graph to sit
this.graph = null;
// Make a place to attach known watchers so we can manage them better during serve and watch
this.watchers = {};
// make a place to register any uikits
this.uikits = {};
loaduikits(this);
// Verify correctness of configuration (?)
this.checkConfiguration(this);
this.initializePlugins(this);
}
checkConfiguration(patternlab) {
//default the output suffixes if not present
const outputFileSuffixes = {
rendered: '.rendered',
rawTemplate: '',
markupOnly: '.markup-only',
};
if (!patternlab.config.outputFileSuffixes) {
logger.warning('');
logger.warning(
'Configuration key [outputFileSuffixes] not found, and defaulted to the following:'
);
logger.info(outputFileSuffixes);
logger.warning(
'Since Pattern Lab Node Core 2.3.0 this configuration option is required. Suggest you add it to your patternlab-config.json file.'
);
logger.warning('');
}
patternlab.config.outputFileSuffixes = _.extend(
outputFileSuffixes,
patternlab.config.outputFileSuffixes
);
if (typeof patternlab.config.paths.source.patternlabFiles === 'string') {
logger.warning('');
logger.warning(
`Configuration key [paths.source.patternlabFiles] inside patternlab-config.json was found as the string '${
patternlab.config.paths.source.patternlabFiles
}'`
);
logger.warning(
'Since Pattern Lab Node Core 3.0.0 this key is an object. Suggest you update this key following this issue: https://github.com/pattern-lab/patternlab-node/issues/683.'
);
logger.warning('');
}
if (typeof patternlab.config.debug === 'boolean') {
logger.warning('');
logger.warning(
`Configuration key [debug] inside patternlab-config.json was found. As of Pattern Lab Node Core 3.0.0 this key is replaced with a new key, [logLevel]. This is a string with possible values ['debug', 'info', 'warning', 'error', 'quiet'].`
);
logger.warning(
`Turning on 'info', 'warning', and 'error' levels by default, unless [logLevel] is present. If that is the case, [debug] has no effect.`
);
logger.warning('');
}
}
/**
* Finds and calls the main method of any found plugins.
* @param patternlab - global data store
*/
initializePlugins(patternlab) {
if (!patternlab.config.plugins) {
return;
}
plugin_manager.intialize_plugins(patternlab);
}
buildGlobalData(additionalData) {
const paths = this.config.paths;
//
// COLLECT GLOBAL LIBRARY DATA
//
// data.json
try {
this.data = this.buildPatternData(paths.source.data, fs); // eslint-disable-line no-use-before-define
this.data.link = {};
} catch (ex) {
logger.error(
'missing or malformed' +
paths.source.data +
'data.json Pattern Lab may not work without this file.'
);
this.data = {};
}
// listitems.json
try {
this.listitems = fs.readJSONSync(
path.resolve(paths.source.data, 'listitems.json')
);
} catch (ex) {
logger.warning(
'WARNING: missing or malformed ' +
paths.source.data +
'listitems.json file. Pattern Lab may not work without this file.'
);
this.listitems = {};
}
this.data = Object.assign({}, this.data, additionalData);
this.setCacheBust();
buildListItems(this);
this.events.emit(events.PATTERNLAB_BUILD_GLOBAL_DATA_END, this);
}
setCacheBust() {
if (this.config.cacheBust) {
logger.debug('setting cacheBuster value for frontend assets.');
this.cacheBuster = new Date().getTime();
} else {
this.cacheBuster = 0;
}
}
// Starter Kit loading methods
listStarterkits() {
const starterkit_manager = new sm(this.config);
return starterkit_manager.list_starterkits();
}
loadStarterKit(starterkitName, clean) {
const starterkit_manager = new sm(this.config);
starterkit_manager.load_starterkit(starterkitName, clean);
}
// info methods
getVersion() {
return this.package.version;
}
getSupportedTemplateExtensions() {
return this.engines.getSupportedFileExtensions();
}
writePatternFiles(headHTML, pattern, footerHTML, outputBasePath) {
const nullFormatter = str => str;
const defaultFormatter = codeString =>
cleanHtml(codeString, { indent_size: 2 });
const makePath = type =>
path.join(
this.config.paths.public.patterns,
pattern.getPatternLink(this, type)
);
const patternPage = headHTML + pattern.patternPartialCode + footerHTML;
const eng = pattern.engine;
//beautify the output if configured to do so
const formatters = this.config.cleanOutputHtml
? {
rendered: eng.renderedCodeFormatter || defaultFormatter,
rawTemplate: eng.rawTemplateCodeFormatter || defaultFormatter,
markupOnly: eng.markupOnlyCodeFormatter || defaultFormatter,
}
: {
rendered: nullFormatter,
rawTemplate: nullFormatter,
markupOnly: nullFormatter,
};
//prepare the path and contents of each output file
const outputFiles = [
{
path: makePath('rendered'),
content: formatters.rendered(patternPage, pattern),
},
{
path: makePath('rawTemplate'),
content: formatters.rawTemplate(pattern.template, pattern),
},
{
path: makePath('markupOnly'),
content: formatters.markupOnly(pattern.patternPartialCode, pattern),
},
].concat(
eng.addOutputFiles ? eng.addOutputFiles(this.config.paths, this) : []
);
//write the compiled template to the public patterns directory
outputFiles.forEach(outFile =>
fs.outputFileSync(
path.join(process.cwd(), outputBasePath, outFile.path),
outFile.content
)
);
}
/**
* Binds console logging to different levels
*
* @param {string} logLevel
* @memberof PatternLab
*/
registerLogger(logLevel) {
if (logLevel === undefined) {
logger.log.on('info', msg => console.info(msg));
logger.log.on('warning', msg => console.info(msg));
logger.log.on('error', msg => console.info(msg));
} else {
if (logLevel === 'quiet') {
return;
}
switch (logLevel) {
case 'debug':
logger.log.on('debug', msg => console.info(msg));
case 'info':
logger.log.on('info', msg => console.info(msg));
case 'warning':
logger.log.on('warning', msg => console.info(msg));
case 'error':
logger.log.on('error', msg => console.info(msg));
}
}
}
/**
* Given a path, load info from the folder to compile into a single config object.
* @param dataFilesPath
* @param fsDep
* @returns {{}}
*/
buildPatternData(dataFilesPath, fsDep) {
return dataLoader.loadDataFromFolder(dataFilesPath, 'listitems', fsDep);
}
// dive once to perform iterative populating of patternlab object
processAllPatternsIterative(patterns_dir) {
const self = this;
const promiseAllPatternFiles = new Promise(function(resolve) {
dive(
patterns_dir,
(err, file) => {
//log any errors
if (err) {
logger.info('error in processAllPatternsIterative():', err);
return;
}
// We now have the loading and process phases spearated; this
// loads all the patterns before beginning any analysis, so we
// can load them asynchronously and be sure we know about all
// of them before we start lineage hunting, for
// example. Incidentally, this should also allow people to do
// horrifying things like include a page in a atom. But
// please, if you're reading this: don't.
// NOTE: sync for now
loadPattern(path.relative(patterns_dir, file), self);
},
resolve
);
});
return promiseAllPatternFiles.then(() => {
return Promise.all(
this.patterns.map(pattern => {
return processIterative(pattern, self);
})
).then(() => {
// patterns sorted by name so the patterntype and patternsubtype is adhered to for menu building
this.patterns.sort((pattern1, pattern2) =>
pattern1.name.localeCompare(pattern2.name)
);
});
});
}
processAllPatternsRecursive(patterns_dir) {
const self = this;
const promiseAllPatternFiles = new Promise(function(resolve) {
dive(
patterns_dir,
(err, file) => {
//log any errors
if (err) {
logger.info(err);
return;
}
processRecursive(path.relative(patterns_dir, file), self);
},
resolve
);
});
return promiseAllPatternFiles;
}
}
module.exports = PatternLab;