stylus/manage/import-export.js

362 lines
12 KiB
JavaScript
Raw Normal View History

2018-01-03 15:26:31 +00:00
/* global messageBox handleUpdate handleDelete applyOnMessage styleSectionsEqual */
2017-07-12 18:17:04 +00:00
'use strict';
const STYLISH_DUMP_FILE_EXT = '.txt';
const STYLUS_BACKUP_FILE_EXT = '.json';
function importFromFile({fileTypeFilter, file} = {}) {
return new Promise(resolve => {
const fileInput = document.createElement('input');
if (file) {
readFile();
return;
}
fileInput.style.display = 'none';
fileInput.type = 'file';
fileInput.accept = fileTypeFilter || STYLISH_DUMP_FILE_EXT;
fileInput.acceptCharset = 'utf-8';
document.body.appendChild(fileInput);
fileInput.initialValue = fileInput.value;
fileInput.onchange = readFile;
fileInput.click();
function readFile() {
if (file || fileInput.value !== fileInput.initialValue) {
file = file || fileInput.files[0];
if (file.size > 100e6) {
console.warn("100MB backup? I don't believe you.");
importFromString('').then(resolve);
return;
}
document.body.style.cursor = 'wait';
const fReader = new FileReader();
fReader.onloadend = event => {
fileInput.remove();
const text = event.target.result;
const maybeUsercss = !/^[\s\r\n]*\[/.test(text) &&
(text.includes('==UserStyle==') || /==UserStyle==/i.test(text));
(!maybeUsercss ?
importFromString(text) :
getOwnTab().then(tab => {
tab.url = URL.createObjectURL(new Blob([text], {type: 'text/css'}));
2018-01-03 15:26:31 +00:00
return API.installUsercss({direct: true, tab})
.then(() => URL.revokeObjectURL(tab.url));
})
).then(numStyles => {
2017-07-12 18:17:04 +00:00
document.body.style.cursor = '';
resolve(numStyles);
});
};
fReader.readAsText(file, 'utf-8');
}
}
});
}
2018-01-01 17:02:49 +00:00
function importFromString(jsonString, oldStyles) {
if (!oldStyles) {
2018-01-03 15:26:31 +00:00
return API.getStyles().then(styles => importFromString(jsonString, styles));
2017-07-12 18:17:04 +00:00
}
2018-01-01 17:02:49 +00:00
const json = tryJSONparse(jsonString) || [];
2017-07-16 18:02:00 +00:00
if (typeof json.slice !== 'function') {
2017-07-12 18:17:04 +00:00
json.length = 0;
}
2018-01-01 17:02:49 +00:00
const oldStylesById = new Map(
oldStyles.map(style => [style.id, style]));
2017-07-12 18:17:04 +00:00
const oldStylesByName = json.length && new Map(
oldStyles.map(style => [style.name.trim(), style]));
const stats = {
added: {names: [], ids: [], legend: 'importReportLegendAdded'},
unchanged: {names: [], ids: [], legend: 'importReportLegendIdentical'},
metaAndCode: {names: [], ids: [], legend: 'importReportLegendUpdatedBoth'},
metaOnly: {names: [], ids: [], legend: 'importReportLegendUpdatedMeta'},
codeOnly: {names: [], ids: [], legend: 'importReportLegendUpdatedCode'},
invalid: {names: [], legend: 'importReportLegendInvalid'},
};
let index = 0;
let lastRenderTime = performance.now();
const renderQueue = [];
const RENDER_NAP_TIME_MAX = 1000; // ms
const RENDER_QUEUE_MAX = 50; // number of styles
const SAVE_OPTIONS = {reason: 'import', notify: false};
return new Promise(proceed);
function proceed(resolve) {
while (index < json.length) {
const item = json[index++];
const info = analyze(item);
if (info) {
// using saveStyle directly since json was parsed in background page context
2018-01-01 17:02:49 +00:00
return API.saveStyle(Object.assign(item, SAVE_OPTIONS))
2017-07-12 18:17:04 +00:00
.then(style => account({style, info, resolve}));
}
}
renderQueue.forEach(style => handleUpdate(style, {reason: 'import'}));
renderQueue.length = 0;
done(resolve);
}
function analyze(item) {
2018-01-03 15:26:31 +00:00
if (typeof item !== 'object' ||
!item ||
!item.name ||
!item.name.trim() ||
(item.sections && !Array.isArray(item.sections))) {
2017-07-12 18:17:04 +00:00
stats.invalid.names.push(`#${index}: ${limitString(item && item.name || '')}`);
return;
}
item.name = item.name.trim();
2018-01-01 17:02:49 +00:00
const byId = oldStylesById.get(item.id);
2017-07-12 18:17:04 +00:00
const byName = oldStylesByName.get(item.name);
oldStylesByName.delete(item.name);
let oldStyle;
if (byId) {
if (sameStyle(byId, item)) {
oldStyle = byId;
} else {
item.id = null;
}
}
if (!oldStyle && byName) {
item.id = byName.id;
oldStyle = byName;
}
const oldStyleKeys = oldStyle && Object.keys(oldStyle);
const metaEqual = oldStyleKeys &&
2017-07-16 18:02:00 +00:00
oldStyleKeys.length === Object.keys(item).length &&
oldStyleKeys.every(k => k === 'sections' || oldStyle[k] === item[k]);
2018-01-01 17:02:49 +00:00
const codeEqual = oldStyle && styleSectionsEqual(oldStyle, item);
2017-07-12 18:17:04 +00:00
if (metaEqual && codeEqual) {
stats.unchanged.names.push(oldStyle.name);
stats.unchanged.ids.push(oldStyle.id);
return;
}
return {oldStyle, metaEqual, codeEqual};
}
function sameStyle(oldStyle, newStyle) {
return oldStyle.name.trim() === newStyle.name.trim() ||
['updateUrl', 'originalMd5', 'originalDigest']
2017-07-16 18:02:00 +00:00
.some(field => oldStyle[field] && oldStyle[field] === newStyle[field]);
2017-07-12 18:17:04 +00:00
}
function account({style, info, resolve}) {
renderQueue.push(style);
if (performance.now() - lastRenderTime > RENDER_NAP_TIME_MAX
|| renderQueue.length > RENDER_QUEUE_MAX) {
renderQueue.forEach(style => handleUpdate(style, {reason: 'import'}));
setTimeout(scrollElementIntoView, 0, $('#style-' + renderQueue.pop().id));
renderQueue.length = 0;
lastRenderTime = performance.now();
}
setTimeout(proceed, 0, resolve);
const {oldStyle, metaEqual, codeEqual} = info;
if (!oldStyle) {
stats.added.names.push(style.name);
stats.added.ids.push(style.id);
return;
}
if (!metaEqual && !codeEqual) {
stats.metaAndCode.names.push(reportNameChange(oldStyle, style));
stats.metaAndCode.ids.push(style.id);
return;
}
if (!codeEqual) {
stats.codeOnly.names.push(style.name);
stats.codeOnly.ids.push(style.id);
return;
}
stats.metaOnly.names.push(reportNameChange(oldStyle, style));
stats.metaOnly.ids.push(style.id);
}
function done(resolve) {
const numChanged = stats.metaAndCode.names.length +
stats.metaOnly.names.length +
stats.codeOnly.names.length +
stats.added.names.length;
2018-01-03 15:26:31 +00:00
Promise.resolve(numChanged && API.refreshAllTabs()).then(() => {
2017-07-12 18:17:04 +00:00
const report = Object.keys(stats)
.filter(kind => stats[kind].names.length)
.map(kind => {
const {ids, names, legend} = stats[kind];
const listItemsWithId = (name, i) =>
$create('div', {dataset: {id: ids[i]}}, name);
2017-07-12 18:17:04 +00:00
const listItems = name =>
$create('div', name);
2017-07-12 18:17:04 +00:00
const block =
$create('details', {dataset: {id: kind}}, [
$create('summary',
$create('b', names.length + ' ' + t(legend))),
$create('small',
names.map(ids ? listItemsWithId : listItems)),
]);
2017-07-12 18:17:04 +00:00
return block;
});
scrollTo(0, 0);
messageBox({
title: t('importReportTitle'),
contents: report.length ? report : t('importReportUnchanged'),
buttons: [t('confirmOK'), numChanged && t('undo')],
onshow: bindClick,
2017-07-16 19:40:13 +00:00
}).then(({button}) => {
2017-07-16 18:02:00 +00:00
if (button === 1) {
2017-07-12 18:17:04 +00:00
undo();
}
});
resolve(numChanged);
});
}
function undo() {
const newIds = [
...stats.metaAndCode.ids,
...stats.metaOnly.ids,
...stats.codeOnly.ids,
...stats.added.ids,
];
2018-01-03 15:26:31 +00:00
let tasks = Promise.resolve();
let tasksUI = Promise.resolve();
for (const id of newIds) {
tasks = tasks.then(() => API.deleteStyle({id, notify: false}));
tasksUI = tasksUI.then(() => handleDelete(id));
const oldStyle = oldStylesById.get(id);
if (oldStyle) {
Object.assign(oldStyle, SAVE_OPTIONS);
tasks = tasks.then(() => API.saveStyle(oldStyle));
tasksUI = tasksUI.then(() => handleUpdate(oldStyle, {reason: 'import'}));
}
}
// taskUI is superfast and updates style list only in this page,
// which should account for 99.99999999% of cases, supposedly
return tasks
.then(tasksUI)
.then(API.refreshAllTabs)
2017-07-12 18:17:04 +00:00
.then(() => messageBox({
title: t('importReportUndoneTitle'),
contents: newIds.length + ' ' + t('importReportUndone'),
buttons: [t('confirmOK')],
}));
}
2017-07-16 19:40:13 +00:00
function bindClick() {
2017-07-12 18:17:04 +00:00
const highlightElement = event => {
const styleElement = $('#style-' + event.target.dataset.id);
if (styleElement) {
scrollElementIntoView(styleElement);
animateElement(styleElement);
}
};
2017-12-11 05:44:41 +00:00
for (const block of $$('#message-box details')) {
2017-07-16 18:02:00 +00:00
if (block.dataset.id !== 'invalid') {
2017-07-12 18:17:04 +00:00
block.style.cursor = 'pointer';
block.onclick = highlightElement;
}
}
}
function limitString(s, limit = 100) {
return s.length <= limit ? s : s.substr(0, limit) + '...';
}
function reportNameChange(oldStyle, newStyle) {
2017-07-16 18:02:00 +00:00
return newStyle.name !== oldStyle.name
2017-07-12 18:17:04 +00:00
? oldStyle.name + ' —> ' + newStyle.name
: oldStyle.name;
}
}
$('#file-all-styles').onclick = () => {
2018-01-01 17:02:49 +00:00
API.getStyles().then(styles => {
2017-07-12 18:17:04 +00:00
const text = JSON.stringify(styles, null, '\t');
const blob = new Blob([text], {type: 'application/json'});
const url = URL.createObjectURL(blob);
let link = $create('a', {
href: url,
type: 'application/json',
download: generateFileName(),
});
// https://crbug.com/714373
if (!FIREFOX && !(CHROME > 3310 && CHROME < Infinity)) {
link.dispatchEvent(new MouseEvent('click'));
return doTimeout()
.then(() => URL.revokeObjectURL(url));
}
const iframe = document.body.appendChild($create('iframe', {
style: 'width: 0; height: 0; position: fixed; opacity: 0;'.replace(/;/g, '!important;'),
}));
return doTimeout()
.then(() => {
link = iframe.contentDocument.importNode(link, true);
iframe.contentDocument.body.appendChild(link);
})
.then(() => doTimeout())
2018-08-02 11:48:26 +00:00
.then(() => link.dispatchEvent(new MouseEvent('click')));
// we don't remove the iframe or the object URL because the browser may show
// a download dialog and we don't know how long it'll take until the user confirms it
// (some browsers like Vivaldi can't download if we revoke the URL)
});
function doTimeout(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
2017-07-12 18:17:04 +00:00
function generateFileName() {
const today = new Date();
const dd = ('0' + today.getDate()).substr(-2);
const mm = ('0' + (today.getMonth() + 1)).substr(-2);
const yyyy = today.getFullYear();
return `stylus-${yyyy}-${mm}-${dd}${STYLUS_BACKUP_FILE_EXT}`;
}
};
$('#unfile-all-styles').onclick = () => {
importFromFile({fileTypeFilter: STYLUS_BACKUP_FILE_EXT});
};
Object.assign(document.body, {
ondragover(event) {
const hasFiles = event.dataTransfer.types.includes('Files');
2017-07-16 18:02:00 +00:00
event.dataTransfer.dropEffect = hasFiles || event.target.type === 'search' ? 'copy' : 'none';
2017-07-12 18:17:04 +00:00
this.classList.toggle('dropzone', hasFiles);
if (hasFiles) {
event.preventDefault();
clearTimeout(this.fadeoutTimer);
this.classList.remove('fadeout');
}
},
2017-07-16 19:40:13 +00:00
ondragend() {
2017-07-12 18:17:04 +00:00
animateElement(this, {className: 'fadeout', removeExtraClasses: ['dropzone']}).then(() => {
this.style.animationDuration = '';
});
},
ondragleave(event) {
try {
// in Firefox event.target could be XUL browser and hence there is no permission to access it
if (event.target === this) {
this.ondragend();
}
} catch (e) {
this.ondragend();
}
},
ondrop(event) {
this.ondragend();
if (event.dataTransfer.files.length) {
event.preventDefault();
if ($('#only-updates input').checked) {
$('#only-updates input').click();
2017-07-12 18:17:04 +00:00
}
importFromFile({file: event.dataTransfer.files[0]});
}
},
});