forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get-diffable-html.js
327 lines (285 loc) · 9.09 KB
/
get-diffable-html.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
const DEFAULT_IGNORE_TAGS = ['script', 'style', 'svg'];
const DEFAULT_EMPTY_ATTRS = ['class', 'id'];
const VOID_ELEMENTS = [
'area',
'base',
'br',
'col',
'embed',
'hr',
'img',
'input',
'keygen',
'link',
'menuitem',
'meta',
'param',
'source',
'track',
'wbr',
];
/**
* Reverses the sense of a predicate
* @param {(x: any) => Boolean} p predicate
* @return {(x: any) => Boolean}
*/
const not = p => (...args) => !p(...args);
/**
* @typedef IgnoreAttributesForTags
* @property {string[]} tags tags on which to ignore the given attributes
* @property {string[]} attributes attributes to ignore for the given tags
*/
/**
* @typedef DiffOptions
* @property {(string | IgnoreAttributesForTags)[]} [ignoreAttributes]
* array of attributes to ignore, when given a string that attribute will be ignored on all tags
* when given an object of type `IgnoreAttributesForTags`, you can specify on which tags to ignore which attributes
* @property {string[]} [ignoreTags] array of tags to ignore, these tags are stripped from the output
* @property {string[]} [ignoreChildren] array of tags whose children to ignore, the children of
* these tags are stripped from the output
* @property {string[]} [stripEmptyAttributes] array of attributes which should be removed when empty.
* Be careful not to add any boolean attributes here (e.g. `hidden`) unless you know what you're doing
*/
/**
* Restructures given HTML string, returning it in a format which can be used for comparison:
* - whitespace and newlines are normalized
* - tags and attributes are printed on individual lines
* - comments, style, script and svg tags are removed
* - additional tags and attributes can optionally be ignored
*
* See README.md for details.
*
* @example
* import getDiffableHTML from '@open-wc/semantic-dom-diff';
*
* const htmlA = getDiffableHTML(`... some html ...`, { ignoredAttributes: [], ignoredTags: [], ignoreChildren: [] });
* const htmlB = getDiffableHTML(`... some html ...`);
*
* // use regular string comparison to spot the differences
* expect(htmlA).to.equal(htmlB);
*
* @param {Node | string} html
* @param {DiffOptions} [options]
* @returns {string} html restructured in a diffable format
*/
export function getDiffableHTML(html, options = {}) {
const ignoreAttributes = /** @type {string[]} */ (options.ignoreAttributes
? options.ignoreAttributes.filter(e => typeof e === 'string')
: []);
const ignoreAttributesForTags = /** @type {IgnoreAttributesForTags[]} */ (options.ignoreAttributes
? options.ignoreAttributes.filter(e => typeof e !== 'string')
: []);
const ignoreTags = [...(options.ignoreTags || []), ...DEFAULT_IGNORE_TAGS];
const ignoreChildren = options.ignoreChildren || [];
const stripEmptyAttributes = options.stripEmptyAttributes || DEFAULT_EMPTY_ATTRS;
const escapeAttributes = /(&|")/g;
/** @param {string} match */
const escapeAttributesFn = match => (match === '&' ? '&' : '"');
let text = '';
let depth = -1;
/** @type {Set<Node>} */
const handledChildrenForNode = new Set();
/** @type {Set<Node>} */
const handledNodeStarted = new Set();
/** @returns {string} */
function getIndentation() {
return ' '.repeat(depth);
}
/**
* @param {Text} textNode
* @param {TreeWalker} walker
*/
function printText(textNode, walker) {
let value = '';
let node = textNode;
while (node && node instanceof Text) {
value += node.nodeValue;
node = walker.nextSibling();
}
if (node) {
walker.previousSibling();
}
value = value.trim();
if (value !== '') {
text += `${getIndentation()}${value}\n`;
}
}
/** @param {Node} node */
function getTagName(node) {
// Use original tag if available via data-tag-name attribute (use-case for scoped elements)
// See packages/scoped-elements for more info
if (node instanceof Element) {
return node.getAttribute('data-tag-name') || node.localName;
}
return node.nodeName.toLowerCase();
}
/** @param {Node} node */
function shouldProcessChildren(node) {
const name = getTagName(node);
return (
!ignoreTags.includes(name) &&
!ignoreChildren.includes(name) &&
!handledChildrenForNode.has(node)
);
}
/**
* An element's classList, sorted, as string
* @param {Element} el Element
* @return {String}
*/
function getClassListValueString(el) {
// @ts-ignore
return [...el.classList.values()].sort().join(' ');
}
function shouldStripAttribute({ name, value }) {
return stripEmptyAttributes.includes(name) && value.trim() === '';
}
/**
* @param {Element} el
* @param {Attr} attr
*/
function getAttributeString(el, { name, value }) {
if (shouldStripAttribute({ name, value })) return '';
if (name === 'class') return ` class="${getClassListValueString(el)}"`;
return ` ${name}="${value.replace(escapeAttributes, escapeAttributesFn)}"`;
}
/**
* @param {Element} el
* @return {(attr: Attr) => Boolean}
*/
function isIgnoredAttribute(el) {
return function isIgnoredElementAttibute(attr) {
if (ignoreAttributes.includes(attr.name) || shouldStripAttribute(attr)) {
return true;
}
return !!ignoreAttributesForTags.find(e => {
if (!e.tags || !e.attributes) {
throw new Error(
`An object entry to ignoreAttributes should contain a 'tags' and an 'attributes' property.`,
);
}
return e.tags.includes(getTagName(el)) && e.attributes.includes(attr.name);
});
};
}
const sortAttribute = (a, b) => a.name.localeCompare(b.name);
/** @param {Element} el */
function getAttributesString(el) {
let attrStr = '';
const attributes = Array.from(el.attributes)
.filter(not(isIgnoredAttribute(el)))
.sort(sortAttribute);
if (attributes.length === 1) {
attrStr = getAttributeString(el, attributes[0]);
} else if (attributes.length > 1) {
for (let i = 0; i < attributes.length; i += 1) {
attrStr += `\n${getIndentation()} ${getAttributeString(el, attributes[i])}`;
}
attrStr += `\n${getIndentation()}`;
}
return attrStr;
}
/** @param {Element} el */
function printOpenElement(el) {
text += `${getIndentation()}<${getTagName(el)}${getAttributesString(el)}>\n`;
}
/**
* @param {Node} node
* @param {TreeWalker} walker
*/
function onNodeStart(node, walker) {
// don't print this node if we should ignore it
if (getTagName(node) === 'diff-container' || ignoreTags.includes(getTagName(node))) {
return;
}
// don't print this node if it was already printed, this happens when
// crawling upwards after handling children
if (handledNodeStarted.has(node)) {
return;
}
handledNodeStarted.add(node);
if (node instanceof Text) {
printText(node, walker);
} else if (node instanceof Element) {
printOpenElement(node);
} else {
throw new Error(`Unknown node type: ${node}`);
}
}
/** @param {Element} el */
function printCloseElement(el) {
if (getTagName(el) === 'diff-container' || VOID_ELEMENTS.includes(getTagName(el))) {
return;
}
text += `${getIndentation()}</${getTagName(el)}>\n`;
}
/** @param {Node} node */
function onNodeEnd(node) {
// don't print this node if we should ignore it
if (ignoreTags.includes(getTagName(node))) {
return;
}
if (node instanceof Element) {
printCloseElement(node);
}
}
let container;
if (typeof html === 'string') {
container = document.createElement('diff-container');
container.innerHTML = html;
depth = -1;
} else if (html instanceof Node) {
container = html;
depth = 0;
} else {
throw new Error(`Cannot create diffable HTML from: ${html}`);
}
const walker = document.createTreeWalker(
container,
NodeFilter.SHOW_TEXT + NodeFilter.SHOW_ELEMENT,
null,
false,
);
// walk the dom and create a diffable string representation
while (walker.currentNode) {
const current = walker.currentNode;
onNodeStart(current, walker);
// crawl children if we should for this node, and if it has children
if (shouldProcessChildren(current) && walker.firstChild()) {
depth += 1;
} else {
// we are done processing this node's children, handle this node's end
onNodeEnd(current);
// move to next sibling
const sibling = walker.nextSibling();
// otherwise move back up to parent node
if (!sibling) {
depth -= 1;
const parent = walker.parentNode();
// if there is no parent node, we are done
if (!parent) {
break;
}
// we just processed the parent's children, remember so that we don't
// process them again later
handledChildrenForNode.add(parent);
}
}
}
return text;
}
/**
* @param {*} arg
* @return {arg is DiffOptions}
*/
export function isDiffOptions(arg) {
return (
arg &&
arg !== null &&
typeof arg === 'object' &&
('ignoreAttributes' in arg ||
'ignoreTags' in arg ||
'ignoreChildren' in arg ||
'stripEmptyAttributes' in arg)
);
}