stylus/install-usercss/install-usercss.js

320 lines
9.3 KiB
JavaScript
Raw Normal View History

2017-11-01 00:17:12 +00:00
/* global CodeMirror semverCompare makeLink closeCurrentTab runtimeSend */
2017-11-09 04:26:50 +00:00
/* global messageBox */
2017-09-24 03:39:04 +00:00
'use strict';
2017-10-29 17:22:10 +00:00
(() => {
2017-11-01 01:26:53 +00:00
const params = new URLSearchParams(location.search);
2017-09-25 12:01:50 +00:00
let liveReload = false;
let installed = false;
2017-09-24 03:39:04 +00:00
const port = chrome.tabs.connect(
2017-11-01 01:26:53 +00:00
Number(params.get('tabId')),
2017-09-24 03:39:04 +00:00
{name: 'usercss-install', frameId: 0}
);
port.postMessage({method: 'getSourceCode'});
port.onMessage.addListener(msg => {
switch (msg.method) {
case 'getSourceCodeResponse':
2017-09-24 08:54:21 +00:00
if (msg.error) {
messageBox.alert(msg.error);
2017-09-24 08:54:21 +00:00
} else {
initSourceCode(msg.sourceCode);
}
2017-09-24 03:39:04 +00:00
break;
2017-09-25 12:01:50 +00:00
case 'sourceCodeChanged':
if (msg.error) {
messageBox.alert(msg.error);
2017-09-25 12:01:50 +00:00
} else {
liveReloadUpdate(msg.sourceCode);
}
break;
2017-09-24 03:39:04 +00:00
}
});
2017-09-25 10:43:55 +00:00
port.onDisconnect.addListener(closeCurrentTab);
2017-09-24 03:39:04 +00:00
const cm = CodeMirror($('.main'), {readOnly: true});
2017-09-25 12:01:50 +00:00
let liveReloadPending = Promise.resolve();
window.addEventListener('resize', adjustCodeHeight);
2017-09-25 12:01:50 +00:00
function liveReloadUpdate(sourceCode) {
liveReloadPending = liveReloadPending.then(() => {
const scrollInfo = cm.getScrollInfo();
const cursor = cm.getCursor();
cm.setValue(sourceCode);
cm.setCursor(cursor);
cm.scrollTo(scrollInfo.left, scrollInfo.top);
return runtimeSend({
2017-10-07 10:14:49 +00:00
id: installed.id,
2017-09-25 12:01:50 +00:00
method: 'saveUsercss',
reason: 'update',
sourceCode
2017-11-09 05:00:08 +00:00
}).then(updateMeta)
.catch(showError);
2017-09-25 12:01:50 +00:00
});
}
function updateMeta(style, dup) {
const data = style.usercssData;
const dupData = dup && dup.usercssData;
const versionTest = dup && semverCompare(data.version, dupData.version);
// update editor
cm.setPreprocessor(data.preprocessor);
// update metas
document.title = `${installButtonLabel()} ${data.name}`;
$('.install').textContent = installButtonLabel();
$('.set-update-url').title = dup && dup.updateUrl && t('installUpdateFrom', dup.updateUrl) || '';
$('.meta-name').textContent = data.name;
$('.meta-version').textContent = data.version;
$('.meta-description').textContent = data.description;
if (data.author) {
$('.meta-author').parentNode.style.display = '';
$('.meta-author').textContent = '';
$('.meta-author').appendChild(makeAuthor(data.author));
} else {
$('.meta-author').parentNode.style.display = 'none';
}
2017-09-25 12:01:50 +00:00
$('.meta-license').parentNode.style.display = data.license ? '' : 'none';
$('.meta-license').textContent = data.license;
$('.applies-to').textContent = '';
getAppliesTo(style).forEach(pattern =>
$('.applies-to').appendChild($element({tag: 'li', textContent: pattern}))
);
$('.external-link').textContent = '';
const externalLink = makeExternalLink();
if (externalLink) {
$('.external-link').appendChild(externalLink);
}
$('.header').classList.add('meta-init');
$('.header').classList.remove('meta-init-error');
showError('');
requestAnimationFrame(adjustCodeHeight);
function makeAuthor(text) {
const match = text.match(/^(.+?)(?:\s+<(.+?)>)?(?:\s+\((.+?)\))$/);
if (!match) {
return document.createTextNode(text);
}
const [, name, email, url] = match;
const frag = document.createDocumentFragment();
if (email) {
2017-10-12 08:15:45 +00:00
frag.appendChild(makeLink(`mailto:${email}`, name));
} else {
frag.appendChild($element({
tag: 'span',
textContent: name
}));
}
if (url) {
2017-10-12 08:15:45 +00:00
frag.appendChild(makeLink(
url,
$element({
2017-11-09 00:01:45 +00:00
tag: 'svg#svg',
viewBox: '0 0 20 20',
class: 'icon',
appendChild: $element({
tag: 'svg#path',
d: 'M4,4h5v2H6v8h8v-3h2v5H4V4z M11,3h6v6l-2-2l-4,4L9,9l4-4L11,3z'
})
})
2017-10-12 08:15:45 +00:00
));
}
return frag;
}
2017-09-25 12:01:50 +00:00
function makeExternalLink() {
const urls = [];
if (data.homepageURL) {
urls.push([data.homepageURL, t('externalHomepage')]);
}
if (data.supportURL) {
urls.push([data.supportURL, t('externalSupport')]);
}
if (urls.length) {
return $element({appendChild: [
$element({tag: 'h3', textContent: t('externalLink')}),
$element({tag: 'ul', appendChild: urls.map(args =>
$element({tag: 'li', appendChild: makeLink(...args)})
)})
]});
}
}
function installButtonLabel() {
return t(
installed ? 'installButtonInstalled' :
!dup ? 'installButton' :
versionTest > 0 ? 'installButtonUpdate' : 'installButtonReinstall'
);
}
}
function showError(err) {
$('.warnings').textContent = '';
if (err) {
$('.warnings').appendChild(buildWarning(err));
}
$('.warnings').classList.toggle('visible', Boolean(err));
$('.container').classList.toggle('has-warnings', Boolean(err));
adjustCodeHeight();
2017-09-25 12:01:50 +00:00
}
2017-09-24 03:39:04 +00:00
function install(style) {
const request = Object.assign(style, {
method: 'saveUsercss',
reason: 'update'
});
return runtimeSend(request)
.then(result => {
2017-10-07 10:14:49 +00:00
installed = result;
2017-09-25 12:01:50 +00:00
2017-09-24 03:39:04 +00:00
$$('.warning')
.forEach(el => el.remove());
2017-09-24 08:54:21 +00:00
$('.install').disabled = true;
$('.install').classList.add('installed');
$('.set-update-url input[type=checkbox]').disabled = true;
$('.set-update-url').title = result.updateUrl ?
2017-09-24 03:39:04 +00:00
t('installUpdateFrom', result.updateUrl) : '';
2017-09-25 12:01:50 +00:00
updateMeta(result);
2017-10-08 16:44:09 +00:00
chrome.runtime.sendMessage({method: 'openEditor', id: result.id});
2017-10-06 08:29:06 +00:00
if (!liveReload) {
port.postMessage({method: 'closeTab'});
}
window.dispatchEvent(new CustomEvent('installed'));
2017-09-24 03:39:04 +00:00
})
.catch(err => {
messageBox.alert(chrome.i18n.getMessage('styleInstallFailed', String(err)));
2017-09-24 03:39:04 +00:00
});
}
function initSourceCode(sourceCode) {
cm.setValue(sourceCode);
cm.refresh();
2017-09-24 03:39:04 +00:00
runtimeSend({
method: 'buildUsercss',
sourceCode,
checkDup: true
}).then(init, onInitError);
2017-09-24 03:39:04 +00:00
}
function onInitError(err) {
$('.header').classList.add('meta-init-error');
showError(err);
2017-09-24 03:39:04 +00:00
}
function buildWarning(err) {
return $element({className: 'warning', appendChild: [
t('parseUsercssError'),
$element({tag: 'pre', textContent: String(err)})
]});
}
function init({style, dup}) {
const data = style.usercssData;
const dupData = dup && dup.usercssData;
const versionTest = dup && semverCompare(data.version, dupData.version);
2017-09-25 12:01:50 +00:00
updateMeta(style, dup);
2017-09-24 08:54:21 +00:00
// update UI
2017-09-24 03:39:04 +00:00
if (versionTest < 0) {
$('.actions').parentNode.insertBefore(
$element({className: 'warning', textContent: t('versionInvalidOlder')}),
$('.actions')
);
}
$('button.install').onclick = () => {
2017-11-09 04:26:50 +00:00
const message = dup ?
chrome.i18n.getMessage('styleInstallOverwrite', [
2017-09-24 03:39:04 +00:00
data.name, dupData.version, data.version
2017-11-09 04:26:50 +00:00
]) :
chrome.i18n.getMessage('styleInstall', [data.name]);
messageBox.confirm(message).then(result => {
2017-11-09 04:26:50 +00:00
if (result) {
return install(style);
2017-09-24 03:39:04 +00:00
}
2017-11-09 04:26:50 +00:00
});
2017-09-24 03:39:04 +00:00
};
2017-09-24 08:54:21 +00:00
// set updateUrl
2017-09-24 03:39:04 +00:00
const setUpdate = $('.set-update-url input[type=checkbox]');
2017-11-01 01:26:53 +00:00
const updateUrl = new URL(params.get('updateUrl'));
$('.set-update-url > span').textContent = t('installUpdateFromLabel');
2017-09-24 03:39:04 +00:00
if (dup && dup.updateUrl === updateUrl.href) {
setUpdate.checked = true;
// there is no way to "unset" updateUrl, you can only overwrite it.
setUpdate.disabled = true;
2017-10-11 13:45:17 +00:00
} else if (updateUrl.protocol !== 'file:') {
2017-09-24 03:39:04 +00:00
setUpdate.checked = true;
style.updateUrl = updateUrl.href;
}
setUpdate.onchange = e => {
if (e.target.checked) {
style.updateUrl = updateUrl.href;
} else {
delete style.updateUrl;
}
};
2017-09-25 12:01:50 +00:00
// live reload
const setLiveReload = $('.live-reload input[type=checkbox]');
if (updateUrl.protocol !== 'file:') {
setLiveReload.parentNode.remove();
2017-09-24 03:39:04 +00:00
} else {
2017-09-25 12:01:50 +00:00
setLiveReload.addEventListener('change', () => {
liveReload = setLiveReload.checked;
if (installed) {
const method = 'liveReload' + (liveReload ? 'Start' : 'Stop');
port.postMessage({method});
}
});
window.addEventListener('installed', () => {
if (liveReload) {
port.postMessage({method: 'liveReloadStart'});
}
2017-09-25 12:01:50 +00:00
});
2017-09-24 03:39:04 +00:00
}
}
function getAppliesTo(style) {
function *_gen() {
for (const section of style.sections) {
for (const type of ['urls', 'urlPrefixes', 'domains', 'regexps']) {
if (section[type]) {
yield *section[type];
}
}
}
}
const result = [..._gen()];
if (!result.length) {
result.push(chrome.i18n.getMessage('appliesToEverything'));
}
return result;
}
function adjustCodeHeight() {
// Chrome-only bug (apparently): it doesn't limit the scroller element height
const scroller = cm.display.scroller;
const prevWindowHeight = adjustCodeHeight.prevWindowHeight;
if (scroller.scrollHeight === scroller.clientHeight ||
prevWindowHeight && window.innerHeight !== prevWindowHeight) {
adjustCodeHeight.prevWindowHeight = window.innerHeight;
cm.setSize(null, $('.main').offsetHeight - $('.warnings').offsetHeight);
}
}
2017-09-24 03:39:04 +00:00
})();