2022-01-14 12:44:48 +00:00
|
|
|
/* global $create messageBoxProxy */// dom.js
|
|
|
|
/* global API */// msg.js
|
|
|
|
/* global DraggableList */
|
|
|
|
/* global t */// localization.js
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/* exported InjectionOrder */
|
2022-02-19 21:59:08 +00:00
|
|
|
async function InjectionOrder(show, el, selector) {
|
2022-01-14 12:44:48 +00:00
|
|
|
if (!show) {
|
|
|
|
return messageBoxProxy.close();
|
|
|
|
}
|
2022-01-28 23:54:56 +00:00
|
|
|
const SEL_ENTRY = '.injection-order-entry';
|
|
|
|
const groups = await API.styles.getAllOrdered(['_id', 'id', 'name', 'enabled']);
|
|
|
|
const ols = {};
|
|
|
|
const parts = {};
|
|
|
|
const entry = $create('li' + SEL_ENTRY, [
|
|
|
|
parts.name = $create('a', {
|
|
|
|
target: '_blank',
|
|
|
|
draggable: false,
|
|
|
|
}),
|
|
|
|
$create('a.injection-order-toggle', {
|
|
|
|
tabIndex: 0,
|
|
|
|
draggable: false,
|
|
|
|
title: t('styleInjectionImportance'),
|
|
|
|
}),
|
|
|
|
]);
|
2022-01-14 12:44:48 +00:00
|
|
|
await messageBoxProxy.show({
|
|
|
|
title: t('styleInjectionOrder'),
|
2022-01-28 23:54:56 +00:00
|
|
|
contents: $create('fragment', Object.entries(groups).map(makeList)),
|
2022-02-19 21:59:08 +00:00
|
|
|
className: 'center-dialog ' + selector.slice(1),
|
2022-01-14 12:44:48 +00:00
|
|
|
blockScroll: true,
|
|
|
|
buttons: [t('confirmClose')],
|
|
|
|
});
|
|
|
|
|
2022-01-28 23:54:56 +00:00
|
|
|
function makeEntry(style) {
|
|
|
|
entry.classList.toggle('enabled', style.enabled);
|
|
|
|
parts.name.href = '/edit.html?id=' + style.id;
|
|
|
|
parts.name.textContent = style.name;
|
|
|
|
return Object.assign(entry.cloneNode(true), {
|
2022-09-04 13:59:19 +00:00
|
|
|
styleNameLC: style.name.toLocaleLowerCase(),
|
2022-01-28 23:54:56 +00:00
|
|
|
});
|
2022-01-14 12:44:48 +00:00
|
|
|
}
|
|
|
|
|
2022-01-28 23:54:56 +00:00
|
|
|
function makeList([type, styles]) {
|
|
|
|
const ids = groups[type] = styles.map(s => s._id);
|
|
|
|
const ol = ols[type] = $create('ol.scroller');
|
|
|
|
let maxTranslateY;
|
|
|
|
ol.append(...styles.map(makeEntry));
|
|
|
|
ol.on('d:dragstart', ({detail: d}) => {
|
|
|
|
d.origin.dataTransfer.setDragImage(new Image(), 0, 0);
|
|
|
|
maxTranslateY =
|
|
|
|
ol.scrollHeight + ol.offsetTop - d.dragTarget.offsetHeight - d.dragTarget.offsetTop;
|
|
|
|
});
|
|
|
|
ol.on('d:dragmove', ({detail: d}) => {
|
|
|
|
d.origin.stopPropagation(); // preserves dropEffect
|
|
|
|
d.origin.dataTransfer.dropEffect = 'move';
|
|
|
|
const y = Math.min(d.currentPos.y - d.startPos.y, maxTranslateY);
|
|
|
|
d.dragTarget.style.transform = `translateY(${y}px)`;
|
|
|
|
});
|
|
|
|
ol.on('d:dragend', ({detail: d}) => {
|
|
|
|
const [item] = ids.splice(d.originalIndex, 1);
|
|
|
|
ids.splice(d.spliceIndex, 0, item);
|
|
|
|
ol.insertBefore(d.dragTarget, d.insertBefore);
|
|
|
|
API.styles.setOrder(groups);
|
|
|
|
});
|
|
|
|
ol.on('click', e => {
|
|
|
|
if (e.target.closest('.injection-order-toggle')) {
|
|
|
|
const el = e.target.closest(SEL_ENTRY);
|
|
|
|
const i = [].indexOf.call(el.parentNode.children, el);
|
|
|
|
const [item] = ids.splice(i, 1);
|
|
|
|
const type2 = type === 'main' ? 'prio' : 'main';
|
|
|
|
groups[type2].push(item);
|
|
|
|
ols[type2].appendChild(el);
|
|
|
|
API.styles.setOrder(groups);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
DraggableList(ol, {scrollContainer: ol});
|
|
|
|
return $create('section', {dataset: {[type]: ''}}, [
|
|
|
|
$create('header', t(`styleInjectionOrderHint${type === 'main' ? '' : '_' + type}`)),
|
|
|
|
ol,
|
|
|
|
]);
|
2022-01-14 12:44:48 +00:00
|
|
|
}
|
|
|
|
}
|