2020-10-04 05:30:02 +00:00
|
|
|
/* global URLS tabURL handleEvent $ $$ prefs template FIREFOX debounce
|
|
|
|
$create t API tWordBreak formatDate tryCatch download */
|
2017-12-09 21:03:17 +00:00
|
|
|
'use strict';
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
window.addEventListener('showStyles:done', () => {
|
|
|
|
if (!tabURL) return;
|
2017-12-11 02:20:59 +00:00
|
|
|
const RESULT_ID_PREFIX = 'search-result-';
|
2020-10-04 05:30:02 +00:00
|
|
|
const INDEX_URL = URLS.usoArchiveRaw + 'search-index.json';
|
2020-01-28 02:36:43 +00:00
|
|
|
const STYLUS_CATEGORY = 'chrome-extension';
|
2020-10-04 05:30:02 +00:00
|
|
|
const PAGE_LENGTH = 10;
|
|
|
|
// update USO style install counter if the style isn't uninstalled immediately
|
|
|
|
const PINGBACK_DELAY = 5e3;
|
|
|
|
const BUSY_DELAY = .5e3;
|
|
|
|
const USO_AUTO_PIC_SUFFIX = '-after.png';
|
|
|
|
const BLANK_PIXEL = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==';
|
|
|
|
const dom = {};
|
|
|
|
/**
|
|
|
|
* @typedef IndexEntry
|
|
|
|
* @prop {'uso' | 'uso-android'} f - format
|
|
|
|
* @prop {Number} i - id
|
|
|
|
* @prop {string} n - name
|
|
|
|
* @prop {string} c - category
|
|
|
|
* @prop {Number} u - updatedTime
|
|
|
|
* @prop {Number} t - totalInstalls
|
|
|
|
* @prop {Number} w - weeklyInstalls
|
|
|
|
* @prop {Number} r - rating
|
|
|
|
* @prop {Number} ai - authorId
|
|
|
|
* @prop {string} an - authorName
|
|
|
|
* @prop {string} sn - screenshotName
|
|
|
|
* @prop {boolean} sa - screenshotArchived
|
|
|
|
*/
|
|
|
|
/** @type IndexEntry[] */
|
|
|
|
let results;
|
|
|
|
/** @type IndexEntry[] */
|
|
|
|
let index;
|
|
|
|
let category = '';
|
|
|
|
/** @type string[] */
|
|
|
|
let query = [];
|
|
|
|
/** @type 'n' | 'u' | 't' | 'w' | 'r' */
|
|
|
|
let order = 't';
|
2017-12-11 02:20:59 +00:00
|
|
|
let scrollToFirstResult = true;
|
|
|
|
let displayedPage = 1;
|
|
|
|
let totalPages = 1;
|
2020-10-04 05:30:02 +00:00
|
|
|
let ready;
|
2017-12-11 02:20:59 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
calcCategory();
|
2017-12-11 02:20:59 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
const $orNode = (sel, base) => sel instanceof Node ? sel : $(sel, base);
|
|
|
|
const show = (...args) => $orNode(...args).classList.remove('hidden');
|
|
|
|
const hide = (...args) => $orNode(...args).classList.add('hidden');
|
2017-12-11 02:20:59 +00:00
|
|
|
|
2017-12-10 01:03:04 +00:00
|
|
|
Object.assign($('#find-styles-link'), {
|
2020-10-04 05:30:02 +00:00
|
|
|
href: URLS.usoArchive,
|
2017-12-10 01:03:04 +00:00
|
|
|
onclick(event) {
|
2017-12-11 02:20:59 +00:00
|
|
|
if (!prefs.get('popup.findStylesInline') || dom.container) {
|
2020-10-04 05:30:02 +00:00
|
|
|
this.search = `${new URLSearchParams({category, search: $('#search-query').value})}`;
|
2017-12-10 01:03:04 +00:00
|
|
|
handleEvent.openURLandHide.call(this, event);
|
|
|
|
return;
|
|
|
|
}
|
2017-12-11 04:35:23 +00:00
|
|
|
event.preventDefault();
|
2017-12-11 02:20:59 +00:00
|
|
|
this.textContent = this.title;
|
|
|
|
this.title = '';
|
|
|
|
init();
|
2020-10-04 05:30:02 +00:00
|
|
|
ready = start();
|
2017-12-10 01:03:04 +00:00
|
|
|
},
|
|
|
|
});
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2017-12-11 02:20:59 +00:00
|
|
|
return;
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2017-12-11 02:20:59 +00:00
|
|
|
function init() {
|
2020-10-04 05:30:02 +00:00
|
|
|
setTimeout(() => document.body.classList.add('search-results-shown'));
|
|
|
|
hide('#find-styles-inline-group');
|
|
|
|
$('#search-query').oninput = function () {
|
|
|
|
query = [];
|
|
|
|
const text = this.value.trim().toLocaleLowerCase();
|
|
|
|
const thisYear = new Date().getFullYear();
|
|
|
|
for (let re = /"(.+?)"|(\S+)/g, m; (m = re.exec(text));) {
|
|
|
|
const n = Number(m[2]);
|
|
|
|
query.push(n >= 2000 && n <= thisYear ? n : m[1] || m[2]);
|
|
|
|
}
|
|
|
|
ready = ready.then(start);
|
|
|
|
};
|
|
|
|
$('#search-order').value = order;
|
|
|
|
$('#search-order').onchange = function () {
|
|
|
|
order = this.value;
|
|
|
|
results.sort(comparator);
|
|
|
|
render();
|
|
|
|
};
|
|
|
|
dom.list = $('#search-results-list');
|
2017-12-11 02:20:59 +00:00
|
|
|
dom.container = $('#search-results');
|
2017-12-11 20:25:41 +00:00
|
|
|
dom.container.dataset.empty = '';
|
2017-12-11 02:20:59 +00:00
|
|
|
dom.error = $('#search-results-error');
|
|
|
|
dom.nav = {};
|
|
|
|
const navOnClick = {prev, next};
|
|
|
|
for (const place of ['top', 'bottom']) {
|
2017-12-11 10:03:03 +00:00
|
|
|
const nav = $(`.search-results-nav[data-type="${place}"]`);
|
2017-12-11 02:20:59 +00:00
|
|
|
nav.appendChild(template.searchNav.cloneNode(true));
|
|
|
|
dom.nav[place] = nav;
|
2017-12-11 10:03:03 +00:00
|
|
|
for (const child of $$('[data-type]', nav)) {
|
|
|
|
const type = child.dataset.type;
|
|
|
|
child.onclick = navOnClick[type];
|
|
|
|
nav['_' + type] = child;
|
2017-12-09 21:03:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 20:13:35 +00:00
|
|
|
if (FIREFOX) {
|
2017-12-19 04:05:07 +00:00
|
|
|
let lastShift;
|
2017-12-13 20:13:35 +00:00
|
|
|
addEventListener('resize', () => {
|
|
|
|
const scrollbarWidth = window.innerWidth - document.scrollingElement.clientWidth;
|
2017-12-19 04:05:07 +00:00
|
|
|
const shift = document.body.getBoundingClientRect().left;
|
|
|
|
if (!scrollbarWidth || shift === lastShift) return;
|
|
|
|
lastShift = shift;
|
|
|
|
document.body.style.setProperty('padding',
|
|
|
|
`0 ${scrollbarWidth + shift}px 0 ${-shift}px`, 'important');
|
|
|
|
}, {passive: true});
|
2017-12-13 20:13:35 +00:00
|
|
|
}
|
2017-12-11 20:25:41 +00:00
|
|
|
|
2018-11-15 13:46:52 +00:00
|
|
|
addEventListener('styleDeleted', ({detail: {style: {id}}}) => {
|
2020-10-04 05:30:02 +00:00
|
|
|
restoreScrollPosition();
|
|
|
|
const result = results.find(r => r.installedStyleId === id);
|
2017-12-13 21:49:11 +00:00
|
|
|
if (result) {
|
2020-10-04 05:30:02 +00:00
|
|
|
clearTimeout(result.pingbackTimer);
|
|
|
|
renderActionButtons(result.i, -1);
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
|
|
|
});
|
2017-12-10 01:03:04 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
addEventListener('styleAdded', async ({detail: {style}}) => {
|
|
|
|
restoreScrollPosition();
|
|
|
|
const usoId = calcUsoId(style) ||
|
|
|
|
calcUsoId(await API.getStyle(style.id, true));
|
|
|
|
if (usoId && results.find(r => r.i === usoId)) {
|
|
|
|
renderActionButtons(usoId, style.id);
|
2017-12-10 01:03:04 +00:00
|
|
|
}
|
2017-12-11 02:20:59 +00:00
|
|
|
});
|
|
|
|
}
|
2017-12-10 01:03:04 +00:00
|
|
|
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2017-12-11 02:20:59 +00:00
|
|
|
function showSpinner(parent) {
|
|
|
|
parent = parent instanceof Node ? parent : $(parent);
|
|
|
|
parent.appendChild($create('.lds-spinner',
|
|
|
|
new Array(12).fill($create('div')).map(e => e.cloneNode())));
|
|
|
|
}
|
2017-12-10 01:03:04 +00:00
|
|
|
|
2017-12-11 02:20:59 +00:00
|
|
|
function next() {
|
2020-10-04 05:30:02 +00:00
|
|
|
displayedPage = Math.min(totalPages, displayedPage + 1);
|
2017-12-11 02:20:59 +00:00
|
|
|
scrollToFirstResult = true;
|
|
|
|
render();
|
|
|
|
}
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2017-12-11 02:20:59 +00:00
|
|
|
function prev() {
|
|
|
|
displayedPage = Math.max(1, displayedPage - 1);
|
|
|
|
scrollToFirstResult = true;
|
|
|
|
render();
|
|
|
|
}
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2017-12-11 02:20:59 +00:00
|
|
|
function error(reason) {
|
2020-10-04 05:30:02 +00:00
|
|
|
dom.error.textContent = reason;
|
|
|
|
show(dom.error);
|
|
|
|
(results.length ? show : hide)(dom.container);
|
|
|
|
document.body.classList.toggle('search-results-shown', results.length > 0);
|
2017-12-19 02:29:21 +00:00
|
|
|
if (dom.error.getBoundingClientRect().bottom < 0) {
|
|
|
|
dom.error.scrollIntoView({behavior: 'smooth', block: 'start'});
|
2017-12-11 19:26:33 +00:00
|
|
|
}
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
async function start() {
|
|
|
|
show(dom.container);
|
|
|
|
hide(dom.error);
|
|
|
|
results = [];
|
|
|
|
try {
|
|
|
|
for (let retry = 0; !results.length && retry <= 2; retry++) {
|
|
|
|
results = await search({retry});
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
if (results.length) {
|
|
|
|
const installedStyles = await API.getAllStyles(true);
|
|
|
|
const allUsoIds = new Set(installedStyles.map(calcUsoId));
|
|
|
|
results = results.filter(r => !allUsoIds.has(r.i));
|
2017-12-11 20:25:41 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
if (results.length || $('#search-query').value) {
|
2017-12-11 02:20:59 +00:00
|
|
|
render();
|
2020-10-04 05:30:02 +00:00
|
|
|
} else {
|
|
|
|
error(t('searchResultNoneFound'));
|
2017-12-09 21:03:17 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
} catch (reason) {
|
|
|
|
error(reason);
|
|
|
|
}
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function render() {
|
2020-10-04 05:30:02 +00:00
|
|
|
totalPages = Math.ceil(results.length / PAGE_LENGTH);
|
|
|
|
displayedPage = Math.min(displayedPage, totalPages) || 1;
|
|
|
|
let start = (displayedPage - 1) * PAGE_LENGTH;
|
|
|
|
const end = displayedPage * PAGE_LENGTH;
|
2017-12-11 02:20:59 +00:00
|
|
|
let plantAt = 0;
|
|
|
|
let slot = dom.list.children[0];
|
|
|
|
// keep rendered elements with ids in the range of interest
|
|
|
|
while (
|
2020-10-04 05:30:02 +00:00
|
|
|
plantAt < PAGE_LENGTH &&
|
|
|
|
slot && slot.id === 'search-result-' + (results[start] || {}).i
|
2017-12-11 02:20:59 +00:00
|
|
|
) {
|
|
|
|
slot = slot.nextElementSibling;
|
|
|
|
plantAt++;
|
|
|
|
start++;
|
2017-12-09 21:03:17 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
// add new elements
|
|
|
|
while (start < Math.min(end, results.length)) {
|
|
|
|
const entry = createSearchResultNode(results[start++]);
|
2017-12-11 02:20:59 +00:00
|
|
|
if (slot) {
|
|
|
|
dom.list.replaceChild(entry, slot);
|
|
|
|
slot = entry.nextElementSibling;
|
2017-12-09 21:03:17 +00:00
|
|
|
} else {
|
2017-12-11 02:20:59 +00:00
|
|
|
dom.list.appendChild(entry);
|
2017-12-09 21:03:17 +00:00
|
|
|
}
|
2017-12-11 02:20:59 +00:00
|
|
|
plantAt++;
|
2017-12-09 21:03:17 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
// remove extraneous elements
|
|
|
|
const pageLen = end > results.length &&
|
|
|
|
results.length % PAGE_LENGTH ||
|
|
|
|
Math.min(results.length, PAGE_LENGTH);
|
|
|
|
while (dom.list.children.length > pageLen) {
|
2017-12-11 02:20:59 +00:00
|
|
|
dom.list.lastElementChild.remove();
|
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
if (results.length && 'empty' in dom.container.dataset) {
|
2017-12-11 20:25:41 +00:00
|
|
|
delete dom.container.dataset.empty;
|
|
|
|
}
|
|
|
|
if (scrollToFirstResult && (!FIREFOX || FIREFOX >= 55)) {
|
|
|
|
debounce(doScrollToFirstResult);
|
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
// navigation
|
|
|
|
for (const place in dom.nav) {
|
|
|
|
const nav = dom.nav[place];
|
|
|
|
nav._prev.disabled = displayedPage <= 1;
|
|
|
|
nav._next.disabled = displayedPage >= totalPages;
|
|
|
|
nav._page.textContent = displayedPage;
|
|
|
|
nav._total.textContent = totalPages;
|
|
|
|
}
|
2017-12-11 20:25:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function doScrollToFirstResult() {
|
|
|
|
if (dom.container.scrollHeight > window.innerHeight * 2) {
|
2017-12-11 02:20:59 +00:00
|
|
|
scrollToFirstResult = false;
|
2017-12-11 20:25:41 +00:00
|
|
|
dom.container.scrollIntoView({behavior: 'smooth', block: 'start'});
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-10 09:00:40 +00:00
|
|
|
|
2017-12-11 02:20:59 +00:00
|
|
|
/**
|
2020-10-04 05:30:02 +00:00
|
|
|
* @param {IndexEntry} result
|
|
|
|
* @returns {Node}
|
2017-12-11 02:20:59 +00:00
|
|
|
*/
|
|
|
|
function createSearchResultNode(result) {
|
|
|
|
const entry = template.searchResult.cloneNode(true);
|
2020-10-04 05:30:02 +00:00
|
|
|
const {
|
|
|
|
i: id,
|
|
|
|
n: name,
|
|
|
|
r: rating,
|
|
|
|
u: updateTime,
|
|
|
|
w: weeklyInstalls,
|
|
|
|
t: totalInstalls,
|
|
|
|
an: author,
|
|
|
|
sa: shotArchived,
|
|
|
|
sn: shotName,
|
|
|
|
} = entry._result = result;
|
|
|
|
entry.id = RESULT_ID_PREFIX + id;
|
|
|
|
// title
|
2017-12-11 02:20:59 +00:00
|
|
|
Object.assign($('.search-result-title', entry), {
|
|
|
|
onclick: handleEvent.openURLandHide,
|
2020-10-04 05:30:02 +00:00
|
|
|
href: URLS.usoArchive + `?category=${category}&style=${id}`
|
2017-12-11 02:20:59 +00:00
|
|
|
});
|
2020-10-04 05:30:02 +00:00
|
|
|
$('.search-result-title span', entry).textContent =
|
|
|
|
tWordBreak(name.length < 300 ? name : name.slice(0, 300) + '...');
|
|
|
|
// screenshot
|
|
|
|
const auto = URLS.uso + `auto_style_screenshots/${id}${USO_AUTO_PIC_SUFFIX}`;
|
|
|
|
Object.assign($('.search-result-screenshot', entry), {
|
|
|
|
src: shotName && !shotName.endsWith(USO_AUTO_PIC_SUFFIX)
|
|
|
|
? `${shotArchived ? URLS.usoArchiveRaw : URLS.uso + 'style_'}screenshots/${shotName}`
|
|
|
|
: auto,
|
|
|
|
_src: auto,
|
|
|
|
onerror: fixScreenshot,
|
2017-12-11 02:20:59 +00:00
|
|
|
});
|
2020-10-04 05:30:02 +00:00
|
|
|
// author
|
2017-12-11 10:03:03 +00:00
|
|
|
Object.assign($('[data-type="author"] a', entry), {
|
2020-10-04 05:30:02 +00:00
|
|
|
textContent: author,
|
|
|
|
title: author,
|
|
|
|
href: URLS.usoArchive + '?author=' + encodeURIComponent(author).replace(/%20/g, '+'),
|
2017-12-11 10:03:03 +00:00
|
|
|
onclick: handleEvent.openURLandHide,
|
2017-12-11 02:20:59 +00:00
|
|
|
});
|
2020-10-04 05:30:02 +00:00
|
|
|
// rating
|
|
|
|
$('[data-type="rating"]', entry).dataset.class =
|
|
|
|
!rating ? 'none' :
|
|
|
|
rating >= 2.5 ? 'good' :
|
|
|
|
rating >= 1.5 ? 'okay' :
|
|
|
|
'bad';
|
|
|
|
$('[data-type="rating"] dd', entry).textContent = rating && rating.toFixed(1) || '';
|
|
|
|
// time
|
2017-12-11 10:03:03 +00:00
|
|
|
Object.assign($('[data-type="updated"] time', entry), {
|
2020-10-04 05:30:02 +00:00
|
|
|
dateTime: updateTime * 1000,
|
|
|
|
textContent: formatDate(updateTime * 1000)
|
2017-12-11 04:35:23 +00:00
|
|
|
});
|
2020-10-04 05:30:02 +00:00
|
|
|
// totals
|
|
|
|
$('[data-type="weekly"] dd', entry).textContent = formatNumber(weeklyInstalls);
|
|
|
|
$('[data-type="total"] dd', entry).textContent = formatNumber(totalInstalls);
|
2017-12-11 02:20:59 +00:00
|
|
|
renderActionButtons(entry);
|
|
|
|
return entry;
|
|
|
|
}
|
2017-12-10 01:03:04 +00:00
|
|
|
|
2017-12-11 10:03:03 +00:00
|
|
|
function formatNumber(num) {
|
|
|
|
return (
|
|
|
|
num > 1e9 ? (num / 1e9).toFixed(1) + 'B' :
|
|
|
|
num > 10e6 ? (num / 1e6).toFixed(0) + 'M' :
|
|
|
|
num > 1e6 ? (num / 1e6).toFixed(1) + 'M' :
|
|
|
|
num > 10e3 ? (num / 1e3).toFixed(0) + 'k' :
|
|
|
|
num > 1e3 ? (num / 1e3).toFixed(1) + 'k' :
|
|
|
|
num
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
function fixScreenshot() {
|
|
|
|
const {_src} = this;
|
|
|
|
if (_src && _src !== this.src) {
|
|
|
|
this.src = _src;
|
|
|
|
delete this._src;
|
|
|
|
} else {
|
|
|
|
this.src = BLANK_PIXEL;
|
|
|
|
this.onerror = null;
|
2017-12-13 21:49:11 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
}
|
2017-12-11 19:26:33 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
function renderActionButtons(entry, installedId) {
|
|
|
|
if (Number(entry)) {
|
|
|
|
entry = $('#' + RESULT_ID_PREFIX + entry);
|
|
|
|
}
|
|
|
|
if (!entry) return;
|
|
|
|
const result = entry._result;
|
|
|
|
if (typeof installedId === 'number') {
|
|
|
|
result.installed = installedId > 0;
|
|
|
|
result.installedStyleId = installedId;
|
|
|
|
}
|
|
|
|
const isInstalled = result.installed;
|
|
|
|
if (isInstalled && !('installed' in entry.dataset)) {
|
2017-12-11 19:26:33 +00:00
|
|
|
entry.dataset.installed = '';
|
2017-12-19 02:30:40 +00:00
|
|
|
$('.search-result-status', entry).textContent = t('clickToUninstall');
|
2020-10-04 05:30:02 +00:00
|
|
|
} else if (!isInstalled && 'installed' in entry.dataset) {
|
2017-12-11 19:26:33 +00:00
|
|
|
delete entry.dataset.installed;
|
|
|
|
$('.search-result-status', entry).textContent = '';
|
2020-10-04 05:30:02 +00:00
|
|
|
hide('.search-result-customize', entry);
|
2017-12-11 19:26:33 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
Object.assign($('.search-result-screenshot', entry), {
|
|
|
|
onclick: isInstalled ? uninstall : install,
|
|
|
|
title: isInstalled ? '' : t('installButton'),
|
|
|
|
});
|
|
|
|
$('.search-result-uninstall', entry).onclick = uninstall;
|
|
|
|
$('.search-result-install', entry).onclick = install;
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
function renderFullInfo(entry, style) {
|
|
|
|
let {description, vars} = style.usercssData;
|
|
|
|
// description
|
|
|
|
description = (description || '')
|
|
|
|
.replace(/<[^>]*>/g, ' ')
|
|
|
|
.replace(/([^.][.。?!]|[\s,].{50,70})\s+/g, '$1\n')
|
|
|
|
.replace(/([\r\n]\s*){3,}/g, '\n\n');
|
|
|
|
Object.assign($('.search-result-description', entry), {
|
|
|
|
textContent: description,
|
|
|
|
title: description,
|
|
|
|
});
|
|
|
|
// config button
|
|
|
|
if (vars) {
|
|
|
|
const btn = $('.search-result-customize', entry);
|
|
|
|
btn.onclick = () => $('.configure', $.entry(style)).click();
|
|
|
|
show(btn);
|
|
|
|
}
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
2017-12-09 21:03:17 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
async function install() {
|
2017-12-11 02:20:59 +00:00
|
|
|
const entry = this.closest('.search-result');
|
2020-10-04 05:30:02 +00:00
|
|
|
const result = /** @type IndexEntry */ entry._result;
|
|
|
|
const {i: id} = result;
|
2017-12-11 02:20:59 +00:00
|
|
|
const installButton = $('.search-result-install', entry);
|
|
|
|
|
|
|
|
showSpinner(entry);
|
2017-12-13 22:13:16 +00:00
|
|
|
saveScrollPosition(entry);
|
2017-12-11 02:20:59 +00:00
|
|
|
installButton.disabled = true;
|
2017-12-11 04:35:23 +00:00
|
|
|
entry.style.setProperty('pointer-events', 'none', 'important');
|
2020-10-04 05:30:02 +00:00
|
|
|
// FIXME: move this to background page and create an API like installUSOStyle
|
|
|
|
result.pingbackTimer = setTimeout(download, PINGBACK_DELAY,
|
|
|
|
`${URLS.uso}/styles/install/${id}?source=stylish-ch`);
|
2017-12-11 02:20:59 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
const updateUrl = `${URLS.usoArchiveRaw}usercss/${id}.user.css`;
|
|
|
|
try {
|
|
|
|
const sourceCode = await download(updateUrl);
|
|
|
|
const style = await API.installUsercss({sourceCode, updateUrl});
|
|
|
|
renderFullInfo(entry, style);
|
|
|
|
} catch (reason) {
|
|
|
|
error(`Error while downloading usoID:${id}\nReason: ${reason}`);
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
$.remove('.lds-spinner', entry);
|
|
|
|
installButton.disabled = false;
|
|
|
|
entry.style.pointerEvents = '';
|
2017-12-09 21:03:17 +00:00
|
|
|
}
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
function uninstall() {
|
|
|
|
const entry = this.closest('.search-result');
|
|
|
|
saveScrollPosition(entry);
|
|
|
|
API.deleteStyle(entry._result.installedStyleId);
|
2017-12-13 22:46:32 +00:00
|
|
|
}
|
|
|
|
|
2017-12-13 22:13:16 +00:00
|
|
|
function saveScrollPosition(entry) {
|
2020-10-04 05:30:02 +00:00
|
|
|
dom.scrollPos = entry.getBoundingClientRect().top;
|
|
|
|
dom.scrollPosElement = entry;
|
2017-12-13 22:13:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function restoreScrollPosition() {
|
2020-10-04 05:30:02 +00:00
|
|
|
window.scrollBy(0, dom.scrollPosElement.getBoundingClientRect().top - dom.scrollPos);
|
2017-12-13 22:13:16 +00:00
|
|
|
}
|
|
|
|
|
2017-12-09 21:03:17 +00:00
|
|
|
/**
|
|
|
|
* Resolves the Userstyles.org "category" for a given URL.
|
2020-10-04 05:30:02 +00:00
|
|
|
* @returns {boolean} true if the category has actually changed
|
2017-12-09 21:03:17 +00:00
|
|
|
*/
|
2020-10-04 05:30:02 +00:00
|
|
|
function calcCategory({retry} = {}) {
|
2017-12-11 02:20:59 +00:00
|
|
|
const u = tryCatch(() => new URL(tabURL));
|
2020-10-04 05:30:02 +00:00
|
|
|
const old = category;
|
2017-12-09 21:03:17 +00:00
|
|
|
if (!u) {
|
2017-12-11 02:20:59 +00:00
|
|
|
// Invalid URL
|
2020-10-04 05:30:02 +00:00
|
|
|
category = '';
|
2017-12-09 21:03:17 +00:00
|
|
|
} else if (u.protocol === 'file:') {
|
2020-10-04 05:30:02 +00:00
|
|
|
category = 'file:';
|
2017-12-09 21:03:17 +00:00
|
|
|
} else if (u.protocol === location.protocol) {
|
2020-10-04 05:30:02 +00:00
|
|
|
category = STYLUS_CATEGORY;
|
2017-12-09 21:03:17 +00:00
|
|
|
} else {
|
2020-01-28 02:36:43 +00:00
|
|
|
const parts = u.hostname.replace(/\.(?:com?|org)(\.\w{2,3})$/, '$1').split('.');
|
|
|
|
const [tld, main = u.hostname, third, fourth] = parts.reverse();
|
2020-10-04 05:30:02 +00:00
|
|
|
const keepTld = retry !== 1 && !(
|
2020-01-28 02:36:43 +00:00
|
|
|
tld === 'com' ||
|
|
|
|
tld === 'org' && main !== 'userstyles'
|
|
|
|
);
|
|
|
|
const keepThird = !retry && (
|
|
|
|
fourth ||
|
|
|
|
third && third !== 'www' && third !== 'm'
|
|
|
|
);
|
2020-10-04 05:30:02 +00:00
|
|
|
category = (keepThird && `${third}.` || '') + main + (keepTld || keepThird ? `.${tld}` : '');
|
2017-12-12 14:35:38 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
return category !== old;
|
2017-12-10 07:08:39 +00:00
|
|
|
}
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
async function fetchIndex() {
|
|
|
|
const timer = setTimeout(showSpinner, BUSY_DELAY, dom.list);
|
|
|
|
index = await download(INDEX_URL, {responseType: 'json'});
|
|
|
|
clearTimeout(timer);
|
|
|
|
$.remove(':scope > .lds-spinner', dom.list);
|
|
|
|
return index;
|
2017-12-10 07:08:39 +00:00
|
|
|
}
|
2017-12-11 02:20:59 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
async function search({retry} = {}) {
|
|
|
|
return retry && !calcCategory({retry})
|
|
|
|
? []
|
|
|
|
: (index || await fetchIndex()).filter(isResultMatching).sort(comparator);
|
2017-12-11 02:20:59 +00:00
|
|
|
}
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
function isResultMatching(res) {
|
|
|
|
return (
|
|
|
|
res.f === 'uso' &&
|
|
|
|
res.c === category && (
|
|
|
|
category === STYLUS_CATEGORY
|
|
|
|
? /\bStylus\b/.test(res.n)
|
|
|
|
: !query.length || query.every(isInHaystack, calcHaystack(res))
|
|
|
|
)
|
|
|
|
);
|
2018-12-10 13:14:43 +00:00
|
|
|
}
|
2018-07-04 12:03:54 +00:00
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
/** @this {IndexEntry} haystack */
|
|
|
|
function isInHaystack(needle) {
|
|
|
|
return needle === this._year || this._nLC.includes(needle);
|
2018-12-10 13:14:43 +00:00
|
|
|
}
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
/**
|
|
|
|
* @param {IndexEntry} a
|
|
|
|
* @param {IndexEntry} b
|
|
|
|
*/
|
|
|
|
function comparator(a, b) {
|
|
|
|
return (
|
|
|
|
order === 'n'
|
|
|
|
? a.n < b.n ? -1 : a.n > b.n
|
|
|
|
: b[order] - a[order]
|
|
|
|
) || b.t - a.t;
|
2018-12-10 13:14:43 +00:00
|
|
|
}
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
function calcUsoId({md5Url: m, updateUrl}) {
|
|
|
|
return parseInt(m && m.match(/\d+|$/)[0]) ||
|
|
|
|
URLS.extractUsoArchiveId(updateUrl);
|
2018-12-10 13:14:43 +00:00
|
|
|
}
|
|
|
|
|
2020-10-04 05:30:02 +00:00
|
|
|
function calcHaystack(res) {
|
|
|
|
if (!res._nLC) res._nLC = res.n.toLocaleLowerCase();
|
|
|
|
if (!res._year) res._year = new Date(res.u * 1000).getFullYear();
|
|
|
|
return res;
|
2018-07-04 12:03:54 +00:00
|
|
|
}
|
2020-10-04 05:30:02 +00:00
|
|
|
}, {once: true});
|