Skip to content

Commit 79614c9

Browse files
committed
fix(html): remove missing element check, clean code (#153)
1 parent 0b57f0a commit 79614c9

File tree

2 files changed

+7
-38
lines changed

2 files changed

+7
-38
lines changed

src/template/core.js

+7-30
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ const createWalker =
147147
? createInternalWalker
148148
: createExternalWalker;
149149

150-
const container = document.createElement("div");
151150
const styleSheetsMap = new Map();
152151

153152
function normalizeWhitespace(input, startIndent = 0) {
@@ -193,11 +192,8 @@ export function compileTemplate(rawParts, isSVG, styles) {
193192
const template = document.createElement("template");
194193
const parts = [];
195194

196-
let signature = createSignature(rawParts, styles);
197-
if (isSVG) signature = `<svg>${signature}</svg>`;
198-
199-
container.innerHTML = `<template>${signature}</template>`;
200-
template.content.appendChild(container.children[0].content);
195+
const signature = createSignature(rawParts, styles);
196+
template.innerHTML = isSVG ? `<svg>${signature}</svg>` : signature;
201197

202198
if (isSVG) {
203199
const svgRoot = template.content.firstChild;
@@ -217,8 +213,12 @@ export function compileTemplate(rawParts, isSVG, styles) {
217213

218214
if (node.nodeType === Node.TEXT_NODE) {
219215
const text = node.textContent;
216+
const equal = text.match(PLACEHOLDER_REGEXP_EQUAL);
220217

221-
if (!text.match(PLACEHOLDER_REGEXP_EQUAL)) {
218+
if (equal) {
219+
node.textContent = "";
220+
parts[equal[1]] = [compileIndex, resolveValue];
221+
} else {
222222
const results = text.match(PLACEHOLDER_REGEXP_ALL);
223223
if (results) {
224224
let currentNode = node;
@@ -245,12 +245,6 @@ export function compileTemplate(rawParts, isSVG, styles) {
245245
});
246246
}
247247
}
248-
249-
const equal = node.textContent.match(PLACEHOLDER_REGEXP_EQUAL);
250-
if (equal) {
251-
node.textContent = "";
252-
parts[equal[1]] = [compileIndex, resolveValue];
253-
}
254248
} else {
255249
/* istanbul ignore else */ // eslint-disable-next-line no-lonely-if
256250
if (node.nodeType === Node.ELEMENT_NODE) {
@@ -329,23 +323,6 @@ export function compileTemplate(rawParts, isSVG, styles) {
329323
while (renderWalker.nextNode()) {
330324
const node = renderWalker.currentNode;
331325

332-
if (node.nodeType === Node.TEXT_NODE) {
333-
/* istanbul ignore next */
334-
if (PLACEHOLDER_REGEXP_EQUAL.test(node.textContent)) {
335-
node.textContent = "";
336-
}
337-
} else if (
338-
node.nodeType === Node.ELEMENT_NODE &&
339-
node.tagName.indexOf("-") > -1 &&
340-
!customElements.get(node.tagName.toLowerCase())
341-
) {
342-
throw Error(
343-
`Missing ${stringifyElement(
344-
node,
345-
)} element definition in ${stringifyElement(host)}`,
346-
);
347-
}
348-
349326
while (currentPart && currentPart[0] === renderIndex) {
350327
markers.push([node, currentPart[1]]);
351328
currentPart = clonedParts.shift();

test/spec/html.js

-8
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,6 @@ describe("html:", () => {
8585
}).toThrow();
8686
});
8787

88-
it("throws for missing custom element", () => {
89-
expect(() =>
90-
html`
91-
<missing-element></missing-element>
92-
`(fragment),
93-
).toThrow();
94-
});
95-
9688
it("clears arguments cache when template changes", () => {
9789
html`
9890
<div>${10}</div>

0 commit comments

Comments
 (0)