-
Notifications
You must be signed in to change notification settings - Fork 9
/
fractal.config.js
217 lines (184 loc) · 6.88 KB
/
fractal.config.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
'use strict';
const path = require('path');
const fs = require('fs');
const stencil = require('@stencil/core/server');
const Handlebars = require('handlebars');
/*
* Require the Fractal module
*/
const fractalConfig = (module.exports = require('@frctl/fractal').create());
/*
* Give your project a title.
*/
fractalConfig.set('project.title', 'Fleet');
/*
* A place to build the project to
*/
fractalConfig.web.set('builder.dest', __dirname + '/public');
/*
* Tell Fractal where to look for components.
*/
fractalConfig.set('components.path', __dirname + '/components');
/*
* Tell Fractal where to look for documentation pages.
*/
fractalConfig.set('docs.path', __dirname + '/docs');
/*
* Tell the Fractal web preview plugin to use this template for previews.
*/
fractalConfig.set('components.default.preview', '@preview');
/*
* Configure the server
*/
/*
* Tell the Fractal web preview plugin where to look for static assets.
*/
fractalConfig.web.set('static.path', __dirname + '/assets');
fractalConfig.web.set('server.sync', true);
fractalConfig.web.set('server.syncOptions', {
open: true,
notify: true,
https: false,
snippetOptions: {
blacklist: ['**/*?disable-browsersync'],
},
middleware: function(req, res, next) {
res.setHeader('Access-Control-Allow-Headers', '*');
res.setHeader('Access-Control-Allow-Origin', '*');
next();
},
});
// fractal.web.set('server.port', process.env.PORT || 3030);
fractalConfig.web.set('server.port', process.env.PORT || 3030);
const hbs = require('@frctl/handlebars')({
helpers: {
filename_to_string: function(str) {
return str
.replace(/-/g, ' ')
.replace(/_/g, ' ')
.replace(/(.svg|.png)/g, '');
},
imgUrl: async function(pre, post) {
return `${pre}/${post}`;
},
imgOnError: function() {
const url =
'https://www.boston.gov/modules/custom/bos_content/modules/node_post/default_news.svg';
return `this.onerror=null;this.src='${url}';`;
},
// Stencil helps us maintain docs in the source directories for the
// components. This helper is here so that the Fractal component "Notes" can
// import those README files so that they appear in the Fractal UI.
//
// For example, to pull in the documentation for <cob-viz>, use
// {{stencil_readme viz}}
stencil_readme: function(componentName) {
const relativeDocPath = path.join(
'web-components',
componentName,
'readme.md'
);
const docPath = path.join(__dirname, relativeDocPath);
if (fs.existsSync(docPath)) {
const readmeMd = fs.readFileSync(docPath, 'utf-8');
// SafeString keeps Handlebars from escaping HTML and
// particularly backticks (`). We want the readme.md to
// be inserted as-is so that it gets marked down correctly.
return new Handlebars.SafeString(readmeMd);
} else {
return `**stencil_readme:** _${relativeDocPath} not found_\n`;
}
},
},
});
fractalConfig.docs.engine(hbs);
/*
This code wraps the handlebars engine to include Stencil's web component
prerendering. We do this so that Percy has real HTML to work from when it
makes screenshots.
This has to be done in this way rather than with Handlebars helpers because
Handlebars does not support async helpers, and the prerendering process is
async. (Happily, Fractal handles returning a Promise from the render method.)
We only use globalStencilRenderer when doing building exports. Otherwise we
make one renderer per request so that it picks up code changes.
*/
let globalStencilRenderer = null;
fractalConfig.components.engine({
register(source, app) {
const hbsAdapter = hbs.register(source, app);
const hbsRender = hbsAdapter.render.bind(hbsAdapter);
return Object.assign(hbsAdapter, {
render(path, str, context, meta) {
const hbsPromise = hbsRender(path, str, context, meta);
// We only prerender for the preview frame. Otherwise the "HTML" shown
// in the Fractal UI will be the prerendered rather than showing the
// <web-component> usage.
//
// We absoutely need the prerendering for TestCafe because it inlines
// the loader script. The result is that a "data-resources-url"
// attribute on the <script> tag points to an absolute path. Without
// that, a resourcesUrl is calculated that includes a hostname as well
// (which will be either the Fractal server or the static files server).
//
// When it’s just a path, component JavaScript (which is lazy-loaded)
// will get loaded through the TestCafe proxy. Going through the
// TestCafe proxy prevents the browser from stumbling over CORS and
// self-signed HTTPS certificates.
//
// This comes up in browsers that natively support "import" (Chrome and
// Safari as of this writing) since TestCafe’s Hammerhead library is
// unable to shim its proxy-rewrite into "import" the way it does for
// XHR.
if (context._self.name === 'preview') {
/** @type stencil.Renderer */
let stencilRenderer;
if (globalStencilRenderer) {
stencilRenderer = globalStencilRenderer;
} else {
const stencilConfig = stencil.loadConfig(__dirname);
stencilRenderer = new stencil.Renderer(stencilConfig);
}
return hbsPromise.then(str =>
stencilRenderer
.hydrate({ html: str })
.then(({ html, diagnostics }) => {
// eslint-disable-next-line no-console
diagnostics.forEach(d => console.log(d.messageText));
if (!globalStencilRenderer) {
const compilerCtx = stencilRenderer.ctx;
if (compilerCtx.localPrerenderServer) {
compilerCtx.localPrerenderServer.close();
delete compilerCtx.localPrerenderServer;
}
stencilRenderer.destroy();
}
return html;
})
);
} else {
return hbsPromise;
}
},
});
},
});
const mandelbrot = require('@frctl/mandelbrot');
const fleetTheme = mandelbrot({
skin: 'blue',
panels: ['html', 'info', 'resources', 'notes'],
scripts: ['https://cdn.polyfill.io/v2/polyfill.min.js', 'default'],
styles: ['default', '/css/theme.css'],
});
fractalConfig.web.theme(fleetTheme);
// Hooks in to the fractal build behavior to shut down the globalStencilRenderer.
// Otherwise its worker child processes keep this process alive.
fractalConfig.web.on('builder:created', builder => {
const stencilConfig = stencil.loadConfig(__dirname);
globalStencilRenderer = new stencil.Renderer(stencilConfig);
builder.on('end', () => {
globalStencilRenderer.destroy();
});
builder.on('error', () => {
globalStencilRenderer.destroy();
});
});