-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathhtml-template.js
165 lines (144 loc) · 4.26 KB
/
html-template.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
/**
* Copyright 2018 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
const {
staticTemplateFactories,
staticTemplateTags,
staticTemplateFactoryFns,
} = require('../babel-plugins/static-template-metadata');
module.exports = function (context) {
function tagCannotBeCalled(node) {
const {name} = node.callee;
context.report({
node,
message:
`The ${name} helper MUST NOT be called directly. ` +
'Instead, use it as a template literal tag: ``` ' +
name +
'`<div />` ```',
});
}
function factoryUsage(node) {
const {parent} = node;
const {name} = node.callee;
const expectedTagName = staticTemplateFactories[name];
if (parent.type === 'TaggedTemplateExpression' && parent.tag === node) {
return tagUsage(parent, `${name}()`);
}
if (
parent.type === 'VariableDeclarator' &&
parent.init === node &&
parent.id.type === 'Identifier' &&
parent.id.name === expectedTagName
) {
return;
}
if (
parent.type === 'AssignmentExpression' &&
parent.right === node &&
parent.left.type === 'Identifier' &&
parent.left.name === expectedTagName
) {
return;
}
context.report({
node,
message:
`${name} result must be stored into a variable named ` +
`"${expectedTagName}", or used as the tag of a tagged template ` +
'literal.',
});
}
function tagUsage(node, opt_name) {
const {quasi, tag} = node;
if (quasi.expressions.length !== 0) {
context.report({
node,
message:
`The ${opt_name || tag.name} template tag CANNOT accept expression.` +
' The template MUST be static only.',
});
}
const template = quasi.quasis[0];
const string = template.value.cooked;
if (!string) {
context.report({
node: template,
message: 'Illegal escape sequence detected in template literal.',
});
}
if (/<(html|body|head)/i.test(string)) {
context.report({
node: template,
message:
'It it not possible to generate HTML, BODY, or' +
' HEAD root elements. Please do so manually with' +
' document.createElement.',
});
}
const invalids = invalidVoidTag(string);
if (invalids.length) {
const sourceCode = context.getSourceCode();
const {start} = template;
for (let i = 0; i < invalids.length; i++) {
const {tag, offset} = invalids[i];
context.report({
node: template,
loc: sourceCode.getLocFromIndex(start + offset),
message: `Invalid void tag "${tag}"`,
});
}
}
}
function invalidVoidTag(string) {
// Void tags are defined at
// https://html.spec.whatwg.org/multipage/syntax.html#void-elements
const invalid = /<(?!area|base|br|col|embed|hr|img|input|link|meta|param|source|track|wbr)([a-zA-Z-]+)( [^>]*)?\/>/g;
const matches = [];
let match;
while ((match = invalid.exec(string))) {
matches.push({
tag: match[1],
offset: match.index,
});
}
return matches;
}
return {
CallExpression(node) {
if (/test-/.test(context.getFilename())) {
return;
}
const {callee} = node;
if (callee.type !== 'Identifier') {
return;
}
if (staticTemplateTags.has(callee.name)) {
return tagCannotBeCalled(node);
}
if (staticTemplateFactoryFns.has(callee.name)) {
return factoryUsage(node);
}
},
TaggedTemplateExpression(node) {
const {tag} = node;
if (tag.type !== 'Identifier' || !staticTemplateTags.has(tag.name)) {
return;
}
tagUsage(node);
},
};
};