2018-10-06 05:27:58 +00:00
|
|
|
/* global messageBox msg */
|
2017-02-14 15:35:53 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-04-21 16:39:34 +00:00
|
|
|
setupLivePrefs();
|
2017-06-28 10:49:04 +00:00
|
|
|
setupRadioButtons();
|
2017-04-05 13:14:59 +00:00
|
|
|
enforceInputRange($('#popupWidth'));
|
2017-12-12 00:27:28 +00:00
|
|
|
setTimeout(splitLongTooltips);
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2018-05-09 17:52:45 +00:00
|
|
|
// collapse #advanced block in Chrome pre-66 (classic chrome://extensions UI)
|
|
|
|
if (!FIREFOX && !OPERA && CHROME < 3343) {
|
2017-09-09 14:21:17 +00:00
|
|
|
const block = $('#advanced');
|
2018-03-29 03:27:37 +00:00
|
|
|
$('h1', block).onclick = event => {
|
|
|
|
event.preventDefault();
|
|
|
|
block.classList.toggle('collapsed');
|
|
|
|
const isCollapsed = block.classList.contains('collapsed');
|
|
|
|
const visibleToggle = $(isCollapsed ? '.is-collapsed' : '.is-expanded', block);
|
|
|
|
visibleToggle.focus();
|
2017-09-09 14:21:17 +00:00
|
|
|
};
|
2017-12-09 15:25:44 +00:00
|
|
|
block.classList.add('collapsible', 'collapsed');
|
2017-09-09 14:21:17 +00:00
|
|
|
}
|
|
|
|
|
2018-04-12 18:02:34 +00:00
|
|
|
if (FIREFOX && 'update' in (chrome.commands || {})) {
|
|
|
|
$('[data-cmd="open-keyboard"]').classList.remove('chromium-only');
|
2018-10-06 05:02:45 +00:00
|
|
|
msg.onExtension(msg => {
|
2018-04-12 18:02:34 +00:00
|
|
|
if (msg.method === 'optionsCustomizeHotkeys') {
|
|
|
|
customizeHotkeys();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-02-14 15:35:53 +00:00
|
|
|
// actions
|
2017-03-25 06:30:34 +00:00
|
|
|
document.onclick = e => {
|
2017-04-14 15:30:09 +00:00
|
|
|
const target = e.target.closest('[data-cmd]');
|
|
|
|
if (!target) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// prevent double-triggering in case a sub-element was clicked
|
|
|
|
e.stopPropagation();
|
2017-02-14 15:35:53 +00:00
|
|
|
|
2017-04-14 15:30:09 +00:00
|
|
|
switch (target.dataset.cmd) {
|
2017-03-26 02:30:59 +00:00
|
|
|
case 'open-manage':
|
2017-07-12 18:52:44 +00:00
|
|
|
openURL({url: 'manage.html'});
|
2017-03-26 02:30:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'check-updates':
|
2017-04-20 18:27:10 +00:00
|
|
|
checkUpdates();
|
2017-03-26 02:30:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'open-keyboard':
|
2018-04-12 18:02:34 +00:00
|
|
|
if (FIREFOX) {
|
|
|
|
customizeHotkeys();
|
|
|
|
} else {
|
|
|
|
openURL({url: URLS.configureCommands});
|
|
|
|
}
|
2017-04-09 06:43:51 +00:00
|
|
|
e.preventDefault();
|
2017-03-26 02:30:59 +00:00
|
|
|
break;
|
2017-03-25 06:30:34 +00:00
|
|
|
|
2017-04-04 17:21:03 +00:00
|
|
|
case 'reset':
|
|
|
|
$$('input')
|
|
|
|
.filter(input => input.id in prefs.readOnlyValues)
|
|
|
|
.forEach(input => prefs.reset(input.id));
|
|
|
|
break;
|
2017-12-12 00:27:28 +00:00
|
|
|
|
|
|
|
case 'note': {
|
2018-01-24 20:16:24 +00:00
|
|
|
e.preventDefault();
|
|
|
|
messageBox({
|
|
|
|
className: 'note',
|
|
|
|
contents: target.title,
|
|
|
|
buttons: [t('confirmClose')],
|
|
|
|
});
|
2017-12-12 00:27:28 +00:00
|
|
|
}
|
2017-02-15 05:48:47 +00:00
|
|
|
}
|
2017-03-25 06:30:34 +00:00
|
|
|
};
|
2017-04-20 18:27:10 +00:00
|
|
|
|
|
|
|
function checkUpdates() {
|
|
|
|
let total = 0;
|
|
|
|
let checked = 0;
|
|
|
|
let updated = 0;
|
2017-04-24 13:29:48 +00:00
|
|
|
const maxWidth = $('#update-progress').parentElement.clientWidth;
|
|
|
|
|
2018-01-01 17:02:49 +00:00
|
|
|
chrome.runtime.onConnect.addListener(function onConnect(port) {
|
|
|
|
if (port.name !== 'updater') return;
|
|
|
|
port.onMessage.addListener(observer);
|
|
|
|
chrome.runtime.onConnect.removeListener(onConnect);
|
|
|
|
});
|
|
|
|
|
|
|
|
API.updateCheckAll({observe: true});
|
|
|
|
|
|
|
|
function observer(info) {
|
|
|
|
if ('count' in info) {
|
|
|
|
total = info.count;
|
|
|
|
document.body.classList.add('update-in-progress');
|
|
|
|
} else if (info.updated) {
|
|
|
|
updated++;
|
|
|
|
checked++;
|
|
|
|
} else if (info.error) {
|
|
|
|
checked++;
|
|
|
|
} else if (info.done) {
|
|
|
|
document.body.classList.remove('update-in-progress');
|
2017-04-20 18:27:10 +00:00
|
|
|
}
|
2017-04-24 13:29:48 +00:00
|
|
|
$('#update-progress').style.width = Math.round(checked / total * maxWidth) + 'px';
|
|
|
|
$('#updates-installed').dataset.value = updated || '';
|
|
|
|
}
|
2017-04-20 18:27:10 +00:00
|
|
|
}
|
2017-06-28 10:49:04 +00:00
|
|
|
|
|
|
|
function setupRadioButtons() {
|
|
|
|
const sets = {};
|
2017-07-16 16:49:31 +00:00
|
|
|
const onChange = function () {
|
2017-06-28 10:49:04 +00:00
|
|
|
const newValue = sets[this.name].indexOf(this);
|
2017-07-16 18:02:00 +00:00
|
|
|
if (newValue >= 0 && prefs.get(this.name) !== newValue) {
|
2017-06-28 10:49:04 +00:00
|
|
|
prefs.set(this.name, newValue);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// group all radio-inputs by name="prefName" attribute
|
|
|
|
for (const el of $$('input[type="radio"][name]')) {
|
|
|
|
(sets[el.name] = sets[el.name] || []).push(el);
|
|
|
|
el.addEventListener('change', onChange);
|
|
|
|
}
|
|
|
|
// select the input corresponding to the actual pref value
|
|
|
|
for (const name in sets) {
|
|
|
|
sets[name][prefs.get(name)].checked = true;
|
|
|
|
}
|
|
|
|
// listen to pref changes and update the values
|
2017-09-03 17:06:20 +00:00
|
|
|
prefs.subscribe(Object.keys(sets), (key, value) => {
|
2017-06-28 10:49:04 +00:00
|
|
|
sets[key][value].checked = true;
|
2017-09-03 17:06:20 +00:00
|
|
|
});
|
2017-06-28 10:49:04 +00:00
|
|
|
}
|
2017-12-12 00:27:28 +00:00
|
|
|
|
|
|
|
function splitLongTooltips() {
|
|
|
|
for (const el of $$('[title]')) {
|
|
|
|
if (el.title.length < 50) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const newTitle = el.title
|
|
|
|
.split('\n')
|
|
|
|
.map(s => s.replace(/([^.][.。?!]|.{50,60},)\s+/g, '$1\n'))
|
|
|
|
.map(s => s.replace(/(.{50,80}(?=.{40,}))\s+/g, '$1\n'))
|
|
|
|
.join('\n');
|
|
|
|
if (newTitle !== el.title) {
|
|
|
|
el.title = newTitle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-12 18:02:34 +00:00
|
|
|
|
|
|
|
function customizeHotkeys() {
|
|
|
|
// command name -> i18n id
|
|
|
|
const hotkeys = new Map([
|
|
|
|
['_execute_browser_action', 'optionsCustomizePopup'],
|
|
|
|
['openManage', 'openManage'],
|
|
|
|
['styleDisableAll', 'disableAllStyles'],
|
|
|
|
]);
|
|
|
|
|
|
|
|
messageBox({
|
|
|
|
title: t('shortcutsNote'),
|
|
|
|
contents: [
|
|
|
|
$create('table',
|
|
|
|
[...hotkeys.entries()].map(([cmd, i18n]) =>
|
|
|
|
$create('tr', [
|
|
|
|
$create('td', t(i18n)),
|
|
|
|
$create('td',
|
|
|
|
$create('input', {
|
|
|
|
id: 'hotkey.' + cmd,
|
2018-04-13 11:30:36 +00:00
|
|
|
type: 'search',
|
2018-04-12 18:02:34 +00:00
|
|
|
//placeholder: t('helpKeyMapHotkey'),
|
|
|
|
})),
|
|
|
|
]))),
|
|
|
|
],
|
|
|
|
className: 'center',
|
|
|
|
buttons: [t('confirmClose')],
|
|
|
|
onshow(box) {
|
|
|
|
const ids = [];
|
|
|
|
for (const cmd of hotkeys.keys()) {
|
|
|
|
const id = 'hotkey.' + cmd;
|
|
|
|
ids.push(id);
|
|
|
|
$('#' + id).oninput = onInput;
|
|
|
|
}
|
|
|
|
setupLivePrefs(ids);
|
|
|
|
$('button', box).insertAdjacentElement('beforebegin',
|
|
|
|
$createLink(
|
|
|
|
'https://developer.mozilla.org/Add-ons/WebExtensions/manifest.json/commands#Key_combinations',
|
|
|
|
t('helpAlt')));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
function onInput() {
|
2018-04-13 11:30:36 +00:00
|
|
|
const name = this.id.split('.')[1];
|
|
|
|
const shortcut = this.value.trim();
|
|
|
|
if (!shortcut) {
|
|
|
|
browser.commands.reset(name).catch(ignoreChromeError);
|
2018-04-12 18:02:34 +00:00
|
|
|
this.setCustomValidity('');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
2018-04-13 11:30:36 +00:00
|
|
|
browser.commands.update({name, shortcut}).then(
|
2018-04-12 18:02:34 +00:00
|
|
|
() => this.setCustomValidity(''),
|
|
|
|
err => this.setCustomValidity(err)
|
|
|
|
);
|
|
|
|
} catch (err) {
|
|
|
|
this.setCustomValidity(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|