-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathbabel.js
450 lines (389 loc) · 14 KB
/
babel.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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
'use strict'
const camelCase = require('camel-case')
const hyperx = require('hyperx')
const SVG_TAGS = require('./svg-tags')
const BOOL_PROPS = require('./bool-props')
const DIRECT_PROPS = require('./direct-props')
const SVGNS = 'http://www.w3.org/2000/svg'
const XLINKNS = 'http://www.w3.org/1999/xlink'
/**
* Try to return a nice variable name for an element based on its HTML id,
* classname, or tagname.
*/
function getElementName (props, tag) {
if (typeof props.id === 'string' && !placeholderRe.test(props.id)) {
return camelCase(props.id)
}
if (typeof props.className === 'string' && !placeholderRe.test(props.className)) {
return camelCase(props.className.split(' ')[0])
}
return tag || 'nanohtml'
}
/**
* Regex for detecting placeholders.
*/
const placeholderRe = /\0(\d+)\0/g
/**
* Get a placeholder string for a numeric ID.
*/
const getPlaceholder = (i) => `\0${i}\0`
/**
* Remove a binding and its import or require() call from the file.
*/
function removeBindingImport (binding) {
const path = binding.path
if (path.parentPath.isImportDeclaration() &&
// Remove the entire Import if this is the only imported binding.
path.parentPath.node.specifiers.length === 1) {
path.parentPath.remove()
} else {
path.remove()
}
}
module.exports = (babel) => {
const t = babel.types
const nanohtmlModuleNames = ['nanohtml', 'bel', 'yo-yo', 'choo/html']
/**
* Returns an object which specifies the custom elements by which a built-in is extended.
*/
const createExtendsObjectExpression = (is) =>
t.objectExpression([t.objectProperty(t.identifier('is'), t.stringLiteral(is))])
/**
* Returns a node that creates a namespaced HTML element.
*/
const createNsElement = (ns, tag) =>
t.callExpression(
t.memberExpression(t.identifier('document'), t.identifier('createElementNS')),
[ns, t.stringLiteral(tag)]
)
/**
* Returns a node that creates a extended namespaced HTML element.
*/
const createNsCustomBuiltIn = (ns, tag, is) =>
t.callExpression(
t.memberExpression(t.identifier('document'), t.identifier('createElementNS')),
[ns, t.stringLiteral(tag), createExtendsObjectExpression(is)]
)
/**
* Returns a node that creates an element.
*/
const createElement = (tag) =>
t.callExpression(
t.memberExpression(t.identifier('document'), t.identifier('createElement')),
[t.stringLiteral(tag)]
)
/**
* Returns a node that creates an extended element.
*/
const createCustomBuiltIn = (tag, is) =>
t.callExpression(
t.memberExpression(t.identifier('document'), t.identifier('createElement')),
[t.stringLiteral(tag), createExtendsObjectExpression(is)]
)
/**
* Returns a node that creates a comment.
*/
const createComment = (text) =>
t.callExpression(
t.memberExpression(t.identifier('document'), t.identifier('createComment')),
[t.stringLiteral(text)]
)
/**
* Returns a node that sets a DOM property.
*/
const setDomProperty = (id, prop, value) =>
t.assignmentExpression('=',
t.memberExpression(id, t.identifier(prop)),
value)
/**
* Returns a node that sets a DOM attribute.
*/
const setDomAttribute = (id, attr, value) =>
t.callExpression(
t.memberExpression(id, t.identifier('setAttribute')),
[t.stringLiteral(attr), value])
const setDomAttributeNS = (id, attr, value, ns = t.nullLiteral()) =>
t.callExpression(
t.memberExpression(id, t.identifier('setAttributeNS')),
[ns, t.stringLiteral(attr), value])
/**
* Returns a node that sets a boolean DOM attribute.
*/
const setBooleanAttribute = (id, attr, value) =>
t.logicalExpression('&&', value,
setDomAttribute(id, attr, t.stringLiteral(attr)))
/**
* Returns a node that appends children to an element.
*/
const appendChild = (appendChildId, id, children) =>
t.callExpression(
appendChildId,
[id, t.arrayExpression(children)]
)
const addDynamicAttribute = (helperId, id, attr, value) =>
t.callExpression(helperId, [id, attr, value])
/**
* Wrap a node in a String() call if it may not be a string.
*/
const ensureString = (node) => {
if (t.isStringLiteral(node)) {
return node
}
return t.callExpression(t.identifier('String'), [node])
}
/**
* Concatenate multiple parts of an HTML attribute.
*/
const concatAttribute = (left, right) =>
t.binaryExpression('+', left, right)
/**
* Check if a node is *not* the empty string.
* (Inverted so it can be used with `[].map` easily)
*/
const isNotEmptyString = (node) =>
!t.isStringLiteral(node, { value: '' })
const isEmptyTemplateLiteral = (node) => {
return t.isTemplateLiteral(node) &&
node.expressions.length === 0 &&
node.quasis.length === 1 &&
t.isTemplateElement(node.quasis[0]) &&
node.quasis[0].value.raw === ''
}
/**
* Transform a template literal into raw DOM calls.
*/
const nanohtmlify = (path, state) => {
if (isEmptyTemplateLiteral(path.node)) {
return t.unaryExpression('void', t.numericLiteral(0))
}
const quasis = path.node.quasis.map((quasi) => quasi.value.cooked)
const expressions = path.node.expressions
const expressionPlaceholders = expressions.map((expr, i) => getPlaceholder(i))
const root = hyperx(transform, { comments: true }).apply(null,
[quasis].concat(expressionPlaceholders))
/**
* Convert placeholders used in the template string back to the AST nodes
* they reference.
*/
function convertPlaceholders (value) {
// Probably AST nodes.
if (typeof value !== 'string') {
return [value]
}
const items = value.split(placeholderRe)
let placeholder = true
return items.map((item) => {
placeholder = !placeholder
return placeholder ? expressions[item] : t.stringLiteral(item)
})
}
/**
* Transform a hyperx vdom element to an AST node that creates the element.
*/
function transform (tag, props, children) {
if (tag === '!--') {
return createComment(props.comment)
}
const id = path.scope.generateUidIdentifier(getElementName(props, tag))
path.scope.push({ id })
const result = []
var isCustomElement = props.is
delete props.is
// Use the SVG namespace for svg elements.
if (SVG_TAGS.includes(tag)) {
state.svgNamespaceId.used = true
if (isCustomElement) {
result.push(t.assignmentExpression('=', id, createNsCustomBuiltIn(state.svgNamespaceId, tag, isCustomElement)))
} else {
result.push(t.assignmentExpression('=', id, createNsElement(state.svgNamespaceId, tag)))
}
} else if (isCustomElement) {
result.push(t.assignmentExpression('=', id, createCustomBuiltIn(tag, isCustomElement)))
} else {
result.push(t.assignmentExpression('=', id, createElement(tag)))
}
Object.keys(props).forEach((propName) => {
const dynamicPropName = convertPlaceholders(propName).filter(isNotEmptyString)
// Just use the normal propName if there are no placeholders
if (dynamicPropName.length === 1 && t.isStringLiteral(dynamicPropName[0])) {
propName = dynamicPropName[0].value
} else {
state.setAttributeId.used = true
result.push(addDynamicAttribute(state.setAttributeId, id, dynamicPropName.reduce(concatAttribute),
convertPlaceholders(props[propName]).filter(isNotEmptyString).reduce(concatAttribute)))
return
}
// don’t convert to lowercase, since some attributes are case-sensetive
let attrName = propName
if (attrName === 'className') {
attrName = 'class'
}
if (attrName === 'htmlFor') {
attrName = 'for'
}
// abc.onclick = xyz
if (attrName.slice(0, 2) === 'on' || DIRECT_PROPS.indexOf(attrName) > -1) {
const value = convertPlaceholders(props[propName]).filter(isNotEmptyString)
result.push(setDomProperty(id, attrName,
value.length === 1
? value[0]
: value.map(ensureString).reduce(concatAttribute)
))
return
}
// Dynamic boolean attributes
if (BOOL_PROPS.indexOf(attrName) !== -1 && props[propName] !== attrName) {
// if (xyz) abc.setAttribute('disabled', 'disabled')
result.push(setBooleanAttribute(id, attrName,
convertPlaceholders(props[propName])
.filter(isNotEmptyString)[0]))
return
}
// use proper xml namespace for svg use links
if (attrName === 'xlink:href') {
const value = convertPlaceholders(props[propName])
.map(ensureString)
.reduce(concatAttribute)
state.xlinkNamespaceId.used = true
result.push(setDomAttributeNS(id, attrName, value, state.xlinkNamespaceId))
return
}
// abc.setAttribute('class', xyz)
result.push(setDomAttribute(id, attrName,
convertPlaceholders(props[propName])
.map(ensureString)
.reduce(concatAttribute)
))
})
if (Array.isArray(children)) {
const realChildren = children.map(convertPlaceholders)
// Flatten
.reduce((flat, arr) => flat.concat(arr), [])
// Remove empty strings since they don't affect output
.filter(isNotEmptyString)
if (realChildren.length > 0) {
state.appendChildId.used = true
result.push(appendChild(state.appendChildId, id, realChildren))
}
}
result.push(id)
return t.sequenceExpression(result)
}
return root
}
function isNanohtmlRequireCall (node) {
if (!t.isIdentifier(node.callee, { name: 'require' })) {
return false
}
const firstArg = node.arguments[0]
// Not a `require('module')` call
if (!firstArg || !t.isStringLiteral(firstArg)) {
return false
}
const importFrom = firstArg.value
return nanohtmlModuleNames.indexOf(importFrom) !== -1
}
return {
pre () {
this.nanohtmlBindings = new Set()
},
post () {
this.nanohtmlBindings.clear()
},
visitor: {
Program: {
enter (path) {
this.appendChildId = path.scope.generateUidIdentifier('appendChild')
this.setAttributeId = path.scope.generateUidIdentifier('setAttribute')
this.svgNamespaceId = path.scope.generateUidIdentifier('svgNamespace')
this.xlinkNamespaceId = path.scope.generateUidIdentifier('xlinkNamespace')
},
exit (path, state) {
const appendChildModule = this.opts.appendChildModule || 'nanohtml/lib/append-child'
const setAttributeModule = this.opts.setAttributeModule || 'nanohtml/lib/set-attribute'
const useImport = this.opts.useImport
if (this.appendChildId.used) {
addImport(this.appendChildId, appendChildModule)
}
if (this.setAttributeId.used) {
addImport(this.setAttributeId, setAttributeModule)
}
if (this.svgNamespaceId.used) {
path.scope.push({
id: this.svgNamespaceId,
init: t.stringLiteral(SVGNS)
})
}
if (this.xlinkNamespaceId.used) {
path.scope.push({
id: this.xlinkNamespaceId,
init: t.stringLiteral(XLINKNS)
})
}
function addImport (id, source) {
if (useImport) {
path.unshiftContainer('body', t.importDeclaration([
t.importDefaultSpecifier(id)
], t.stringLiteral(source)))
} else {
path.scope.push({
id: id,
init: t.callExpression(t.identifier('require'), [t.stringLiteral(source)])
})
}
}
}
},
/**
* Collect nanohtml variable names and remove their imports if necessary.
*/
ImportDeclaration (path, state) {
const importFrom = path.get('source').node.value
if (nanohtmlModuleNames.indexOf(importFrom) !== -1) {
const specifier = path.get('specifiers')[0]
if (specifier.isImportDefaultSpecifier()) {
this.nanohtmlBindings.add(path.scope.getBinding(specifier.node.local.name))
}
}
},
CallExpression (path, state) {
if (isNanohtmlRequireCall(path.node)) {
// Not a `thing = require(...)` declaration
if (!path.parentPath.isVariableDeclarator()) return
this.nanohtmlBindings.add(path.parentPath.scope.getBinding(path.parentPath.node.id.name))
}
},
TaggedTemplateExpression (path, state) {
const tag = path.get('tag')
const binding = tag.isIdentifier()
? path.scope.getBinding(tag.node.name)
: null
const isNanohtmlBinding = binding ? this.nanohtmlBindings.has(binding) : false
if (isNanohtmlBinding || isNanohtmlRequireCall(tag.node)) {
let newPath = nanohtmlify(path.get('quasi'), state)
// If this template string is the only expression inside an arrow
// function, the `nanohtmlify` call may have introduced new variables
// inside its scope and forced it to become an arrow function with
// a block body. In that case if we replace the old `path`, it
// doesn't do anything. Instead we need to find the newly introduced
// `return` statement.
if (path.parentPath.isArrowFunctionExpression()) {
const statements = path.parentPath.get('body.body')
if (statements) {
path = statements.find((st) => st.isReturnStatement())
}
}
path.replaceWith(newPath)
// Remove the import or require() for the tag if it's no longer used
// anywhere.
if (binding) {
binding.dereference()
if (!binding.referenced) {
removeBindingImport(binding)
}
}
}
}
}
}
}