2017-03-28 10:05:58 +00:00
|
|
|
/* global update */
|
2017-02-14 15:35:53 +00:00
|
|
|
'use strict';
|
|
|
|
|
2017-03-25 06:30:34 +00:00
|
|
|
|
2017-04-04 17:21:03 +00:00
|
|
|
setupLivePrefs([
|
|
|
|
'show-badge',
|
|
|
|
'popup.stylesFirst',
|
|
|
|
'badgeNormal',
|
|
|
|
'badgeDisabled',
|
|
|
|
'popupWidth',
|
|
|
|
'updateInterval',
|
|
|
|
]);
|
2017-04-05 13:14:59 +00:00
|
|
|
enforceInputRange($('#popupWidth'));
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-03-25 06:30:34 +00:00
|
|
|
// overwrite the default URL if browser is Opera
|
2017-04-09 06:43:51 +00:00
|
|
|
$('[data-cmd="open-keyboard"]').href = URLS.configureCommands;
|
2017-02-14 15:35:53 +00:00
|
|
|
|
|
|
|
// actions
|
2017-03-25 06:30:34 +00:00
|
|
|
document.onclick = e => {
|
2017-03-26 02:30:59 +00:00
|
|
|
const cmd = e.target.dataset.cmd;
|
|
|
|
let total = 0;
|
|
|
|
let updated = 0;
|
2017-02-14 15:35:53 +00:00
|
|
|
|
2017-03-28 10:05:58 +00:00
|
|
|
function showProgress() {
|
|
|
|
$('#update-counter').textContent = `${updated} / ${total}`;
|
2017-02-14 15:35:53 +00:00
|
|
|
}
|
2017-03-26 02:30:59 +00:00
|
|
|
|
|
|
|
function done(target) {
|
2017-02-14 15:35:53 +00:00
|
|
|
target.disabled = false;
|
|
|
|
window.setTimeout(() => {
|
2017-03-25 06:30:34 +00:00
|
|
|
$('#update-counter').textContent = '';
|
2017-02-14 15:35:53 +00:00
|
|
|
}, 750);
|
|
|
|
}
|
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
function check() {
|
2017-03-28 10:05:58 +00:00
|
|
|
chrome.extension.getBackgroundPage().update.perform((cmd, value) => {
|
|
|
|
switch (cmd) {
|
|
|
|
case 'count':
|
|
|
|
total = value;
|
|
|
|
if (!total) {
|
|
|
|
done(e.target);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'single-updated':
|
|
|
|
case 'single-skipped':
|
|
|
|
updated++;
|
|
|
|
if (total && updated === total) {
|
|
|
|
done(e.target);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
showProgress();
|
2017-02-14 15:35:53 +00:00
|
|
|
});
|
|
|
|
// notify the automatic updater to reset the next automatic update accordingly
|
|
|
|
chrome.runtime.sendMessage({
|
|
|
|
method: 'resetInterval'
|
|
|
|
});
|
2017-03-26 02:30:59 +00:00
|
|
|
}
|
2017-03-25 06:30:34 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
switch (cmd) {
|
|
|
|
case 'open-manage':
|
|
|
|
openURL({url: '/manage.html'});
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'check-updates':
|
|
|
|
e.target.disabled = true;
|
|
|
|
check();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'open-keyboard':
|
2017-04-09 06:43:51 +00:00
|
|
|
openURL({url: e.target.href});
|
|
|
|
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-02-15 05:48:47 +00:00
|
|
|
}
|
2017-03-25 06:30:34 +00:00
|
|
|
};
|