-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserializeSelectedHTML.js
289 lines (245 loc) · 7.86 KB
/
serializeSelectedHTML.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
/**
* Snapshooter is responsible for returning HTML and computed CSS of all nodes from selected DOM subtree.
*
* @param HTMLElement root Root node for the subtree that will be processed
* @returns {*} object with HTML as a string and CSS as an array of arrays of css properties
*/
function Snapshooter(root) {
"use strict";
// list of shorthand properties based on CSSShorthands.in from the Chromium
// code (https://code.google.com/p/chromium/codesearch)
// TODO this list should not be hardcoded here
var shorthandProperties = {
'animation': 'animation',
'background': 'background',
'border': 'border',
'border-top': 'borderTop',
'border-right': 'borderRight',
'border-bottom': 'borderBottom',
'border-left': 'borderLeft',
'border-width': 'borderWidth',
'border-color': 'borderColor',
'border-style': 'borderStyle',
'border-radius': 'borderRadius',
'border-image': 'borderImage',
'border-spacing': 'borderSpacing',
'flex': 'flex',
'flex-flow': 'flexFlow',
'font': 'font',
'grid-area': 'gridArea',
'grid-column': 'gridColumn',
'grid-row': 'gridRow',
'list-style': 'listStyle',
'margin': 'margin',
'marker': 'marker',
'outline': 'outline',
'overflow': 'overflow',
'padding': 'padding',
'text-decoration': 'textDecoration',
'transition': 'transition',
'-webkit-border-after': 'webkitBorderAfter',
'-webkit-border-before': 'webkitBorderBefore',
'-webkit-border-end': 'webkitBorderEnd',
'-webkit-border-start': 'webkitBorderStart',
'-webkit-columns': 'webkitBorderColumns',
'-webkit-column-rule': 'webkitBorderColumnRule',
'-webkit-margin-collapse': 'webkitMarginCollapse',
'-webkit-mask': 'webkitMask',
'-webkit-mask-position': 'webkitMaskPosition',
'-webkit-mask-repeat': 'webkitMaskRepeat',
'-webkit-text-emphasis': 'webkitTextEmphasis',
'-webkit-transition': 'webkitTransition',
'-webkit-transform-origin': 'webkitTransformOrigin'
},
idCounter = 1;
/**
* Changes CSSStyleDeclaration to simple Object removing unwanted properties
* ('1','2','parentRule','cssText' etc.) in the process.
*
* @param CSSStyleDeclaration style
* @returns {}
*/
function styleDeclarationToSimpleObject(style) {
var i, l, cssName, camelCaseName,
output = {};
for (i = 0, l = style.length; i < l; i++) {
output[style[i]] = style[style[i]];
}
// Work around http://crbug.com/313670 (the "content" property is not
// present as a computed style indexed property value).
output.content = fixContentProperty(style.content);
// Since shorthand properties are not available in the indexed array, copy
// them from named properties
for (cssName in shorthandProperties) {
if (shorthandProperties.hasOwnProperty(cssName)) {
camelCaseName = shorthandProperties[cssName];
output[cssName] = style[camelCaseName];
}
}
return output;
}
// Partial workaround for http://crbug.com/315028 (single words in the
// "content" property are not wrapped with quotes)
function fixContentProperty(content) {
var values, output, value, i, l;
output = [];
if (content) {
//content property can take multiple values - we need to split them up
//FIXME this won't work for '\''
values = content.match(/(?:[^\s']+|'[^']*')+/g);
for (i = 0, l = values.length; i < l; i++) {
value = values[i];
if (value.match(/^(url\()|(attr\()|normal|none|open-quote|close-quote|no-open-quote|no-close-quote|chapter_counter|'/g)) {
output.push(value);
} else {
output.push("'" + value + "'");
}
}
}
return output.join(' ');
}
function createID(node) {
//":snappysnippet_prefix:" is a prefix placeholder
return ':snappysnippet_prefix:' + node.tagName + '_' + idCounter++;
}
function dumpCSS(node, pseudoElement) {
var styles;
styles = node.ownerDocument.defaultView.getComputedStyle(node, pseudoElement);
if (pseudoElement) {
//if we are dealing with pseudoelement, check if 'content' property isn't empty
//if it is, then we can ignore the whole element
if (!styles.getPropertyValue('content')) {
return null;
}
}
return styleDeclarationToSimpleObject(styles);
}
function cssObjectForElement(element, omitPseudoElements) {
return {
id: createID(element),
tagName: element.tagName,
node: dumpCSS(element, null),
before: omitPseudoElements ? null : dumpCSS(element, ':before'),
after: omitPseudoElements ? null : dumpCSS(element, ':after')
};
}
function ancestorTagHTML(element, closingTag) {
var i, attr, value, idSeen,
result, attributes;
if (closingTag) {
return '</' + element.tagName + '>';
}
result = '<' + element.tagName;
attributes = element.attributes;
for (i = 0; i < attributes.length; ++i) {
attr = attributes[i];
if (attr.name.toLowerCase() === 'id') {
value = createID(element);
idSeen = true;
} else {
value = attr.value;
}
result += ' ' + attributes[i].name + '="' + value + '"';
}
if (!idSeen) {
result += ' id="' + createID(element) + '"';
}
result += '>';
return result;
}
/**
* Replaces all relative URLs (in images, links etc.) with absolute URLs
* @param element
*/
function relativeURLsToAbsoluteURLs(element) {
switch (element.nodeName) {
case 'A':
case 'AREA':
case 'LINK':
case 'BASE':
if (element.hasAttribute('href')) {
element.setAttribute('href', element.href);
}
break;
case 'IMG':
case 'IFRAME':
case 'INPUT':
case 'FRAME':
case 'SCRIPT':
if (element.hasAttribute('src')) {
element.setAttribute('src', element.src);
}
break;
case 'FORM':
if (element.hasAttribute('action')) {
element.setAttribute('action', element.action);
}
break;
}
}
function init() {
var css = [],
ancestorCss = [],
descendants,
descendant,
htmlSegments,
leadingAncestorHtml,
trailingAncestorHtml,
reverseAncestors = [],
i, l,
parent,
clone;
descendants = root.getElementsByTagName('*');
parent = root.parentElement;
while (parent && parent !== document.body) {
reverseAncestors.push(parent);
parent = parent.parentElement;
}
// First we go through all nodes and dump all CSS
css.push(cssObjectForElement(root));
for (i = 0, l = descendants.length; i < l; i++) {
css.push(cssObjectForElement(descendants[i]));
}
for (i = reverseAncestors.length - 1; i >= 0; i--) {
ancestorCss.push(cssObjectForElement(reverseAncestors[i], true));
}
// Next we dump all HTML and update IDs
// Since we don't want to touch original DOM and we want to change IDs, we clone the original DOM subtree
clone = root.cloneNode(true);
descendants = clone.getElementsByTagName('*');
idCounter = 1;
clone.setAttribute('id', createID(clone));
for (i = 0, l = descendants.length; i < l; i++) {
descendant = descendants[i];
descendant.setAttribute('id', createID(descendant));
relativeURLsToAbsoluteURLs(descendant);
}
// Build leading and trailing HTML for ancestors
htmlSegments = [];
for (i = reverseAncestors.length - 1; i >= 0; i--) {
htmlSegments.push(ancestorTagHTML(reverseAncestors[i]));
}
leadingAncestorHtml = htmlSegments.join('');
htmlSegments = [];
for (i = 0, l = reverseAncestors.length; i < l; i++) {
htmlSegments.push(ancestorTagHTML(reverseAncestors[i], true));
}
trailingAncestorHtml = htmlSegments.join('');
return JSON.stringify({
html: clone.outerHTML,
leadingAncestorHtml: leadingAncestorHtml,
trailingAncestorHtml: trailingAncestorHtml,
css: css,
ancestorCss: ancestorCss
});
}
return init();
}
// silliness with divs to get a single element to give to snapshooter
var selectionDiv = document.createElement('div')
var selection = window.getSelection().getRangeAt(0)
var startNode = selection.startContainer.parentNode.cloneNode(true)
var endNode = selection.endContainer.parentNode.cloneNode(true)
selectionDiv.appendChild(startNode)
selectionDiv.appendChild(endNode)
Snapshooter(selectionDiv)