forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
313 lines (285 loc) · 10.8 KB
/
index.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
/**
* Build thoughtful, pattern-driven user interfaces using atomic design principles.
* Many of these functions are exposed to users within {@link https://github.com/pattern-lab/patternlab-node#editions|Editions}, but {@link https://github.com/pattern-lab/patternlab-node#direct-consumption|direct consumption} is also encouraged.
*
* @namespace patternlab
* @see {@link patternlab.io} for more documentation.
* @see {@link https://github.com/pattern-lab/patternlab-node} for code, issues, and releases
* @license MIT
*/
'use strict';
const path = require('path');
const updateNotifier = require('update-notifier');
const packageInfo = require('../package.json');
const events = require('./lib/events');
const pe = require('./lib/pattern_exporter');
const pm = require('./lib/plugin_manager');
const defaultConfig = require('../patternlab-config.js');
let buildPatterns = require('./lib/buildPatterns'); // eslint-disable-line
let logger = require('./lib/log'); // eslint-disable-line
let fs = require('fs-extra'); // eslint-disable-line
let ui_builder = require('./lib/ui_builder'); // eslint-disable-line
let copier = require('./lib/copier'); // eslint-disable-line
let pattern_exporter = new pe(); // eslint-disable-line
let serverModule = require('./lib/server'); // eslint-disable-line
//bootstrap update notifier
updateNotifier({
pkg: packageInfo,
updateCheckInterval: 1000 * 60 * 60 * 24, // notify at most once a day
}).notify();
/**
* Static method that returns the standardized default config used to run Pattern Lab. This method can be called statically or after instantiation.
*
* @memberof patternlab
* @name getDefaultConfig
* @static
* @return {object} Returns the object representation of the `patternlab-config.json`
*/
const getDefaultConfig = function() {
return defaultConfig;
};
/**
* Static method that returns current version
*
* @memberof patternlab
* @name getVersion
* @static
* @returns {string} current @pattern-lab/core version as defined in `package.json`
*/
const getVersion = function() {
return packageInfo.version;
};
const patternlab_module = function(config) {
const PatternLabClass = require('./lib/patternlab');
const patternlab = new PatternLabClass(config);
const server = serverModule(patternlab);
const _api = {
/**
* Returns current version
*
* @memberof patternlab
* @name version
* @instance
* @returns {string} current patternlab-node version as defined in `package.json`, as string
*/
version: function() {
return patternlab.getVersion();
},
/**
* Builds patterns, copies assets, and constructs user interface
*
* @memberof patternlab
* @name build
* @instance
* @param {object} options an object used to control build behavior
* @param {bool} [options.cleanPublic=true] whether or not to delete the configured output location (usually `public/`) before build
* @param {object} [options.data={}] additional data to be merged with global data prior to build
* @param {bool} [options.watch=true] whether or not Pattern Lab should watch configured `source/` directories for changes to rebuild
* @emits PATTERNLAB_BUILD_START
* @emits PATTERNLAB_BUILD_END
* @see {@link ./events.md|all events}
* @returns {Promise} a promise fulfilled when build is complete
*/
build: function(options) {
// process.on('unhandledRejection', (reason, p) => {
// console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
// // application specific logging, throwing an error, or other logic here
// console.log(reason.stack);
// debugger;
// });
if (patternlab && patternlab.isBusy) {
logger.info(
'Pattern Lab is busy building a previous run - returning early.'
);
return Promise.resolve();
}
patternlab.isBusy = true;
return buildPatterns(options.cleanPublic, patternlab, options.data).then(
() => {
return new ui_builder().buildFrontend(patternlab).then(() => {
copier()
.copyAndWatch(patternlab.config.paths, patternlab, options)
.then(() => {
patternlab.isBusy = false;
// only wire up this listener and the one inside serve.js
// figure out how to detect if serve was called. we should not assume it was
if (
patternlab.serverReady //check for server presence
? this.events.listenerCount(
events.PATTERNLAB_PATTERN_CHANGE
) === 1 //if the server is started, it has already setup one listener
: !this.events.listenerCount(
events.PATTERNLAB_PATTERN_CHANGE
) // else, check for the presnce of none
) {
this.events.on(events.PATTERNLAB_PATTERN_CHANGE, () => {
if (!patternlab.isBusy) {
return this.build(options).then(() => {
patternlab.isBusy = false;
});
}
return Promise.resolve();
});
}
if (
!this.events.listenerCount(events.PATTERNLAB_GLOBAL_CHANGE)
) {
this.events.on(events.PATTERNLAB_GLOBAL_CHANGE, () => {
if (!patternlab.isBusy) {
return this.build(
Object.assign({}, options, { cleanPublic: true }) // rebuild everything
);
}
return Promise.resolve();
});
}
})
.then(() => {
this.events.emit(events.PATTERNLAB_BUILD_END, patternlab);
});
});
}
);
},
/**
* Returns the standardized default config used to run Pattern Lab. This method can be called statically or after instantiation.
*
* @memberof patternlab
* @name getDefaultConfig
* @instance
* @return {object} Returns the object representation of the `patternlab-config.json`
*/
getDefaultConfig: function() {
return getDefaultConfig();
},
/**
* Returns all file extensions supported by installed PatternEngines
*
* @memberof patternlab
* @name getSupportedTemplateExtensions
* @instance
* @returns {Array<string>} all supported file extensions
*/
getSupportedTemplateExtensions: function() {
return patternlab.getSupportedTemplateExtensions();
},
/**
* Installs plugin already available via `node_modules/`
*
* @memberof patternlab
* @name installplugin
* @instance
* @param {string} pluginName name of plugin
* @returns {void}
*/
installplugin: function(pluginName) {
//get the config
const configPath = path.resolve(process.cwd(), 'patternlab-config.json');
const plugin_manager = new pm(config, configPath);
plugin_manager.install_plugin(pluginName);
},
/**
* Fetches starterkit repositories from pattern-lab github org that contain 'starterkit' in their name
*
* @memberof patternlab
* @name liststarterkits
* @instance
* @returns {Promise} Returns an Array<{name,url}> for the starterkit repos
*/
liststarterkits: function() {
return patternlab.listStarterkits();
},
/**
* Loads starterkit already available via `node_modules/`
*
* @memberof patternlab
* @name loadstarterkit
* @instance
* @param {string} starterkitName name of starterkit
* @param {boolean} clean whether or not to delete contents of source/ before load
* @returns {void}
*/
loadstarterkit: function(starterkitName, clean) {
patternlab.loadStarterKit(starterkitName, clean);
},
/**
* Builds patterns only, leaving existing user interface files intact
*
* @memberof patternlab
* @name patternsonly
* @instance
* @param {bool} [options.cleanPublic=true] whether or not to delete the configured output location (usually `public/`) before build
* @param {object} [options.data={}] additional data to be merged with global data prior to build
* @param {bool} [options.watch=true] whether or not Pattern Lab should watch configured `source/` directories for changes to rebuild
* @returns {Promise} a promise fulfilled when build is complete
*/
patternsonly: function(options) {
if (patternlab && patternlab.isBusy) {
logger.info(
'Pattern Lab is busy building a previous run - returning early.'
);
return Promise.resolve();
}
patternlab.isBusy = true;
return buildPatterns(options.cleanPublic, patternlab, options.data).then(
() => {
patternlab.isBusy = false;
}
);
},
/**
* Server module
*
* @memberof patternlab
* @type {object}
*/
server: {
/**
* Build patterns, copies assets, and constructs user interface. Watches configured `source/` directories, and serves all output locally
*
* @method serve
* @memberof patternlab.server
* @param {object} options an object used to control build behavior
* @param {bool} [options.cleanPublic=true] whether or not to delete the configured output location (usually `public/`) before build
* @param {object} [options.data={}] additional data to be merged with global data prior to build
* @param {bool} [options.watch=true] whether or not Pattern Lab should watch configured `source/` directories for changes to rebuild
* @returns {Promise} a promise fulfilled when build is complete
*/
serve: options => {
return _api
.build(options)
.then(() => server.serve())
.catch(e =>
logger.error(`error inside core index.js server serve: ${e}`)
);
},
/**
* Reloads any active live-server instances
*
* @method reload
* @memberof patternlab.server
* @returns {Promise} a promise fulfilled when operation is complete
*/
reload: server.reload,
/**
* Reloads CSS on any active live-server instances
*
* @method refreshCSS
* @memberof patternlab.server
* @returns {Promise} a promise fulfilled when operation is complete
*/
refreshCSS: server.refreshCSS,
},
/**
* @memberof patternlab
* @type {EventEmitter}
* @see {@link https://nodejs.org/api/events.html#events_class_eventemitter|EventEmitter}
* @see {@link ./events.md|All Pattern Lab events}
*/
events: patternlab.events,
};
return _api;
};
patternlab_module.getDefaultConfig = getDefaultConfig;
patternlab_module.getVersion = getVersion;
module.exports = patternlab_module;