2017-03-26 02:30:59 +00:00
|
|
|
/* global messageBox */
|
|
|
|
'use strict';
|
2015-01-30 17:31:20 +00:00
|
|
|
|
2017-04-08 11:03:54 +00:00
|
|
|
let installed;
|
2017-04-16 11:24:49 +00:00
|
|
|
const filtersSelector = {
|
|
|
|
hide: '',
|
|
|
|
unhide: '',
|
|
|
|
};
|
2017-04-08 11:03:54 +00:00
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
const newUI = {
|
|
|
|
enabled: prefs.get('manage.newUI'),
|
|
|
|
favicons: prefs.get('manage.newUI.favicons'),
|
|
|
|
targets: prefs.get('manage.newUI.targets'),
|
2017-04-08 11:03:54 +00:00
|
|
|
renderClass() {
|
|
|
|
document.documentElement.classList.toggle('newUI', newUI.enabled);
|
|
|
|
},
|
2017-04-05 13:14:59 +00:00
|
|
|
};
|
2017-04-08 11:03:54 +00:00
|
|
|
newUI.renderClass();
|
2017-04-05 13:14:59 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
const TARGET_TYPES = ['domains', 'urls', 'urlPrefixes', 'regexps'];
|
2017-04-13 08:03:45 +00:00
|
|
|
const GET_FAVICON_URL = 'https://www.google.com/s2/favicons?domain=';
|
2017-04-09 06:43:51 +00:00
|
|
|
const OWN_ICON = chrome.runtime.getManifest().icons['16'];
|
2017-04-05 13:14:59 +00:00
|
|
|
|
2017-04-03 04:13:10 +00:00
|
|
|
const handleEvent = {};
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-08 11:03:54 +00:00
|
|
|
Promise.all([
|
|
|
|
getStylesSafe(),
|
|
|
|
onDOMready().then(initGlobalEvents),
|
|
|
|
]).then(([styles]) => {
|
|
|
|
showStyles(styles);
|
|
|
|
});
|
2017-03-21 01:32:38 +00:00
|
|
|
|
|
|
|
|
2017-04-11 10:51:40 +00:00
|
|
|
chrome.runtime.onMessage.addListener(onRuntimeMessage);
|
|
|
|
|
|
|
|
function onRuntimeMessage(msg) {
|
2017-03-21 01:32:38 +00:00
|
|
|
switch (msg.method) {
|
|
|
|
case 'styleUpdated':
|
|
|
|
case 'styleAdded':
|
|
|
|
handleUpdate(msg.style, msg);
|
|
|
|
break;
|
|
|
|
case 'styleDeleted':
|
|
|
|
handleDelete(msg.id);
|
|
|
|
break;
|
|
|
|
}
|
2017-04-11 10:51:40 +00:00
|
|
|
}
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2015-01-30 17:31:20 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
function initGlobalEvents() {
|
2017-04-08 11:03:54 +00:00
|
|
|
installed = $('#installed');
|
2017-04-05 13:14:59 +00:00
|
|
|
installed.onclick = handleEvent.entryClicked;
|
2017-03-21 01:32:38 +00:00
|
|
|
$('#check-all-updates').onclick = checkUpdateAll;
|
|
|
|
$('#apply-all-updates').onclick = applyUpdateAll;
|
|
|
|
$('#search').oninput = searchStyles;
|
2017-03-24 02:51:44 +00:00
|
|
|
$('#manage-options-button').onclick = () => chrome.runtime.openOptionsPage();
|
2017-04-09 06:43:51 +00:00
|
|
|
$('#manage-shortcuts-button').onclick = () => openURL({url: URLS.configureCommands});
|
2017-04-03 04:13:10 +00:00
|
|
|
$$('#header a[href^="http"]').forEach(a => (a.onclick = handleEvent.external));
|
2017-03-21 01:32:38 +00:00
|
|
|
|
|
|
|
// focus search field on / key
|
|
|
|
document.onkeypress = event => {
|
|
|
|
if (event.keyCode == 47
|
|
|
|
&& !event.altKey && !event.shiftKey && !event.ctrlKey && !event.metaKey
|
|
|
|
&& !event.target.matches('[type="text"], [type="search"]')) {
|
|
|
|
event.preventDefault();
|
|
|
|
$('#search').focus();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// remember scroll position on normal history navigation
|
2017-04-10 07:35:15 +00:00
|
|
|
window.onbeforeunload = rememberScrollPosition;
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-13 08:03:45 +00:00
|
|
|
$$('[data-toggle-on-click]').forEach(el => {
|
|
|
|
el.onclick = () => $(el.dataset.toggleOnClick).classList.toggle('hidden');
|
|
|
|
});
|
|
|
|
|
2017-04-13 07:54:56 +00:00
|
|
|
enforceInputRange($('#manage.newUI.targets'));
|
2017-04-05 13:14:59 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
setupLivePrefs([
|
|
|
|
'manage.onlyEnabled',
|
|
|
|
'manage.onlyEdited',
|
2017-04-05 13:14:59 +00:00
|
|
|
'manage.newUI',
|
|
|
|
'manage.newUI.favicons',
|
|
|
|
'manage.newUI.targets',
|
2017-03-21 01:32:38 +00:00
|
|
|
]);
|
|
|
|
|
2017-04-16 11:24:49 +00:00
|
|
|
$$('[data-filter]').forEach(el => {
|
|
|
|
el.onchange = handleEvent.filterOnChange;
|
|
|
|
});
|
|
|
|
handleEvent.filterOnChange({forceRefilter: true});
|
|
|
|
|
2017-04-13 08:03:45 +00:00
|
|
|
$$('[id^="manage.newUI"]')
|
|
|
|
.forEach(el => (el.oninput = (el.onchange = switchUI)));
|
2017-04-05 13:14:59 +00:00
|
|
|
|
|
|
|
switchUI({styleOnly: true});
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
|
|
|
function showStyles(styles = []) {
|
|
|
|
const sorted = styles
|
|
|
|
.map(style => ({name: style.name.toLocaleLowerCase(), style}))
|
2017-03-26 02:30:59 +00:00
|
|
|
.sort((a, b) => (a.name < b.name ? -1 : a.name == b.name ? 0 : 1));
|
2017-04-03 04:24:50 +00:00
|
|
|
const shouldRenderAll = (history.state || {}).scrollY > window.innerHeight;
|
2017-03-21 01:32:38 +00:00
|
|
|
const renderBin = document.createDocumentFragment();
|
|
|
|
renderStyles(0);
|
2017-04-10 08:26:30 +00:00
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
function renderStyles(index) {
|
|
|
|
const t0 = performance.now();
|
2017-03-26 02:30:59 +00:00
|
|
|
while (index < sorted.length) {
|
2017-03-26 08:43:45 +00:00
|
|
|
renderBin.appendChild(createStyleElement(sorted[index++]));
|
2017-03-26 02:30:59 +00:00
|
|
|
if (!shouldRenderAll && performance.now() - t0 > 10) {
|
|
|
|
break;
|
|
|
|
}
|
2017-03-25 02:35:54 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
filterAndAppend({container: renderBin});
|
2017-03-21 01:32:38 +00:00
|
|
|
if (index < sorted.length) {
|
|
|
|
setTimeout(renderStyles, 0, index);
|
2017-04-03 04:13:10 +00:00
|
|
|
} else if (shouldRenderAll && 'scrollY' in (history.state || {})) {
|
2017-03-21 01:32:38 +00:00
|
|
|
setTimeout(() => scrollTo(0, history.state.scrollY));
|
|
|
|
}
|
2017-04-10 08:26:30 +00:00
|
|
|
if (newUI.enabled && newUI.favicons) {
|
|
|
|
debounce(handleEvent.loadFavicons, 16);
|
|
|
|
}
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-03-26 08:43:45 +00:00
|
|
|
function createStyleElement({style, name}) {
|
2017-04-10 08:26:30 +00:00
|
|
|
// query the sub-elements just once, then reuse the references
|
|
|
|
if ((createStyleElement.parts || {}).newUI !== newUI.enabled) {
|
|
|
|
const entry = template[`style${newUI.enabled ? 'Compact' : ''}`].cloneNode(true);
|
|
|
|
createStyleElement.parts = {
|
|
|
|
newUI: newUI.enabled,
|
|
|
|
entry,
|
|
|
|
entryClassBase: entry.className,
|
2017-04-14 18:30:55 +00:00
|
|
|
checker: $('.checker', entry) || {},
|
2017-04-10 08:26:30 +00:00
|
|
|
nameLink: $('.style-name-link', entry),
|
|
|
|
editLink: $('.style-edit-link', entry) || {},
|
|
|
|
editHrefBase: $('.style-name-link, .style-edit-link', entry).getAttribute('href'),
|
|
|
|
homepage: $('.homepage', entry),
|
|
|
|
appliesTo: $('.applies-to', entry),
|
|
|
|
targets: $('.targets', entry),
|
|
|
|
expander: $('.expander', entry),
|
|
|
|
decorations: {
|
|
|
|
urlPrefixesAfter: '*',
|
|
|
|
regexpsBefore: '/',
|
|
|
|
regexpsAfter: '/',
|
|
|
|
},
|
|
|
|
};
|
2017-03-25 02:35:54 +00:00
|
|
|
}
|
2017-04-10 08:26:30 +00:00
|
|
|
const parts = createStyleElement.parts;
|
2017-04-14 18:30:55 +00:00
|
|
|
parts.checker.checked = style.enabled;
|
2017-04-10 08:26:30 +00:00
|
|
|
parts.nameLink.textContent = style.name;
|
|
|
|
parts.nameLink.href = parts.editLink.href = parts.editHrefBase + style.id;
|
|
|
|
parts.homepage.href = parts.homepage.title = style.url || '';
|
|
|
|
|
2017-04-14 18:30:55 +00:00
|
|
|
const entry = parts.entry.cloneNode(true);
|
|
|
|
entry.id = 'style-' + style.id;
|
|
|
|
entry.styleId = style.id;
|
|
|
|
entry.styleNameLowerCase = name || style.name.toLocaleLowerCase();
|
|
|
|
entry.className = parts.entryClassBase + ' ' +
|
|
|
|
(style.enabled ? 'enabled' : 'disabled') +
|
|
|
|
(style.updateUrl ? ' updatable' : '');
|
|
|
|
|
|
|
|
// name being supplied signifies we're invoked by showStyles()
|
|
|
|
// which debounces its main loop thus loading the postponed favicons
|
|
|
|
createStyleTargetsElement({entry, style, postponeFavicons: name});
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function createStyleTargetsElement({entry, style, postponeFavicons}) {
|
|
|
|
const parts = createStyleElement.parts;
|
2017-04-10 08:26:30 +00:00
|
|
|
const targets = parts.targets.cloneNode(true);
|
|
|
|
let container = targets;
|
2017-04-05 13:14:59 +00:00
|
|
|
let numTargets = 0;
|
2017-04-09 04:53:16 +00:00
|
|
|
let numIcons = 0;
|
2017-04-10 08:26:30 +00:00
|
|
|
const displayed = new Set();
|
2017-04-05 13:14:59 +00:00
|
|
|
for (const type of TARGET_TYPES) {
|
2017-03-26 02:30:59 +00:00
|
|
|
for (const section of style.sections) {
|
2017-04-05 13:14:59 +00:00
|
|
|
for (const targetValue of section[type] || []) {
|
|
|
|
if (displayed.has(targetValue)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
displayed.add(targetValue);
|
|
|
|
const element = template.appliesToTarget.cloneNode(true);
|
2017-04-09 04:53:16 +00:00
|
|
|
if (!newUI.enabled) {
|
|
|
|
if (numTargets == 10) {
|
2017-04-10 08:26:30 +00:00
|
|
|
container = container.appendChild(template.extraAppliesTo.cloneNode(true));
|
2017-04-09 04:53:16 +00:00
|
|
|
} else if (numTargets > 1) {
|
|
|
|
container.appendChild(template.appliesToSeparator.cloneNode(true));
|
|
|
|
}
|
|
|
|
} else if (newUI.favicons) {
|
2017-04-05 13:14:59 +00:00
|
|
|
let favicon = '';
|
|
|
|
if (type == 'domains') {
|
2017-04-13 08:03:45 +00:00
|
|
|
favicon = GET_FAVICON_URL + targetValue;
|
2017-04-05 13:14:59 +00:00
|
|
|
} else if (targetValue.startsWith('chrome-extension:')) {
|
|
|
|
favicon = OWN_ICON;
|
|
|
|
} else if (type != 'regexps') {
|
2017-04-13 08:03:45 +00:00
|
|
|
favicon = targetValue.includes('://') && targetValue.match(/^.*?:\/\/([^/]+)/);
|
|
|
|
favicon = favicon ? GET_FAVICON_URL + favicon[1] : '';
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
if (favicon) {
|
|
|
|
element.appendChild(document.createElement('img')).dataset.src = favicon;
|
2017-04-09 04:53:16 +00:00
|
|
|
numIcons++;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
element.appendChild(
|
|
|
|
document.createTextNode(
|
2017-04-10 08:26:30 +00:00
|
|
|
(parts.decorations[type + 'Before'] || '') +
|
2017-04-05 13:14:59 +00:00
|
|
|
targetValue +
|
2017-04-10 08:26:30 +00:00
|
|
|
(parts.decorations[type + 'After'] || '')));
|
2017-04-05 13:14:59 +00:00
|
|
|
container.appendChild(element);
|
2017-04-09 04:53:16 +00:00
|
|
|
numTargets++;
|
2017-03-25 02:35:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-05 13:14:59 +00:00
|
|
|
if (newUI.enabled) {
|
2017-04-14 18:30:55 +00:00
|
|
|
if (numTargets > newUI.targets) {
|
|
|
|
$('.applies-to', entry).classList.add('has-more');
|
|
|
|
}
|
|
|
|
if (numIcons && !postponeFavicons) {
|
2017-04-09 04:53:16 +00:00
|
|
|
debounce(handleEvent.loadFavicons);
|
|
|
|
}
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
2017-04-14 18:30:55 +00:00
|
|
|
const entryTargets = $('.targets', entry);
|
2017-04-10 08:26:30 +00:00
|
|
|
if (numTargets) {
|
2017-04-14 18:30:55 +00:00
|
|
|
entryTargets.parentElement.replaceChild(targets, entryTargets);
|
2017-04-10 08:26:30 +00:00
|
|
|
} else {
|
2017-04-14 18:30:55 +00:00
|
|
|
entryTargets.appendChild(template.appliesToEverything.cloneNode(true));
|
2017-04-10 08:26:30 +00:00
|
|
|
}
|
2017-04-14 18:30:55 +00:00
|
|
|
entry.classList.toggle('global', !numTargets);
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-03 04:13:10 +00:00
|
|
|
Object.assign(handleEvent, {
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
ENTRY_ROUTES: {
|
|
|
|
'.checker, .enable, .disable': 'toggle',
|
|
|
|
'.style-name-link': 'edit',
|
|
|
|
'.homepage': 'external',
|
|
|
|
'.check-update': 'check',
|
|
|
|
'.update': 'update',
|
|
|
|
'.delete': 'delete',
|
|
|
|
'.applies-to .expander': 'expandTargets',
|
|
|
|
},
|
|
|
|
|
|
|
|
entryClicked(event) {
|
|
|
|
const target = event.target;
|
|
|
|
const entry = target.closest('.entry');
|
|
|
|
for (const selector in handleEvent.ENTRY_ROUTES) {
|
|
|
|
for (let el = target; el && el != entry; el = el.parentElement) {
|
|
|
|
if (el.matches(selector)) {
|
|
|
|
const handler = handleEvent.ENTRY_ROUTES[selector];
|
|
|
|
return handleEvent[handler].call(el, event, entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-04-03 04:13:10 +00:00
|
|
|
edit(event) {
|
2017-03-21 01:32:38 +00:00
|
|
|
if (event.altKey) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
2017-03-26 02:30:59 +00:00
|
|
|
const left = event.button == 0;
|
|
|
|
const middle = event.button == 1;
|
|
|
|
const shift = event.shiftKey;
|
|
|
|
const ctrl = event.ctrlKey;
|
2017-03-21 01:32:38 +00:00
|
|
|
const openWindow = left && shift && !ctrl;
|
|
|
|
const openBackgroundTab = (middle && !shift) || (left && ctrl && !shift);
|
|
|
|
const openForegroundTab = (middle && shift) || (left && ctrl && shift);
|
|
|
|
const url = event.target.closest('[href]').href;
|
|
|
|
if (openWindow || openBackgroundTab || openForegroundTab) {
|
|
|
|
if (openWindow) {
|
|
|
|
chrome.windows.create(Object.assign(prefs.get('windowPosition'), {url}));
|
|
|
|
} else {
|
|
|
|
openURL({url, active: openForegroundTab});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rememberScrollPosition();
|
|
|
|
getActiveTab().then(tab => {
|
|
|
|
sessionStorageHash('manageStylesHistory').set(tab.id, url);
|
|
|
|
location.href = url;
|
|
|
|
});
|
|
|
|
}
|
2017-04-03 04:13:10 +00:00
|
|
|
},
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
toggle(event, entry) {
|
2017-04-11 10:51:40 +00:00
|
|
|
saveStyleSafe({
|
|
|
|
id: entry.styleId,
|
|
|
|
enabled: this.matches('.enable') || this.checked,
|
|
|
|
});
|
2017-04-03 04:13:10 +00:00
|
|
|
},
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
check(event, entry) {
|
|
|
|
checkUpdate(entry);
|
2017-04-03 04:13:10 +00:00
|
|
|
},
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
update(event, entry) {
|
2017-03-21 01:32:38 +00:00
|
|
|
// update everything but name
|
2017-04-11 10:51:40 +00:00
|
|
|
saveStyleSafe(Object.assign(entry.updatedCode, {
|
2017-04-05 13:14:59 +00:00
|
|
|
id: entry.styleId,
|
2017-03-25 02:35:54 +00:00
|
|
|
name: null,
|
|
|
|
reason: 'update',
|
|
|
|
}));
|
2017-04-03 04:13:10 +00:00
|
|
|
},
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
delete(event, entry) {
|
|
|
|
const id = entry.styleId;
|
2017-04-11 10:51:40 +00:00
|
|
|
const {name} = BG.cachedStyles.byId.get(id) || {};
|
2017-04-05 13:14:59 +00:00
|
|
|
animateElement(entry, {className: 'highlight'});
|
2017-03-25 19:50:37 +00:00
|
|
|
messageBox({
|
|
|
|
title: t('deleteStyleConfirm'),
|
|
|
|
contents: name,
|
|
|
|
className: 'danger center',
|
|
|
|
buttons: [t('confirmDelete'), t('confirmCancel')],
|
|
|
|
})
|
|
|
|
.then(({button, enter, esc}) => {
|
|
|
|
if (button == 0 || enter) {
|
2017-04-11 10:51:40 +00:00
|
|
|
deleteStyleSafe({id});
|
2017-03-25 19:50:37 +00:00
|
|
|
}
|
|
|
|
});
|
2017-04-03 04:13:10 +00:00
|
|
|
},
|
2017-03-31 22:49:51 +00:00
|
|
|
|
2017-04-03 04:13:10 +00:00
|
|
|
external(event) {
|
2017-03-31 22:49:51 +00:00
|
|
|
openURL({url: event.target.closest('a').href});
|
|
|
|
event.preventDefault();
|
2017-04-03 04:13:10 +00:00
|
|
|
},
|
2017-04-05 13:14:59 +00:00
|
|
|
|
|
|
|
expandTargets() {
|
|
|
|
this.closest('.applies-to').classList.toggle('expanded');
|
|
|
|
},
|
|
|
|
|
2017-04-16 11:24:49 +00:00
|
|
|
loadFavicons(container = document.body) {
|
2017-04-05 13:14:59 +00:00
|
|
|
for (const img of container.getElementsByTagName('img')) {
|
2017-04-13 08:03:45 +00:00
|
|
|
if (img.dataset.src) {
|
|
|
|
img.src = img.dataset.src;
|
|
|
|
delete img.dataset.src;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
filterOnChange({target: el, forceRefilter}) {
|
|
|
|
const getValue = el => (el.type == 'checkbox' ? el.checked : el.value.trim());
|
|
|
|
if (!forceRefilter) {
|
|
|
|
const value = getValue(el);
|
|
|
|
if (value == el.lastValue) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
el.lastValue = value;
|
|
|
|
}
|
|
|
|
const enabledFilters = $$('#header [data-filter]').filter(el => getValue(el));
|
|
|
|
Object.assign(filtersSelector, {
|
|
|
|
hide: enabledFilters.map(el => '.entry:not(.hidden)' + el.dataset.filter).join(','),
|
|
|
|
unhide: '.entry.hidden' + enabledFilters.map(el =>
|
|
|
|
(':not(' + el.dataset.filter + ')').replace(/^:not\(:not\((.+?)\)\)$/, '$1')).join(''),
|
|
|
|
});
|
|
|
|
reapplyFilter();
|
|
|
|
},
|
2017-04-03 04:13:10 +00:00
|
|
|
});
|
2015-01-30 17:31:20 +00:00
|
|
|
|
|
|
|
|
2017-04-11 10:51:40 +00:00
|
|
|
function handleUpdate(style, {reason} = {}) {
|
2017-04-16 11:24:49 +00:00
|
|
|
const entry = createStyleElement({style});
|
|
|
|
const oldEntry = $('#style-' + style.id);
|
|
|
|
if (oldEntry) {
|
|
|
|
if (oldEntry.styleNameLowerCase == entry.styleNameLowerCase) {
|
|
|
|
installed.replaceChild(entry, oldEntry);
|
2017-03-26 08:43:45 +00:00
|
|
|
} else {
|
2017-04-16 11:24:49 +00:00
|
|
|
oldEntry.remove();
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-03-21 01:32:38 +00:00
|
|
|
if (reason == 'update') {
|
2017-04-16 11:24:49 +00:00
|
|
|
entry.classList.add('update-done');
|
|
|
|
entry.classList.remove('can-update', 'updatable');
|
|
|
|
$('.update-note', entry).textContent = t('updateCompleted');
|
2017-04-09 16:04:00 +00:00
|
|
|
renderUpdatesOnlyFilter();
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
filterAndAppend({entry});
|
|
|
|
if (!entry.classList.contains('hidden') && reason != 'import') {
|
|
|
|
animateElement(entry, {className: 'highlight'});
|
|
|
|
scrollElementIntoView(entry);
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2015-01-30 17:31:20 +00:00
|
|
|
function handleDelete(id) {
|
2017-04-16 11:24:49 +00:00
|
|
|
const node = $('#style-' + id);
|
2017-03-21 01:32:38 +00:00
|
|
|
if (node) {
|
|
|
|
node.remove();
|
2017-04-16 11:24:49 +00:00
|
|
|
if (node.matches('.can-update')) {
|
|
|
|
const btnApply = $('#apply-all-updates');
|
|
|
|
btnApply.dataset.value = Number(btnApply.dataset.value) - 1;
|
|
|
|
}
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-05 13:14:59 +00:00
|
|
|
function switchUI({styleOnly} = {}) {
|
|
|
|
const enabled = $('#manage.newUI').checked;
|
|
|
|
const favicons = $('#manage.newUI.favicons').checked;
|
|
|
|
const targets = Number($('#manage.newUI.targets').value);
|
|
|
|
|
|
|
|
const stateToggled = newUI.enabled != enabled;
|
|
|
|
const targetsChanged = enabled && targets != newUI.targets;
|
|
|
|
const faviconsChanged = enabled && favicons != newUI.favicons;
|
|
|
|
const missingFavicons = enabled && favicons && !$('.applies-to img');
|
|
|
|
|
|
|
|
if (!styleOnly && !stateToggled && !targetsChanged && !faviconsChanged) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.assign(newUI, {enabled, favicons, targets});
|
|
|
|
|
2017-04-08 11:03:54 +00:00
|
|
|
newUI.renderClass();
|
2017-04-05 13:14:59 +00:00
|
|
|
installed.classList.toggle('has-favicons', favicons);
|
|
|
|
$('#style-overrides').textContent = `
|
|
|
|
.newUI .targets {
|
|
|
|
max-height: ${newUI.targets * 18}px;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2017-04-14 18:30:55 +00:00
|
|
|
if (styleOnly) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stateToggled || missingFavicons && !createStyleElement.parts) {
|
2017-04-05 13:14:59 +00:00
|
|
|
installed.innerHTML = '';
|
|
|
|
getStylesSafe().then(showStyles);
|
2017-04-14 18:30:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (targetsChanged) {
|
2017-04-10 08:26:30 +00:00
|
|
|
for (const targets of $$('.entry .targets')) {
|
|
|
|
const hasMore = targets.children.length > newUI.targets;
|
|
|
|
targets.parentElement.classList.toggle('has-more', hasMore);
|
|
|
|
}
|
2017-04-14 18:30:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (missingFavicons) {
|
|
|
|
getStylesSafe().then(styles => {
|
|
|
|
for (const style of styles) {
|
|
|
|
const entry = $('#style-' + style.id);
|
|
|
|
if (entry) {
|
|
|
|
createStyleTargetsElement({entry, style, postponeFavicons: true});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
debounce(handleEvent.loadFavicons);
|
|
|
|
});
|
|
|
|
return;
|
2017-04-05 13:14:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-15 04:21:08 +00:00
|
|
|
function applyUpdateAll() {
|
2017-03-21 01:32:38 +00:00
|
|
|
const btnApply = $('#apply-all-updates');
|
|
|
|
btnApply.disabled = true;
|
|
|
|
setTimeout(() => {
|
2017-04-14 20:25:54 +00:00
|
|
|
btnApply.classList.add('hidden');
|
2017-03-21 01:32:38 +00:00
|
|
|
btnApply.disabled = false;
|
2017-04-18 11:59:59 +00:00
|
|
|
renderUpdatesOnlyFilter({show: false});
|
2017-03-21 01:32:38 +00:00
|
|
|
}, 1000);
|
|
|
|
|
2017-03-25 05:54:58 +00:00
|
|
|
$$('.can-update .update').forEach(button => {
|
2017-04-14 20:25:54 +00:00
|
|
|
scrollElementIntoView(button);
|
2017-03-25 05:54:58 +00:00
|
|
|
button.click();
|
|
|
|
});
|
2015-03-15 04:21:08 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2015-01-30 17:31:20 +00:00
|
|
|
function checkUpdateAll() {
|
2017-03-21 01:32:38 +00:00
|
|
|
const btnCheck = $('#check-all-updates');
|
|
|
|
const btnApply = $('#apply-all-updates');
|
|
|
|
const noUpdates = $('#update-all-no-updates');
|
2017-04-14 20:25:54 +00:00
|
|
|
const progress = $('#update-progress');
|
2017-03-21 01:32:38 +00:00
|
|
|
|
|
|
|
btnCheck.disabled = true;
|
|
|
|
btnApply.classList.add('hidden');
|
|
|
|
noUpdates.classList.add('hidden');
|
2017-04-14 20:25:54 +00:00
|
|
|
const maxWidth = progress.parentElement.clientWidth;
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-14 20:25:54 +00:00
|
|
|
const queue = $$('.updatable:not(.can-update)').map(checkUpdate);
|
|
|
|
const total = queue.length;
|
|
|
|
let updatesFound = false;
|
|
|
|
let checked = 0;
|
|
|
|
processQueue();
|
2017-03-21 01:32:38 +00:00
|
|
|
// notify the automatic updater to reset the next automatic update accordingly
|
|
|
|
chrome.runtime.sendMessage({
|
|
|
|
method: 'resetInterval'
|
|
|
|
});
|
2017-04-14 20:25:54 +00:00
|
|
|
|
|
|
|
function processQueue(status) {
|
|
|
|
if (status === true) {
|
|
|
|
updatesFound = true;
|
|
|
|
btnApply.disabled = true;
|
|
|
|
btnApply.classList.remove('hidden');
|
|
|
|
renderUpdatesOnlyFilter({check: true});
|
|
|
|
}
|
|
|
|
if (checked < total) {
|
|
|
|
queue[checked++].then(status => {
|
|
|
|
progress.style.width = Math.round(checked / total * maxWidth) + 'px';
|
|
|
|
setTimeout(processQueue, 0, status);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
btnCheck.disabled = false;
|
|
|
|
btnApply.disabled = false;
|
|
|
|
if (!updatesFound) {
|
|
|
|
noUpdates.classList.remove('hidden');
|
|
|
|
setTimeout(() => {
|
|
|
|
noUpdates.classList.add('hidden');
|
|
|
|
}, 10e3);
|
|
|
|
}
|
|
|
|
}
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
function checkUpdate(element) {
|
2017-04-14 20:25:54 +00:00
|
|
|
$('.update-note', element).textContent = t('checkingForUpdate');
|
2017-04-05 13:14:59 +00:00
|
|
|
$('.check-update', element).title = '';
|
2017-04-09 16:04:00 +00:00
|
|
|
element.classList.remove('checking-update', 'no-update', 'update-problem');
|
2017-03-21 01:32:38 +00:00
|
|
|
element.classList.add('checking-update');
|
2017-04-03 04:13:10 +00:00
|
|
|
return new Updater(element).run(); // eslint-disable-line no-use-before-define
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
class Updater {
|
|
|
|
constructor(element) {
|
2017-04-11 10:51:40 +00:00
|
|
|
const style = BG.cachedStyles.byId.get(element.styleId);
|
2017-03-21 01:32:38 +00:00
|
|
|
Object.assign(this, {
|
|
|
|
element,
|
2017-04-05 13:14:59 +00:00
|
|
|
id: style.id,
|
|
|
|
url: style.updateUrl,
|
|
|
|
md5Url: style.md5Url,
|
|
|
|
md5: style.originalMd5,
|
2017-03-21 01:32:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
run() {
|
|
|
|
return this.md5Url && this.md5
|
|
|
|
? this.checkMd5()
|
|
|
|
: this.checkFullCode();
|
|
|
|
}
|
|
|
|
|
|
|
|
checkMd5() {
|
2017-03-26 02:30:59 +00:00
|
|
|
return Updater.download(this.md5Url).then(
|
|
|
|
md5 => (md5.length == 32
|
2017-03-21 01:32:38 +00:00
|
|
|
? this.decideOnMd5(md5 != this.md5)
|
2017-03-26 02:30:59 +00:00
|
|
|
: this.onFailure(-1)),
|
2017-04-05 13:14:59 +00:00
|
|
|
status => this.onFailure(status));
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
decideOnMd5(md5changed) {
|
|
|
|
if (md5changed) {
|
|
|
|
return this.checkFullCode({forceUpdate: true});
|
|
|
|
}
|
|
|
|
this.display();
|
|
|
|
}
|
|
|
|
|
|
|
|
checkFullCode({forceUpdate = false} = {}) {
|
2017-03-26 02:30:59 +00:00
|
|
|
return Updater.download(this.url).then(
|
2017-03-21 01:32:38 +00:00
|
|
|
text => this.handleJson(forceUpdate, JSON.parse(text)),
|
2017-04-05 13:14:59 +00:00
|
|
|
status => this.onFailure(status));
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleJson(forceUpdate, json) {
|
|
|
|
return getStylesSafe({id: this.id}).then(([style]) => {
|
2017-04-11 10:51:40 +00:00
|
|
|
const needsUpdate = forceUpdate || !BG.styleSectionsEqual(style, json);
|
2017-03-21 01:32:38 +00:00
|
|
|
this.display({json: needsUpdate && json});
|
|
|
|
return needsUpdate;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
onFailure(status) {
|
|
|
|
this.display({
|
|
|
|
message: status == 0
|
|
|
|
? t('updateCheckFailServerUnreachable')
|
|
|
|
: t('updateCheckFailBadResponseCode', [status]),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
display({json, message} = {}) {
|
|
|
|
// json on success
|
|
|
|
// message on failure
|
|
|
|
// none on update not needed
|
|
|
|
this.element.classList.remove('checking-update');
|
|
|
|
if (json) {
|
|
|
|
this.element.classList.add('can-update');
|
|
|
|
this.element.updatedCode = json;
|
2017-04-14 20:25:54 +00:00
|
|
|
$('.update-note', this.element).textContent = '';
|
2017-04-09 16:04:00 +00:00
|
|
|
$('#onlyUpdates').classList.remove('hidden');
|
2017-03-21 01:32:38 +00:00
|
|
|
} else {
|
|
|
|
this.element.classList.add('no-update');
|
2017-04-05 13:14:59 +00:00
|
|
|
this.element.classList.toggle('update-problem', Boolean(message));
|
2017-04-14 20:25:54 +00:00
|
|
|
$('.update-note', this.element).textContent = message || t('updateCheckSucceededNoUpdate');
|
2017-04-05 13:14:59 +00:00
|
|
|
if (newUI.enabled) {
|
|
|
|
$('.check-update', this.element).title = message;
|
|
|
|
}
|
2017-04-09 16:04:00 +00:00
|
|
|
// don't hide if check-all is running
|
|
|
|
if (!$('#check-all-updates').disabled) {
|
|
|
|
$('#onlyUpdates').classList.toggle('hidden', !$('.can-update'));
|
|
|
|
}
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
if (filtersSelector.hide) {
|
|
|
|
filterAndAppend({entry: this.element});
|
|
|
|
}
|
2017-03-25 02:35:54 +00:00
|
|
|
}
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
static download(url) {
|
2017-03-21 01:32:38 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const xhr = new XMLHttpRequest();
|
2017-03-26 02:30:59 +00:00
|
|
|
xhr.onloadend = () => (xhr.status == 200
|
2017-03-21 01:32:38 +00:00
|
|
|
? resolve(xhr.responseText)
|
2017-03-26 02:30:59 +00:00
|
|
|
: reject(xhr.status));
|
2017-03-21 01:32:38 +00:00
|
|
|
if (url.length > 2000) {
|
|
|
|
const [mainUrl, query] = url.split('?');
|
|
|
|
xhr.open('POST', mainUrl, true);
|
|
|
|
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
|
|
|
xhr.send(query);
|
|
|
|
} else {
|
|
|
|
xhr.open('GET', url);
|
|
|
|
xhr.send();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-01-30 17:31:20 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-09 16:04:00 +00:00
|
|
|
function renderUpdatesOnlyFilter({show, check} = {}) {
|
|
|
|
const numUpdatable = $$('.can-update').length;
|
|
|
|
const canUpdate = numUpdatable > 0;
|
|
|
|
const checkbox = $('#onlyUpdates input');
|
|
|
|
show = show !== undefined ? show : canUpdate;
|
|
|
|
check = check !== undefined ? show && check : checkbox.checked && canUpdate;
|
|
|
|
|
|
|
|
$('#onlyUpdates').classList.toggle('hidden', !show);
|
|
|
|
checkbox.checked = check;
|
|
|
|
checkbox.dispatchEvent(new Event('change'));
|
|
|
|
|
|
|
|
const btnApply = $('#apply-all-updates');
|
|
|
|
if (!btnApply.matches('.hidden')) {
|
|
|
|
if (canUpdate) {
|
2017-04-14 20:25:54 +00:00
|
|
|
btnApply.dataset.value = numUpdatable;
|
2017-04-09 16:04:00 +00:00
|
|
|
} else {
|
|
|
|
btnApply.classList.add('hidden');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
function searchStyles({immediately, container}) {
|
2017-04-16 11:24:49 +00:00
|
|
|
const searchElement = $('#search');
|
|
|
|
const query = searchElement.value.toLocaleLowerCase();
|
|
|
|
const queryPrev = searchElement.lastValue || '';
|
|
|
|
if (query == queryPrev && !immediately && !container) {
|
2017-03-21 01:32:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!immediately) {
|
|
|
|
clearTimeout(searchStyles.timeout);
|
2017-03-26 08:57:44 +00:00
|
|
|
searchStyles.timeout = setTimeout(searchStyles, 150, {immediately: true});
|
2017-03-21 01:32:38 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
searchElement.lastValue = query;
|
|
|
|
|
|
|
|
const searchInVisible = queryPrev && query.includes(queryPrev);
|
|
|
|
const entries = container && container.children || container ||
|
|
|
|
(searchInVisible ? $$('.entry:not(.hidden)') : installed.children);
|
|
|
|
let needsRefilter = false;
|
|
|
|
for (const entry of entries) {
|
|
|
|
let isMatching = !query;
|
|
|
|
if (!isMatching) {
|
|
|
|
const style = BG.cachedStyles.byId.get(entry.styleId) || {};
|
|
|
|
isMatching = Boolean(style && (
|
|
|
|
isMatchingText(style.name) ||
|
|
|
|
style.url && isMatchingText(style.url) ||
|
|
|
|
isMatchingStyle(style)));
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
if (entry.classList.contains('not-matching') != !isMatching) {
|
|
|
|
entry.classList.toggle('not-matching', !isMatching);
|
|
|
|
needsRefilter = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (needsRefilter && !container) {
|
|
|
|
handleEvent.filterOnChange({forceRefilter: true});
|
2017-03-21 01:32:38 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
return;
|
2017-03-21 01:32:38 +00:00
|
|
|
|
|
|
|
function isMatchingStyle(style) {
|
2017-03-26 02:30:59 +00:00
|
|
|
for (const section of style.sections) {
|
|
|
|
for (const prop in section) {
|
2017-03-21 01:32:38 +00:00
|
|
|
const value = section[prop];
|
|
|
|
switch (typeof value) {
|
|
|
|
case 'string':
|
|
|
|
if (isMatchingText(value)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'object':
|
2017-03-26 02:30:59 +00:00
|
|
|
for (const str of value) {
|
2017-03-21 01:32:38 +00:00
|
|
|
if (isMatchingText(str)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function isMatchingText(text) {
|
|
|
|
return text.toLocaleLowerCase().indexOf(query) >= 0;
|
|
|
|
}
|
2015-01-30 17:31:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 01:32:38 +00:00
|
|
|
|
2017-04-16 11:24:49 +00:00
|
|
|
function filterAndAppend({entry, container}) {
|
|
|
|
if (!container) {
|
|
|
|
container = document.createElement('div');
|
|
|
|
container.appendChild(entry);
|
|
|
|
// reverse the visibility, otherwise reapplyFilter will see no need to work
|
|
|
|
if (!filtersSelector.hide || !entry.matches(filtersSelector.hide)) {
|
|
|
|
entry.classList.add('hidden');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($('#search').value.trim()) {
|
|
|
|
searchStyles({immediately: true, container});
|
|
|
|
}
|
|
|
|
reapplyFilter(container);
|
2015-03-04 07:55:35 +00:00
|
|
|
}
|
2017-03-26 08:43:45 +00:00
|
|
|
|
|
|
|
|
2017-04-16 11:24:49 +00:00
|
|
|
function reapplyFilter(container = installed) {
|
|
|
|
// A: show
|
|
|
|
const toUnhide = filtersSelector.hide ? $$(filtersSelector.unhide, container) : container;
|
|
|
|
// showStyles() is building the page and no filters are active
|
|
|
|
if (toUnhide instanceof DocumentFragment) {
|
|
|
|
installed.appendChild(toUnhide);
|
|
|
|
return;
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
// filtering needed or a single-element job from handleUpdate()
|
|
|
|
const entries = installed.children;
|
|
|
|
const numEntries = entries.length;
|
|
|
|
let numVisible = numEntries - $$('.entry.hidden').length;
|
|
|
|
for (const entry of toUnhide.children || toUnhide) {
|
|
|
|
const next = findInsertionPoint(entry);
|
|
|
|
if (entry.nextElementSibling !== next) {
|
|
|
|
installed.insertBefore(entry, next);
|
|
|
|
}
|
|
|
|
if (entry.classList.contains('hidden')) {
|
|
|
|
entry.classList.remove('hidden');
|
|
|
|
numVisible++;
|
|
|
|
}
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
// B: hide
|
|
|
|
const toHide = filtersSelector.hide ? $$(filtersSelector.hide, container) : [];
|
|
|
|
if (!toHide.length) {
|
|
|
|
return;
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
for (const entry of toHide) {
|
|
|
|
entry.classList.add('hidden');
|
|
|
|
}
|
|
|
|
// showStyles() is building the page with filters active so we need to:
|
|
|
|
// 1. add all hidden entries to the end
|
|
|
|
// 2. add the visible entries before the first hidden entry
|
|
|
|
if (container instanceof DocumentFragment) {
|
|
|
|
for (const entry of toHide) {
|
|
|
|
installed.appendChild(entry);
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
installed.insertBefore(container, $('.entry.hidden'));
|
|
|
|
return;
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
// normal filtering of the page or a single-element job from handleUpdate()
|
|
|
|
// we need to keep the visible entries together at the start
|
|
|
|
// first pass only moves one hidden entry in hidden groups with odd number of items
|
|
|
|
shuffle(false);
|
|
|
|
setTimeout(shuffle, 0, true);
|
|
|
|
// single-element job from handleEvent(): add the last wraith
|
|
|
|
if (toHide.length == 1 && toHide[0].parentElement != installed) {
|
|
|
|
installed.appendChild(toHide[0]);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
function shuffle(fullPass) {
|
2017-04-18 14:14:29 +00:00
|
|
|
if (fullPass) {
|
|
|
|
$('#check-all-updates').disabled = !$('.updatable:not(.can-update)');
|
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
// 1. skip the visible group on top
|
|
|
|
let firstHidden = $('#installed > .hidden');
|
|
|
|
let entry = firstHidden;
|
|
|
|
let i = [...entries].indexOf(entry);
|
|
|
|
let horizon = entries[numVisible];
|
|
|
|
const skipGroup = state => {
|
|
|
|
const start = i;
|
|
|
|
const first = entry;
|
|
|
|
while (entry && entry.classList.contains('hidden') == state) {
|
|
|
|
entry = entry.nextElementSibling;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return {first, start, len: i - start};
|
|
|
|
};
|
|
|
|
let prevGroup = i ? {first: entries[0], start: 0, len: i} : skipGroup(true);
|
|
|
|
// eslint-disable-next-line no-unmodified-loop-condition
|
|
|
|
while (entry) {
|
|
|
|
// 2a. find the next hidden group's start and end
|
|
|
|
// 2b. find the next visible group's start and end
|
|
|
|
const isHidden = entry.classList.contains('hidden');
|
|
|
|
const group = skipGroup(isHidden);
|
|
|
|
const hidden = isHidden ? group : prevGroup;
|
|
|
|
const visible = isHidden ? prevGroup : group;
|
|
|
|
// 3. move the shortest group; repeat 2-3
|
|
|
|
if (hidden.len < visible.len && (fullPass || hidden.len % 2)) {
|
|
|
|
// 3a. move hidden under the horizon
|
|
|
|
for (let j = 0; j < (fullPass ? hidden.len : 1); j++) {
|
|
|
|
const entry = entries[hidden.start];
|
|
|
|
installed.insertBefore(entry, horizon);
|
|
|
|
horizon = entry;
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
prevGroup = isHidden ? skipGroup(false) : group;
|
|
|
|
firstHidden = entry;
|
|
|
|
} else if (isHidden || !fullPass) {
|
|
|
|
prevGroup = group;
|
|
|
|
} else {
|
|
|
|
// 3b. move visible above the horizon
|
|
|
|
for (let j = 0; j < visible.len; j++) {
|
|
|
|
const entry = entries[visible.start + j];
|
|
|
|
installed.insertBefore(entry, firstHidden);
|
|
|
|
}
|
|
|
|
prevGroup = {
|
|
|
|
first: firstHidden,
|
|
|
|
start: hidden.start + visible.len,
|
|
|
|
len: hidden.len + skipGroup(true).len,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
|
|
|
|
function findInsertionPoint(entry) {
|
|
|
|
const nameLLC = entry.styleNameLowerCase;
|
|
|
|
let a = 0;
|
|
|
|
let b = Math.min(numEntries, numVisible) - 1;
|
|
|
|
if (b < 0) {
|
|
|
|
return entries[numVisible];
|
|
|
|
}
|
|
|
|
if (entries[0].styleNameLowerCase > nameLLC) {
|
|
|
|
return entries[0];
|
|
|
|
}
|
|
|
|
if (entries[b].styleNameLowerCase <= nameLLC) {
|
|
|
|
return entries[numVisible];
|
|
|
|
}
|
|
|
|
// bisect
|
|
|
|
while (a < b - 1) {
|
|
|
|
const c = (a + b) / 2 | 0;
|
|
|
|
if (nameLLC < entries[c].styleNameLowerCase) {
|
|
|
|
b = c;
|
|
|
|
} else {
|
|
|
|
a = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (entries[a].styleNameLowerCase > nameLLC) {
|
|
|
|
return entries[a];
|
|
|
|
}
|
|
|
|
while (a <= b && entries[a].styleNameLowerCase < nameLLC) {
|
|
|
|
a++;
|
|
|
|
}
|
|
|
|
return entries[entries[a].styleNameLowerCase <= nameLLC ? a + 1 : a];
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|
2017-04-16 11:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function rememberScrollPosition() {
|
|
|
|
history.replaceState({scrollY: window.scrollY}, document.title);
|
2017-03-26 08:43:45 +00:00
|
|
|
}
|