-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
610 lines (542 loc) · 21.3 KB
/
content.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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
"use strict";
(function () {
const inIframe = window.self !== window.top;
let currentHost = window.location.host;
let outerHostInterval = null;
if (inIframe) {
// If users choose to blacklist a site, it would be unexpected to see
// focus indicators inside iframes on that site, so we'll always use
// the location.host of the topmost window
window.top.postMessage({ type: "GET_CURRENT_HOST" }, "*");
}
let indicatorsAreEnabled = false;
const settings = {};
const overlay = createOverlay();
const liveCollectionIframes = document.getElementsByTagName("iframe");
const encounteredShadowRoots = new WeakSet();
const shadowFocusListeners = new Map();
let then = Date.now();
let lastBorderRadius = null;
let lastKnownPosition = {
top: 0,
left: 0,
width: 0,
height: 0,
};
let lastMovementTime = 0;
chrome.storage.sync.get(
[
"listType",
"siteList",
"outlineWidth",
"outlineOffset",
"indicatorPosition",
"indicatorColor",
"forceOpacity",
"useTransition",
"textInputOverride",
],
(data) => {
Object.assign(settings, data);
if (!isEnabledOnHost(currentHost)) {
return;
}
handleFocusIn({ target: document.activeElement });
applyFocusIndicators();
},
);
function createOverlay() {
const id = "focusIndicatorOverlay";
const existingOverlay = document.getElementById(id);
if (existingOverlay) {
return existingOverlay;
}
const newOverlay = document.createElement("div");
newOverlay.id = id;
saveInlineStyles(newOverlay, {
margin: "0",
padding: "0",
position: "fixed",
visibility: "hidden",
"z-index": "2147483647",
"pointer-events": "none",
background: "none",
transition: "none",
filter: "none",
transform: "none",
outline: "none",
border: "none",
opacity: "1",
"clip-path": "none",
"user-select": "none",
"mix-blend-mode": "none",
"touch-action": "none",
});
return newOverlay;
}
function updateOverlay(focused, outlineColor = null) {
const isTextInput = isTextInputElement(focused);
if (!focused || focused.tabIndex < 0 || focused.tagName === "IFRAME") {
if (!isTextInput) {
return;
}
}
if (!document.getElementById(overlay.id)) {
// We could do this every time the overlay is updated to account for
// the possibility of something having max z-index and coming after
// it in the document, but I don't want to cover up hint-based extensions
document.documentElement.appendChild(overlay);
}
const rect = focused.getBoundingClientRect();
lastBorderRadius = window.getComputedStyle(focused).borderRadius;
saveInlineStyles(focused, { outline: "none" }); // So no duplicate outline from the website's styles
if (settings.indicatorColor === "hybrid") {
const combinedOffset =
settings.outlineOffset + settings.outlineWidth;
lastKnownPosition = {
top: Math.round(rect.top) - combinedOffset,
left: Math.round(rect.left) - combinedOffset,
width: Math.round(rect.width) + combinedOffset * 2,
height: Math.round(rect.height) + combinedOffset * 2,
};
const w = settings.outlineWidth;
saveInlineStyles(overlay, {
top: `${lastKnownPosition.top}px`,
left: `${lastKnownPosition.left}px`,
width: `${lastKnownPosition.width}px`,
height: `${lastKnownPosition.height}px`,
"backdrop-filter": "grayscale(1) contrast(999) invert(1)",
"clip-path": `polygon(
/* Top left corner */ 0 0,
/* Top right corner */ 100% 0,
/* Bottom right corner */ 100% 100%,
/* Bottom left corner */ 0 100%,
/* Top left corner */ 0 0,
/* Top left INNER corner */ ${w}px ${w}px,
/* Bottom left INNER corner */ ${w}px calc(100% - ${w}px),
/* Bottom right INNER corner */ calc(100% - ${w}px) calc(100% - ${w}px),
/* Top right INNER corner */ calc(100% - ${w}px) ${w}px,
/* Top left INNER corner */ ${w}px ${w}px
)`,
});
saveInlineStyles(focused, { border: "none" });
} else {
if (outlineColor === null) {
outlineColor = chooseOutlineColor(focused);
}
lastKnownPosition = {
top: Math.round(rect.top) - settings.outlineOffset,
left: Math.round(rect.left) - settings.outlineOffset,
width: Math.round(rect.width) + settings.outlineOffset * 2,
height: Math.round(rect.height) + settings.outlineOffset * 2,
};
saveInlineStyles(overlay, {
top: `${lastKnownPosition.top}px`,
left: `${lastKnownPosition.left}px`,
width: `${lastKnownPosition.width}px`,
height: `${lastKnownPosition.height}px`,
"border-radius": lastBorderRadius,
"box-shadow": `0 0 0 1px ${outlineColor === "black" ? "white" : "black"},
0 0 0 ${1 + settings.outlineWidth}px ${outlineColor}`,
"backdrop-filter": "none",
"clip-path": "none",
});
}
if (!settings.textInputOverride || !isTextInput) {
saveInlineStyles(overlay, { visibility: "visible" });
}
}
function getDeepestFocus(element) {
let deepestFocus = element;
if (element === document) {
return document.documentElement;
}
try {
const shadowRoot = chrome.dom.openOrClosedShadowRoot(element);
if (shadowRoot) {
if (!encounteredShadowRoots.has(shadowRoot)) {
attachFocusListenersShadow(shadowRoot);
encounteredShadowRoots.add(shadowRoot);
}
if (shadowRoot.activeElement) {
deepestFocus = getDeepestFocus(shadowRoot.activeElement);
}
}
} catch (err) {
// Ignore
}
return deepestFocus;
}
function focusInHandlerInsideShadow(event) {
this.host.dispatchEvent(
new CustomEvent("shadow-focusin", {
bubbles: true,
composed: true,
detail: {
target: event.target,
relatedTarget: event.relatedTarget,
},
}),
);
}
function focusOutHandlerInsideShadow(event) {
this.host.dispatchEvent(
new CustomEvent("shadow-focusout", {
bubbles: true,
composed: true,
detail: {
target: event.target,
relatedTarget: event.relatedTarget,
},
}),
);
}
function attachFocusListenersShadow(shadowRoot) {
// Focus events inside shadow DOMs are hidden, so using getDeepestFocus
// would only work for the first element focused inside a shadow DOM.
// We attach focus listeners to handle subsequent focus events while
// still inside the shadow DOM or nested shadow doms
if (!shadowRoot) {
return;
}
shadowRoot.addEventListener("focusin", focusInHandlerInsideShadow);
shadowRoot.addEventListener("focusout", focusOutHandlerInsideShadow);
shadowFocusListeners.set(shadowRoot, {
focusInHandlerInsideShadow,
focusOutHandlerInsideShadow,
});
}
function handleFocusInFromShadow(event) {
handleFocusIn(event.detail);
}
function handleFocusOutFromShadow(event) {
handleFocusOut(event.detail);
}
function isTextInputElement(element) {
if (element.tagName === "TEXTAREA" || element.isContentEditable) {
return true;
}
if (element.tagName === "INPUT") {
const type = element.type.toLowerCase();
const textInputTypes = [
"text",
"password",
"email",
"number",
"search",
"tel",
"url",
"date",
"datetime-local",
"month",
"time",
"week",
];
return textInputTypes.includes(type);
}
const role = element.getAttribute("role");
const textInputRoles = [
"textbox",
"searchbox",
"combobox",
"spinbutton",
];
if (textInputRoles.includes(role)) {
return true;
}
return false;
}
function handleFocusIn(event) {
lastBorderRadius = null;
let focused = event?.target;
const isTextInput = isTextInputElement(focused);
if (!focused || (focused.tabIndex < 0 && !isTextInput)) {
return;
}
try {
const possibleShadow = chrome.dom.openOrClosedShadowRoot(focused);
if (encounteredShadowRoots.has(possibleShadow)) {
// This is a duplicate event from the light DOM
// The focus event from the shadow DOM listener will come separately
return;
}
} catch (err) {
// Ignore
}
focused = getDeepestFocus(event.target);
const previouslyFocused = event.relatedTarget;
const outlineColor = chooseOutlineColor(focused);
// Either mode
if (settings.forceOpacity) {
saveInlineStyles(focused, { opacity: "1" });
}
if (
(settings.indicatorPosition === "element" ||
settings.textInputOverride) &&
isTextInput
) {
// Seeing the cursor can be difficult if there is a border right up
// against it, so we will avoid doing that for text inputs
// by only having an outline with an offset.
//
// The outline is 4px instead of 2px so it is the same width as it
// would be with a border and box shadow.
saveInlineStyles(focused, {
outline: `4px solid ${outlineColor}`,
"outline-offset": "2px",
});
if (settings.useTransition) {
updateOverlay(focused, outlineColor);
}
return;
}
// Element mode
if (settings.indicatorPosition === "element") {
saveInlineStyles(focused, {
border: `1px solid ${outlineColor}`, // Can make some stuff move slightly, but it is needed for cases when the element's outline is covered
outline: `2px solid ${outlineColor}`,
"outline-offset": "0",
"box-shadow": `0 0 0 1px ${outlineColor === "black" ? "white" : "black"} inset`,
});
return;
}
// Overlay mode
if (
settings.useTransition &&
previouslyFocused &&
previouslyFocused !== document.body
) {
saveInlineStyles(overlay, { transition: "all 0.05s linear" });
} else {
saveInlineStyles(overlay, { transition: "none" });
}
updateOverlay(focused, outlineColor);
}
function saveInlineStyles(element, styles) {
// Using inline styles to usurp specificity of the website
for (const [property, value] of Object.entries(styles)) {
if (element.id !== "focusIndicatorOverlay") {
const tempAttribute = `data-original-${property}`;
if (!element.getAttribute(tempAttribute)) {
element.setAttribute(
tempAttribute,
element.style[property],
);
}
}
element.style.setProperty(property, value, "important");
}
}
function handleFocusOut(event) {
// NOTE: focusout always fires before focusin is fired on the new element
let unfocused = event.target;
try {
const possibleShadow = chrome.dom.openOrClosedShadowRoot(
event.target,
);
if (encounteredShadowRoots.has(possibleShadow)) {
// This is a duplicate event from the light DOM
// The focus event from the shadow DOM listener will come separately
return;
}
} catch (err) {
// Ignore
}
if (settings.forceOpacity) {
restoreInlineStyles(unfocused, ["opacity"]);
}
restoreInlineStyles(unfocused, [
"outline",
"outline-offset",
"border",
"box-shadow",
]);
saveInlineStyles(overlay, { visibility: "hidden" });
}
function restoreInlineStyles(element, properties) {
for (const property of properties) {
const tempAttribute = `data-original-${property}`;
const originalValue = element.getAttribute(tempAttribute);
if (originalValue === null) {
continue;
} else if (!originalValue) {
element.style.removeProperty(property);
}
element.style[property] = originalValue;
element.removeAttribute(tempAttribute);
}
}
function isEnabledOnHost(host) {
if (!host) {
return true; // It's probably a file
}
const listHasHost = settings.siteList?.includes(host);
if (settings.listType === "blacklist" && !listHasHost) {
return true;
}
if (settings.listType === "whitelist" && listHasHost) {
return true;
}
return false;
}
function applyFocusIndicators() {
indicatorsAreEnabled = true;
document.addEventListener("focusin", handleFocusIn);
document.addEventListener("focusout", handleFocusOut);
document.addEventListener("shadow-focusin", handleFocusInFromShadow);
document.addEventListener("shadow-focusout", handleFocusOutFromShadow);
if (settings.indicatorPosition !== "element") {
document.documentElement.appendChild(overlay);
window.focusIndicatorRAF = requestAnimationFrame(updateOverlayRAF);
}
}
function removeFocusIndicators() {
indicatorsAreEnabled = false;
document.removeEventListener("focusin", handleFocusIn);
document.removeEventListener("focusout", handleFocusOut);
document.removeEventListener("shadow-focusin", handleFocusInFromShadow);
document.removeEventListener(
"shadow-focusout",
handleFocusOutFromShadow,
);
for (const shadowRoot of shadowFocusListeners.keys()) {
const { focusInHandlerInsideShadow, focusOutHandlerInsideShadow } =
shadowFocusListeners.get(shadowRoot);
shadowRoot.removeEventListener(
"focusin",
focusInHandlerInsideShadow,
);
shadowRoot.removeEventListener(
"focusout",
focusOutHandlerInsideShadow,
);
}
shadowFocusListeners.clear();
cancelAnimationFrame(window.focusIndicatorRAF);
overlay.remove();
}
function handleWindowMessages(message) {
switch (message.data?.type) {
case "CLEANUP_FOCUS_INDICATOR": {
window.removeEventListener("message", handleWindowMessages);
removeFocusIndicators();
return;
}
case "UPDATE_CURRENT_HOST": {
clearInterval(outerHostInterval);
currentHost = message.data.host;
if (!isEnabledOnHost(currentHost)) {
removeFocusIndicators();
}
break;
}
case "GET_CURRENT_HOST": {
for (const iframe of liveCollectionIframes) {
iframe.contentWindow.postMessage(
{
type: "UPDATE_CURRENT_HOST",
host: location.host,
},
"*",
);
}
break;
}
}
}
window.addEventListener("message", handleWindowMessages);
chrome.storage.onChanged.addListener((changes, namespace) => {
if (namespace !== "sync") {
return;
}
Object.entries(changes).forEach(([key, { oldValue, newValue }]) => {
if (settings[key] !== newValue) {
settings[key] = newValue;
switch (key) {
case "indicatorPosition":
if (newValue === "element") {
overlay.remove();
cancelAnimationFrame(window.focusIndicatorRAF);
} else {
document.documentElement.appendChild(overlay);
updateOverlay(document.documentElement);
window.focusIndicatorRAF =
requestAnimationFrame(updateOverlayRAF);
}
break;
case "indicatorColor":
updateOverlay(document.documentElement);
break;
case "textInputOverride":
if (isTextInputElement(document.activeElement)) {
saveInlineStyles(overlay, { visibility: "hidden" });
}
break;
case "siteList":
case "listType":
const newIndicatorsAreEnabled =
isEnabledOnHost(currentHost);
if (indicatorsAreEnabled && !newIndicatorsAreEnabled) {
removeFocusIndicators();
} else if (
!indicatorsAreEnabled &&
newIndicatorsAreEnabled
) {
applyFocusIndicators();
}
break;
}
}
});
});
function shouldUpdateOverlay(element) {
if (!element) {
saveInlineStyles(overlay, { visibility: "hidden" });
return false;
}
if (settings.textInputOverride && isTextInputElement(element)) {
return false;
}
const rect = element.getBoundingClientRect();
const currentBorderRadius =
window.getComputedStyle(element).borderRadius;
if (lastBorderRadius && currentBorderRadius !== lastBorderRadius) {
return true;
}
const currentPosition = {
top: Math.round(rect.top) - settings.outlineOffset,
left: Math.round(rect.left) - settings.outlineOffset,
width: Math.round(rect.width) + settings.outlineOffset * 2,
height: Math.round(rect.height) + settings.outlineOffset * 2,
};
const changed = Object.entries(currentPosition).some(
([key, value]) => lastKnownPosition[key] !== value,
);
return changed;
}
function updateOverlayRAF() {
try {
const now = Date.now();
if (now - lastMovementTime > 500 && now - then < 100) {
window.focusIndicatorRAF =
requestAnimationFrame(updateOverlayRAF);
return;
}
then = now;
const focused = getDeepestFocus(document.activeElement);
if (shouldUpdateOverlay(focused)) {
updateOverlay(focused);
// Keep going once movement is detected until movement stops (for smoothness)
lastMovementTime = now;
}
window.focusIndicatorRAF = requestAnimationFrame(updateOverlayRAF);
} catch (err) {
if (err.message.includes("Extension context invalidated")) {
// The extension's context was invalidated due to an update/reload,
// which can be safely ignored
return;
}
console.error(err);
}
}
})();