-
Notifications
You must be signed in to change notification settings - Fork 2
/
fitToWidth.js
461 lines (365 loc) · 10.3 KB
/
fitToWidth.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
451
452
453
454
455
456
457
458
459
460
461
'use strict';
var resizeClassName = 'akdorFitToWidth';
var hasLongTextChildClassName = 'akdorHasLongTextChild';
var styleSheetName = 'fitToWidthStyle';
var styleSheet;
var classRule;
function AsyncForeacher(func, batchSize = 5) {
this.func = func;
this.queue = [];
this.batchSize = batchSize;
this.i = 0;
this.processCB = (queueDone) => this._processAsync(queueDone);
this.running = false;
}
AsyncForeacher.prototype = Object.create(Object.prototype);
AsyncForeacher.prototype.
add = function(element, run=true) {
this.queue.push(element);
if (run) {
window.setTimeout( () => this.process(), 5);
}
}
AsyncForeacher.prototype.
_processSync = function(callback) {
var batchLimit = Math.min(this.i+this.batchSize, this.queue.length);
for (; this.i < batchLimit; this.i++) {
this.func(this.queue[this.i]);
this.queue[this.i] = undefined;
}
var queueDone = (this.i == this.queue.length);
callback(queueDone);
}
AsyncForeacher.prototype.
process = function() {
if (this.running) {
return;
}
//console.log(`starting loop! i=${this.i}, l=${this.queue.length}, n=${this.queue[this.i].outerHTML}`);
this.running = true;
this._processAsync();
}
AsyncForeacher.prototype.
_processAsync = function(queueDone = false) {
if (queueDone) {
//console.log('ending loop!');
this.running = false;
return;
}
window.setTimeout( () => this._processSync(this.processCB) , 5);
}
function setupStyle() {
var styleElement = document.createElement('style');
styleElement.title = styleSheetName;
document.head.appendChild(styleElement);
return styleElement;
}
var getStyleSheet = () => Array.prototype.find.call(
document.styleSheets,
(maybeStyle) => maybeStyle.title == styleSheetName
);
function addStyleSheetRule(rule, styleSheet) {
var classRuleIndex = styleSheet.insertRule(rule, 0);
var classRule = styleSheet.cssRules[classRuleIndex];
return classRule;
}
function setupClass(styleSheet) {
maxWidthClassRule = addStyleSheetRule(`.${resizeClassName}:not(img) { max-width: auto }`, styleSheet);
addStyleSheetRule(`.${hasLongTextChildClassName} { max-width: auto }`, styleSheet);
addStyleSheetRule(`* .${hasLongTextChildClassName} { max-width: auto }`, styleSheet);
}
function setMaxWidth(widthInPx) {
var widthValue = (widthInPx) ? `${widthInPx}px` : 'auto';
maxWidthClassRule.style.setProperty('max-width', widthValue, 'important');
//classRule.style.setProperty('background-color', 'red', 'important');
}
function setMinWidth(widthInPx) {
var widthValue = (widthInPx) ? `${widthInPx}px` : 'auto';
minWidthClassRule.style.setProperty('min-width', widthValue, 'important');
}
function isLongTextNode(node) {
return (node.nodeType == Node.TEXT_NODE
&& node.nodeValue.length > 10
&& node.nodeValue.trim().length > 10);
}
function isInline(node) {
if (!node.nodeStyle) {
var computedStyle = window.getComputedStyle(node);
if (!computedStyle) {
return true;
}
node.nodeStyle = computedStyle.display;
}
if (!node.nodeStyle) {
return true;
}
switch (node.nodeStyle) {
case 'inline':
//case 'inline-block':
return true;
default:
return false;
}
}
function hasWidth(node) {
if (!node.nodeStyle) {
var computedStyle = window.getComputedStyle(node);
if (!computedStyle) {
return;
}
node.nodeStyle = computedStyle.display;
}
if (!node.nodeStyle) {
return false;
}
switch (node.nodeStyle) {
case 'inline-block':
case 'block':
case 'table-cell':
return true;
default:
return false;
}
}
function shouldResize(node) {
return hasWidth(node) && Array.prototype.every.call(
node.children,
(node) => isInline(node)
);
}
function resize(node) {
node.classList.add(resizeClassName);
}
function onNewNode(node) {
if (node.tested) {
return;
}
node.tested = true;
if (isLongTextNode(node)) {
if (node.parentNode && !node.parentNode.akdorHasLongTextChild) {
node.parentNode.akdorHasLongTextChild = true;
node.parentNode.classList.add(hasLongTextChildClassName);
node.parentNode.classList.add(resizeClassName);
}
}
if (!(node instanceof Element)) {
return;
}
if (isInline(node)) {
//do nothing
} else {
//console.log('stopping a '+node.nodeName+' from resizing');
if (node.parentNode && ! node.parentNode.akdorHasLongTextChild) {
node.parentNode.classList.remove(resizeClassName);
}
}
if (hasWidth(node)) {
//console.log('setting a '+node.nodeName+' to resize');
node.classList.add(resizeClassName);
}
}
function walkChildren(node) {
elementQueue.add(node, false);
if (!node.children) {
return;
}
Array.prototype.forEach.call(node.childNodes, walkChildren);
}
function onMutation(mutations, observer) {
for (let mutation of mutations) {
for (let newNode of mutation.addedNodes) {
try {
if (!loaded) {
//console.error('mutation called before loaded!');
} else {
walkChildren(newNode);
elementQueue.process();
}
} catch (e) {
//console.error('oh no!');
//console.error(e.message);
//console.error(e.stack);
}
}
}
}
var loaded = false;
var elements = Array(1000);
var elementQueue = new AsyncForeacher(onNewNode, 40);
function setupObserver() {
var observeOptions = {
'childList': true,
'subtree': true
};
var observer = new MutationObserver(onMutation);
observer.observe(document.documentElement, observeOptions);
}
var minWidthClassRule;
var maxWidthClassRule;
function main() {
document.addEventListener('DOMContentLoaded', onLoad, false);
}
function onLoad() {
//console.log('running onLoad');
document.removeEventListener('DOMContentLoaded', onLoad, false);
loaded = true;
if (!forSmallScreens()) {
setup();
//console.log('page looks like it\'s for desktop, resizing');
actuallyWalk();
} else {
//console.log('page looks like it\'s for mobile, leaving alone');
}
}
function setup() {
setupStyle();
var styleSheet = getStyleSheet();
setupClass(styleSheet);
window.setInterval(checkIfResized, 250);
}
function metaStringToObject(metaString) {
//"a=asdf; b= adf" => { a: 'asdf', b: 'asdf' }
var contentData = {};
metaString.split(',').forEach((contentDatum) => {
var contentDatumSplit = contentDatum.split('=');
if (contentDatumSplit.length != 2) {
return;
}
contentData[contentDatumSplit[0].trim()] = contentDatumSplit[1].trim();
});
return contentData;
}
function forSmallScreens() {
var viewportElement = document.querySelector('meta[name=viewport]');
if (!viewportElement || !viewportElement.content) {
return false;
}
var contentData = metaStringToObject(viewportElement.content);
if (contentData.width == 'device-width') {
return true;
}
if (parseInt(contentData.width) <= 480) {
return true;
}
if (contentData['initial-scale']) {
return true;
}
return false;
}
function actuallyWalk() {
//console.log('walking');
walkChildren(document.body);
elementQueue.process();
//console.log('walked');
//console.log(`observing ${window.location.href}`);
setupObserver();
//console.log('...for reals');
}
var oldWidth;
var currentlyResizing;
function checkIfResized() {
if (oldWidth != window.innerWidth) {
oldWidth = window.innerWidth;
currentlyResizing = true;
} else {
if (currentlyResizing) {
windowSizeChanged(oldWidth);
}
currentlyResizing = false;
}
}
var resizeTimout = 0;
function onResize(e) {
//console.error('event got');
//console.log(`clearing timer ${window.resizeTimeout}`)
clearTimeout(resizeTimout);
resizeTimeout = setTimeout(windowSizeChanged.bind(undefined, classRule), 500);
//console.log(`new timeout is ${window.resizeTimeout}`)
}
function windowSizeChanged(oldWidth) {
var viewportWidth = window.innerWidth - 10;
if (viewportWidth <= 5) {
return;
}
//setMinWidth(viewportWidth, classRule);
var elementToScrollTo = guessFocusedElement(Math.min(oldWidth, window.innerWidth));
setMaxWidth(viewportWidth);
window.requestAnimationFrame(() => {
if (elementToScrollTo && !isElementVisible(elementToScrollTo)) {
console.log('we need to scroll');
elementToScrollTo.scrollIntoView();
} else {
console.log('no need to scroll');
}
});
}
function* coordinates({minX, maxX, numX, minY, maxY, numY}) {
for (let yi = 0; yi < numY; yi++) {
for (let xi = 0; xi < numX; xi++) {
yield [
minX + (xi * (maxX - minX) / (numX-1)),
minY + (yi * (maxY - minY) / (numY-1)),
];
}
}
}
function focusedElementCoordinates(width, height) {
const numX = 6;
const numY = 4;
const minY = 0.2 * height;
const maxY = 0.6 * height;
const minX = 0.1 * width;
const maxX = 0.9 * width;
return coordinates({minX, maxX, numX, minY, maxY, numY});
}
function zoomOutElementCoordinates() {
}
function* maybeFocusedElements(width, height) {
const html = document.querySelector('html');
for (let coord of focusedElementCoordinates(width, height)) {
const element = document.elementFromPoint(...coord);
if (element !== document.body && element !== html) {
yield element;
}
}
}
function getMostCommon(iterator) {
const counts = new Map();
for (const item of iterator) {
if (! counts.has(item) ) {
counts.set(item, 1);
} else {
counts.set(item, counts.get(item)+1);
}
}
console.log(counts);
let maxCount = 0;
let maxElement = undefined;
for (const [element, count] of counts) {
if (count > maxCount) {
maxCount = count;
maxElement = element;
}
}
return maxElement;
}
function guessFocusedElement(width) {
return getMostCommon(maybeFocusedElements(width, window.innerHeight));
}
function isElementVisible(el) {
var rect = el.getBoundingClientRect();
const middleX = rect.left + rect.width / 2;
const middleY = rect.top + rect.height / 2;
console.dir({
middleX,
middleY,
height: window.innerHeight,
width: window.innerWidth
})
return (
middleX >= 0 &&
middleY >= 0 &&
middleY <= (window.innerHeight) &&
middleX <= (window.innerWidth)
);
}