-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathgenerate-components.js
391 lines (339 loc) · 11.2 KB
/
generate-components.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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
'use strict';
/**
* Generates React components from a newline-separated list of HTML elements.
*/
const fs = require('fs');
const path = require('path');
const srcPath = '../src/components';
const attributesPath = './data/attributes.json';
// Based off https://github.com/iandevlin/html-attributes/blob/master/boolean-attributes.json
const BOOLEAN_PROPERTIES = [
'allowFullScreen',
'allowPaymentRequest',
'async',
'autoFocus',
'autoPlay',
'checked',
'controls',
'default',
'defer',
'disabled',
'formNoValidate',
'hidden',
'isMap',
'itemScope',
'loop',
'multiple',
'muted',
'noModule',
'noValidate',
'open',
'readonly',
'required',
'reversed',
'selected',
'typeMustMatch'
];
// Based off reading through
// "Some of the DOM attributes supported by React include" section in
// https://reactjs.org/docs/dom-elements.html
const NUMERIC_PROPERTIES = [
'width',
'height',
'marginWidth',
'marginHeight',
'max',
'maxLength',
'min',
'minLength',
'rows',
'rowSpan',
'cols',
'colSpan',
'size',
'step'
];
const PROP_TYPES = {
_default: 'string',
style: 'object',
};
BOOLEAN_PROPERTIES.forEach(property => {
let capitalizationOptions;
if (property.toLowerCase() !== property) {
capitalizationOptions = `${property}', '${property.toLowerCase()}', '${property.toUpperCase()}`
} else {
capitalizationOptions = `${property}', '${property.toUpperCase()}`
}
PROP_TYPES[property] = (
'oneOfType([\n' +
` PropTypes.oneOf(['${capitalizationOptions}']),\n` +
' PropTypes.bool\n' +
' ])'
);
})
NUMERIC_PROPERTIES.forEach(property => {
PROP_TYPES[property] = (
'oneOfType([\n' +
' PropTypes.string,\n' +
' PropTypes.number\n' +
' ])'
);
})
function bail(message) {
console.error('Error: ' + message);
process.exit(1);
}
function upperCase(str) {
return str.charAt(0).toUpperCase() + str.slice(1);
}
function nameComponent(elementName) {
const reservedWords = {
'object': 'ObjectEl',
'map': 'MapEl'
};
return reservedWords[elementName] || upperCase(elementName);
}
function generatePropTypes(element, attributes) {
const elements = attributes.elements;
// Always add the list of global attributes.
const supportedAttributes = elements[element] ?
elements[element].concat(elements.Globalattribute) :
elements.Globalattribute;
return `
/**
* The ID of this component, used to identify dash components
* in callbacks. The ID needs to be unique across all of the
* components in an app.
*/
'id': PropTypes.string,
/**
* The children of this component
*/
'children': PropTypes.node,
/**
* An integer that represents the number of times
* that this element has been clicked on.
*/
'n_clicks': PropTypes.number,
/**
* An integer that represents the time (in ms since 1970)
* at which n_clicks changed. This can be used to tell
* which button was changed most recently.
*/
'n_clicks_timestamp': PropTypes.number,
/**
* When True, this will disable the n_clicks prop. Use this to remove
* event listeners that may interfere with screen readers.
*/
'disable_n_clicks': PropTypes.bool,
/**
* A unique identifier for the component, used to improve
* performance by React.js while rendering components
* See https://reactjs.org/docs/lists-and-keys.html for more info
*/
'key': PropTypes.string,
/**
* A wildcard data attribute
*/
'data-*': PropTypes.string,
/**
* A wildcard aria attribute
*/
'aria-*': PropTypes.string,` +
supportedAttributes.reduce((propTypes, attributeName) => {
const attribute = attributes.attributes[attributeName];
const propType = PROP_TYPES[attributeName] || PROP_TYPES._default;
if (attributeName === 'id') {
return propTypes;
}
return propTypes + `
/**
*${attribute.description ? ' ' + attribute.description : ''}
*/
'${attributeName}': PropTypes.${propType},`;
}, '') + `
/**
* Object that holds the loading state object coming from dash-renderer
*/
'loading_state': PropTypes.shape({
/**
* Determines if the component is loading or not
*/
is_loading: PropTypes.bool,
/**
* Holds which property is loading
*/
prop_name: PropTypes.string,
/**
* Holds the name of the component that is loading
*/
component_name: PropTypes.string,
}),
/**
* Dash-assigned callback that gets fired when the element is clicked.
*/
'setProps': PropTypes.func`
}
const obsoleteDoc = element => `
* OBSOLETE: <${element}> is included for completeness, but should be avoided
* as it is not supported by any modern browsers.`;
const customDocs = {
basefont: `
* OBSOLETE: <basefont> is included for completeness, but should be avoided
* as it is only supported by Internet Explorer.`,
blink: obsoleteDoc('blink'),
command: obsoleteDoc('command'),
element: obsoleteDoc('element'),
isindex: obsoleteDoc('isindex'),
keygen: `
* DEPRECATED: <keygen> is included for completeness, but should be avoided
* as it is not supported by all browsers and may be removed at any time from
* those that do support it.`,
listing: obsoleteDoc('listing') + ' Use <pre> or <code> instead.',
marquee: `
* DEPRECATED: <marquee> is included for completeness, but should be avoided
* as browsers may remove it at any time.`,
meta: `
* CAUTION: <meta> is included for completeness, but generally will not behave
* as expected since <meta> tags should be static HTML content in the <head> of
* the document. Dash components are dynamic <body> content.`,
multicol: obsoleteDoc('multicol'),
nextid: obsoleteDoc('nextid'),
output: `
* CAUTION: <output> is included for completeness, but its typical usage
* requires the oninput attribute of the enclosing <form> element, which
* is not accessible to Dash.`,
script: `
* CAUTION: <script> is included for completeness, but you cannot execute
* JavaScript code by providing it to a <script> element. Use a clientside
* callback for this purpose instead.`,
plaintext: `
* OBSOLETE: <plaintext> is included for completeness, but should be avoided
* as browsers may remove it at any time, and its behavior when added
* dynamically by Dash is not what it would be statically on page load.
* Use <pre> or <code> instead.`,
shadow: `
* DEPRECATED: <shadow> is included for completeness, but should be avoided
* as it is not supported by all browsers and may be removed at any time from
* those that do support it.`,
spacer: obsoleteDoc('spacer'),
title: `
* CAUTION: <title> is included for completeness, but is not expected to
* do anything outside of <head>. Dash components are always created in the
* <body>.`
};
const customImportsForComponents = {
a: `import {sanitizeUrl} from '@braintree/sanitize-url';`,
form: `import {sanitizeUrl} from '@braintree/sanitize-url';`,
iframe: `import {sanitizeUrl} from '@braintree/sanitize-url';`,
object: `import {sanitizeUrl} from '@braintree/sanitize-url';`,
embed: `import {sanitizeUrl} from '@braintree/sanitize-url';`,
button: `import {sanitizeUrl} from '@braintree/sanitize-url';`,
}
function createXSSProtection(propName) {
return `
const ${propName} = React.useMemo(() => props.${propName} && sanitizeUrl(props.${propName}), [props.${propName}]);
if (${propName}) {
extraProps.${propName} = ${propName};
}
React.useEffect(() => {
if (${propName} && ${propName} !== props.${propName}) {
props.setProps({_dash_error: new Error(\`Dangerous link detected: \${props.${propName}}\`)})
}
}, [props.${propName}, ${propName}]);
`
}
const customCodesForComponents = {
a: createXSSProtection('href'),
form: createXSSProtection('action'),
iframe: createXSSProtection('src'),
object: createXSSProtection('data'),
embed: createXSSProtection('src'),
button: createXSSProtection('formAction')
}
function generateComponent(Component, element, attributes) {
const propTypes = generatePropTypes(element, attributes);
const customImport = customImportsForComponents[element] || '';
const customDoc = customDocs[element] ? ('\n *' + customDocs[element] + '\n *') : '';
const customCode = customCodesForComponents[element] || '';
return `
import React from 'react';
import PropTypes from 'prop-types';
import {omit} from 'ramda';
${customImport}
/**
* ${Component} is a wrapper for the <${element}> HTML5 element.${customDoc}
* For detailed attribute info see:
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/${element}
*/
const ${Component} = (props) => {
const extraProps = {};
if(props.loading_state && props.loading_state.is_loading) {
extraProps['data-dash-is-loading'] = true;
}
${customCode}
/* remove unnecessary onClick event listeners */
const isStatic = props.disable_n_clicks || !props.id;
return (
<${element}
{...(!isStatic && {onClick:
() => props.setProps({
n_clicks: props.n_clicks + 1,
n_clicks_timestamp: Date.now()
})
})}
{...omit(['n_clicks', 'n_clicks_timestamp', 'loading_state', 'setProps', 'disable_n_clicks'], props)}
{...extraProps}
>
{props.children}
</${element}>
);
};
${Component}.defaultProps = {
n_clicks: 0,
n_clicks_timestamp: -1,
};
${Component}.propTypes = {${propTypes}
};
export default ${Component};
`;
}
/**
* Generate an object with Component names as keys, component definitions as
* values
*/
function generateComponents(list, attributes) {
return list.reduce((componentMap, element) => {
const componentName = nameComponent(element);
const Component = generateComponent(componentName, element, attributes);
componentMap[componentName] = Component;
return componentMap;
}, {});
}
/**
* Writes component definitions to disk.
*/
function writeComponents(components, destination) {
console.log(`Writing ${Object.keys(components).length} component files to ${srcPath}.`);
let componentPath;
for (const Component in components) {
componentPath = path.join(destination, `${Component}.react.js`);
fs.mkdirSync(path.join(destination), { recursive: true });
fs.writeFileSync(componentPath, components[Component]);
}
}
// Get first command-line argument
const listPath = process.argv[2];
if (!listPath) {
bail('Must specify an element list.');
}
// Read the list of elements
const list = fs
.readFileSync(listPath, 'utf8')
.split('\n')
.filter(item => Boolean(item));
// Get the mapping of attributes to elements
const attributes = JSON.parse(fs.readFileSync(attributesPath, 'utf-8'));
const components = generateComponents(list, attributes);
writeComponents(components, srcPath);
console.log('Done.');