2017-03-25 05:54:58 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-11-08 03:46:56 +00:00
|
|
|
if (!/^Win\d+/.test(navigator.platform)) {
|
2017-03-25 20:39:21 +00:00
|
|
|
document.documentElement.classList.add('non-windows');
|
|
|
|
}
|
|
|
|
|
2017-04-08 10:19:44 +00:00
|
|
|
// polyfill for old browsers to enable [...results] and for-of
|
|
|
|
for (const type of [NodeList, NamedNodeMap, HTMLCollection, HTMLAllCollection]) {
|
|
|
|
if (!type.prototype[Symbol.iterator]) {
|
|
|
|
type.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-02 16:54:54 +00:00
|
|
|
$.remove = (selector, base = document) => {
|
2017-12-02 18:41:28 +00:00
|
|
|
const el = selector && typeof selector === 'string' ? $(selector, base) : selector;
|
2017-12-02 16:54:54 +00:00
|
|
|
if (el) {
|
|
|
|
el.remove();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$$.remove = (selector, base = document) => {
|
|
|
|
for (const el of base.querySelectorAll(selector)) {
|
|
|
|
el.remove();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-18 07:15:51 +00:00
|
|
|
{
|
|
|
|
// display a full text tooltip on buttons with ellipsis overflow and no inherent title
|
|
|
|
const addTooltipsToEllipsized = () => {
|
2017-08-23 12:37:35 +00:00
|
|
|
for (const btn of document.getElementsByTagName('button')) {
|
2017-08-18 07:15:51 +00:00
|
|
|
if (btn.title && !btn.titleIsForEllipsis ||
|
|
|
|
btn.clientWidth === btn.preresizeClientWidth) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
btn.preresizeClientWidth = btn.clientWidth;
|
|
|
|
const padding = btn.offsetWidth - btn.clientWidth;
|
|
|
|
const displayedWidth = btn.getBoundingClientRect().width - padding;
|
|
|
|
if (btn.scrollWidth > displayedWidth) {
|
|
|
|
btn.title = btn.textContent;
|
|
|
|
btn.titleIsForEllipsis = true;
|
|
|
|
} else if (btn.title) {
|
|
|
|
btn.title = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// enqueue after DOMContentLoaded/load events
|
|
|
|
setTimeout(addTooltipsToEllipsized);
|
|
|
|
// throttle on continuous resizing
|
2017-09-14 01:15:58 +00:00
|
|
|
let timer;
|
|
|
|
window.addEventListener('resize', () => {
|
|
|
|
clearTimeout(timer);
|
|
|
|
timer = setTimeout(addTooltipsToEllipsized, 100);
|
|
|
|
});
|
2017-08-18 07:15:51 +00:00
|
|
|
}
|
|
|
|
|
2017-09-13 15:35:34 +00:00
|
|
|
onDOMready().then(() => {
|
2017-12-02 16:54:54 +00:00
|
|
|
$.remove('#firefox-transitions-bug-suppressor');
|
2017-09-13 15:35:34 +00:00
|
|
|
});
|
2017-09-03 20:52:06 +00:00
|
|
|
|
2017-11-25 13:24:07 +00:00
|
|
|
if (!chrome.app && chrome.windows) {
|
2017-09-03 20:52:06 +00:00
|
|
|
// die if unable to access BG directly
|
2017-09-02 15:36:32 +00:00
|
|
|
chrome.windows.getCurrent(wnd => {
|
|
|
|
if (!BG && wnd.incognito) {
|
|
|
|
// private windows can't get bg page
|
|
|
|
location.href = '/msgbox/dysfunctional.html';
|
|
|
|
throw 0;
|
|
|
|
}
|
|
|
|
});
|
2017-09-03 20:52:06 +00:00
|
|
|
// add favicon in Firefox
|
2017-09-02 15:36:32 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
if (!window.prefs) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const iconset = ['', 'light/'][prefs.get('iconset')] || '';
|
|
|
|
for (const size of [38, 32, 19, 16]) {
|
2017-12-03 21:12:09 +00:00
|
|
|
document.head.appendChild($create('link', {
|
2017-09-02 15:36:32 +00:00
|
|
|
rel: 'icon',
|
|
|
|
href: `/images/icon/${iconset}${size}.png`,
|
|
|
|
sizes: size + 'x' + size,
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
});
|
2017-08-27 09:56:54 +00:00
|
|
|
// set hyphenation language
|
|
|
|
document.documentElement.setAttribute('lang', chrome.i18n.getUILanguage());
|
2017-09-02 15:36:32 +00:00
|
|
|
}
|
2017-05-16 22:09:31 +00:00
|
|
|
|
2017-03-25 20:39:21 +00:00
|
|
|
|
2017-03-25 05:54:58 +00:00
|
|
|
function onDOMready() {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (document.readyState !== 'loading') {
|
2017-03-25 05:54:58 +00:00
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
return new Promise(resolve => {
|
|
|
|
document.addEventListener('DOMContentLoaded', function _() {
|
|
|
|
document.removeEventListener('DOMContentLoaded', _);
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-29 22:13:13 +00:00
|
|
|
function scrollElementIntoView(element, {invalidMarginRatio = 0} = {}) {
|
2017-03-25 05:54:58 +00:00
|
|
|
// align to the top/bottom of the visible area if wasn't visible
|
2017-11-29 21:54:40 +00:00
|
|
|
const {top, height} = element.getBoundingClientRect();
|
|
|
|
const {top: parentTop, bottom: parentBottom} = element.parentNode.getBoundingClientRect();
|
2017-11-29 02:39:24 +00:00
|
|
|
const windowHeight = window.innerHeight;
|
2017-11-29 21:54:40 +00:00
|
|
|
if (top < Math.max(parentTop, windowHeight * invalidMarginRatio) ||
|
|
|
|
top > Math.min(parentBottom, windowHeight) - height - windowHeight * invalidMarginRatio) {
|
|
|
|
window.scrollBy(0, top - windowHeight / 2 + height);
|
2017-03-25 05:54:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-06-27 20:00:24 +00:00
|
|
|
function animateElement(
|
|
|
|
element, {
|
|
|
|
className = 'highlight',
|
|
|
|
removeExtraClasses = [],
|
2017-08-31 10:23:12 +00:00
|
|
|
onComplete,
|
2017-06-27 20:00:24 +00:00
|
|
|
} = {}) {
|
|
|
|
return element && new Promise(resolve => {
|
2017-03-25 05:54:58 +00:00
|
|
|
element.addEventListener('animationend', function _() {
|
|
|
|
element.removeEventListener('animationend', _);
|
2017-05-14 11:26:51 +00:00
|
|
|
element.classList.remove(
|
|
|
|
className,
|
2017-06-30 12:02:09 +00:00
|
|
|
// In Firefox, `resolve()` might be called one frame later.
|
|
|
|
// This is helpful to clean-up on the same frame
|
|
|
|
...removeExtraClasses
|
2017-05-14 11:26:51 +00:00
|
|
|
);
|
2017-08-31 10:23:12 +00:00
|
|
|
// TODO: investigate why animation restarts for 'display' modification in .then()
|
|
|
|
if (typeof onComplete === 'function') {
|
|
|
|
onComplete.call(element);
|
2017-03-25 05:54:58 +00:00
|
|
|
}
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
element.classList.add(className);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-11 10:51:40 +00:00
|
|
|
function enforceInputRange(element) {
|
|
|
|
const min = Number(element.min);
|
|
|
|
const max = Number(element.max);
|
2017-04-13 06:12:40 +00:00
|
|
|
const doNotify = () => element.dispatchEvent(new Event('change', {bubbles: true}));
|
|
|
|
const onChange = ({type}) => {
|
2017-07-16 18:02:00 +00:00
|
|
|
if (type === 'input' && element.checkValidity()) {
|
2017-04-13 06:12:40 +00:00
|
|
|
doNotify();
|
2017-07-16 18:02:00 +00:00
|
|
|
} else if (type === 'change' && !element.checkValidity()) {
|
2017-04-13 06:12:40 +00:00
|
|
|
element.value = Math.max(min, Math.min(max, Number(element.value)));
|
|
|
|
doNotify();
|
2017-04-11 10:51:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
element.addEventListener('change', onChange);
|
|
|
|
element.addEventListener('input', onChange);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-25 05:54:58 +00:00
|
|
|
function $(selector, base = document) {
|
2017-04-26 00:05:41 +00:00
|
|
|
// we have ids with . like #manage.onlyEnabled which looks like #id.class
|
2017-03-25 05:54:58 +00:00
|
|
|
// so since getElementById is superfast we'll try it anyway
|
|
|
|
const byId = selector.startsWith('#') && document.getElementById(selector.slice(1));
|
|
|
|
return byId || base.querySelector(selector);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function $$(selector, base = document) {
|
|
|
|
return [...base.querySelectorAll(selector)];
|
|
|
|
}
|
2017-04-17 20:25:32 +00:00
|
|
|
|
|
|
|
|
2017-12-03 21:12:09 +00:00
|
|
|
function $create(selector = 'div', properties, children) {
|
|
|
|
/*
|
|
|
|
$create('tag#id.class.class', ?[children])
|
|
|
|
$create('tag#id.class.class', ?textContentOrChildNode)
|
|
|
|
$create('tag#id.class.class', {properties}, ?[children])
|
|
|
|
$create('tag#id.class.class', {properties}, ?textContentOrChildNode)
|
|
|
|
tag is 'div' by default, #id and .class are optional
|
|
|
|
|
|
|
|
$create([children])
|
|
|
|
|
|
|
|
$create({propertiesAndOptions})
|
|
|
|
$create({propertiesAndOptions}, ?[children])
|
|
|
|
tag: string, default 'div'
|
|
|
|
appendChild: element/string or an array of elements/strings
|
|
|
|
dataset: object
|
|
|
|
any DOM property: assigned as is
|
|
|
|
|
|
|
|
tag may include namespace like 'ns:tag'
|
|
|
|
*/
|
|
|
|
let ns, tag, opt;
|
|
|
|
|
|
|
|
if (typeof selector === 'string') {
|
|
|
|
if (Array.isArray(properties) ||
|
|
|
|
properties instanceof Node ||
|
|
|
|
typeof properties !== 'object') {
|
|
|
|
opt = {};
|
|
|
|
children = properties;
|
|
|
|
} else {
|
|
|
|
opt = properties || {};
|
|
|
|
}
|
|
|
|
const idStart = (selector.indexOf('#') + 1 || selector.length + 1) - 1;
|
|
|
|
const classStart = (selector.indexOf('.') + 1 || selector.length + 1) - 1;
|
|
|
|
const id = selector.slice(idStart + 1, classStart);
|
|
|
|
if (id) {
|
|
|
|
opt.id = id;
|
|
|
|
}
|
|
|
|
const cls = selector.slice(classStart + 1);
|
|
|
|
if (cls) {
|
|
|
|
opt[selector.includes(':') ? 'class' : 'className'] =
|
|
|
|
cls.includes('.') ? cls.replace(/\./g, ' ') : cls;
|
|
|
|
}
|
|
|
|
tag = selector.slice(0, Math.min(idStart, classStart));
|
|
|
|
|
|
|
|
} else if (Array.isArray(selector)) {
|
|
|
|
tag = 'div';
|
|
|
|
opt = {};
|
|
|
|
children = selector;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
opt = selector;
|
|
|
|
tag = opt.tag;
|
|
|
|
delete opt.tag;
|
|
|
|
children = opt.appendChild || properties;
|
|
|
|
delete opt.appendChild;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tag && tag.includes(':')) {
|
|
|
|
([ns, tag] = tag.split(':'));
|
|
|
|
}
|
|
|
|
|
2017-04-24 11:07:35 +00:00
|
|
|
const element = ns
|
2017-07-16 18:02:00 +00:00
|
|
|
? document.createElementNS(ns === 'SVG' || ns === 'svg' ? 'http://www.w3.org/2000/svg' : ns, tag)
|
2017-04-24 11:07:35 +00:00
|
|
|
: document.createElement(tag || 'div');
|
2017-12-03 21:12:09 +00:00
|
|
|
|
|
|
|
for (const child of Array.isArray(children) ? children : [children]) {
|
2017-07-19 12:09:29 +00:00
|
|
|
if (child) {
|
|
|
|
element.appendChild(child instanceof Node ? child : document.createTextNode(child));
|
|
|
|
}
|
|
|
|
}
|
2017-12-03 21:12:09 +00:00
|
|
|
|
2017-04-17 20:25:32 +00:00
|
|
|
if (opt.dataset) {
|
|
|
|
Object.assign(element.dataset, opt.dataset);
|
|
|
|
delete opt.dataset;
|
|
|
|
}
|
2017-12-03 21:12:09 +00:00
|
|
|
|
2017-08-31 19:25:05 +00:00
|
|
|
if (opt.attributes) {
|
|
|
|
for (const attr in opt.attributes) {
|
|
|
|
element.setAttribute(attr, opt.attributes[attr]);
|
|
|
|
}
|
|
|
|
delete opt.attributes;
|
|
|
|
}
|
2017-12-03 21:12:09 +00:00
|
|
|
|
2017-04-24 11:07:35 +00:00
|
|
|
if (ns) {
|
|
|
|
for (const attr in opt) {
|
|
|
|
element.setAttributeNS(null, attr, opt[attr]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Object.assign(element, opt);
|
|
|
|
}
|
2017-12-03 21:12:09 +00:00
|
|
|
|
2017-04-24 11:07:35 +00:00
|
|
|
return element;
|
2017-04-17 20:25:32 +00:00
|
|
|
}
|
2017-09-13 09:34:27 +00:00
|
|
|
|
|
|
|
|
2017-12-03 21:12:09 +00:00
|
|
|
function $createLink(href = '', content) {
|
2017-10-14 18:59:55 +00:00
|
|
|
const opt = {
|
2017-09-13 09:34:27 +00:00
|
|
|
tag: 'a',
|
|
|
|
target: '_blank',
|
2017-10-14 18:59:55 +00:00
|
|
|
rel: 'noopener'
|
|
|
|
};
|
|
|
|
if (typeof href === 'object') {
|
|
|
|
Object.assign(opt, href);
|
|
|
|
} else {
|
|
|
|
opt.href = href;
|
|
|
|
}
|
2017-12-03 21:12:09 +00:00
|
|
|
opt.appendChild = opt.appendChild || content;
|
|
|
|
return $create(opt);
|
2017-09-13 09:34:27 +00:00
|
|
|
}
|
2017-11-29 16:05:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
function initCollapsibles({bindClickOn = 'h2'} = {}) {
|
|
|
|
const prefMap = {};
|
|
|
|
const elements = $$('details[data-pref]');
|
|
|
|
|
|
|
|
for (const el of elements) {
|
|
|
|
const key = el.dataset.pref;
|
|
|
|
prefMap[key] = el;
|
|
|
|
el.open = prefs.get(key);
|
|
|
|
(bindClickOn && $(bindClickOn, el) || el).addEventListener('click', onClick);
|
|
|
|
}
|
|
|
|
|
|
|
|
prefs.subscribe(Object.keys(prefMap), (key, value) => {
|
|
|
|
const el = prefMap[key];
|
|
|
|
if (el.open !== value) {
|
|
|
|
el.open = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function onClick(event) {
|
|
|
|
if (event.target.closest('.intercepts-click')) {
|
|
|
|
event.preventDefault();
|
|
|
|
} else {
|
|
|
|
setTimeout(saveState, 0, event.target.closest('details'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveState(el) {
|
|
|
|
prefs.set(el.dataset.pref, el.open);
|
|
|
|
}
|
|
|
|
}
|