stylus/manage/config-dialog.js

209 lines
5.8 KiB
JavaScript
Raw Normal View History

2017-11-27 06:56:22 +00:00
/* global messageBox makeLink */
2017-09-05 20:26:01 +00:00
'use strict';
function configDialog(style) {
const varsHash = deepCopy(style.usercssData.vars) || {};
const varNames = Object.keys(varsHash);
const vars = varNames.map(name => varsHash[name]);
const elements = [];
2017-11-27 06:56:22 +00:00
const colorpicker = window.colorpicker();
2017-09-05 20:26:01 +00:00
buildConfigForm();
renderValues();
2017-09-05 20:26:01 +00:00
return messageBox({
title: `${style.name} v${style.usercssData.version}`,
2017-09-05 20:26:01 +00:00
className: 'config-dialog',
contents: [
$element({
className: 'config-heading',
appendChild: style.usercssData.supportURL && makeLink({
className: 'external-support',
href: style.usercssData.supportURL,
textContent: t('externalFeedback')
})
}),
$element({
className: 'config-body',
appendChild: elements
})
],
2017-09-05 20:26:01 +00:00
buttons: [
t('confirmSave'),
{
textContent: t('confirmDefault'),
onclick: useDefault
2017-09-05 20:26:01 +00:00
},
t('confirmCancel')
]
}).then(({button, esc}) => {
if (button !== 1) {
colorpicker.hide();
}
if (button > 0 || esc || !vars.length || !vars.some(va => va.dirty)) {
return;
}
style.reason = 'config';
const styleVars = style.usercssData.vars;
const bgStyle = BG.cachedStyles.byId.get(style.id);
const bgVars = bgStyle && (bgStyle.usercssData || {}).vars || {};
const invalid = [];
let numValid = 0;
for (const va of vars) {
const bgva = bgVars[va.name];
let error;
if (!bgva) {
error = `${va.name}: deleted`;
} else
if (bgva.type !== va.type) {
error = `${va.name}: type '${va.type}' != '${bgva.type}'`;
} else
if ((va.type === 'select' || va.type === 'dropdown') &&
2017-11-27 12:22:49 +00:00
va.value !== null && va.value !== undefined &&
bgva.options.every(o => o.name !== va.value)) {
error = `${va.name}: '${va.value}' not in the updated '${va.type}' list`;
} else if (!va.dirty) {
continue;
} else {
styleVars[va.name].value = va.value;
numValid++;
continue;
}
invalid.push(error);
delete styleVars[va.name];
}
if (invalid.length) {
messageBox.alert([
$element({textContent: t('usercssConfigIncomplete'), style: 'max-width: 34em'}),
$element({
tag: 'ol',
style: 'text-align: left; font-weight: bold;',
appendChild: invalid.map(s => $element({tag: 'li', textContent: s})),
}),
]);
2017-09-05 20:26:01 +00:00
}
return numValid && BG.usercssHelper.save(style);
2017-09-05 20:26:01 +00:00
});
function buildConfigForm() {
for (const va of vars) {
2017-09-05 20:26:01 +00:00
let appendChild;
2017-11-09 01:00:46 +00:00
switch (va.type) {
case 'color':
2017-11-27 06:56:22 +00:00
appendChild = [$element({
className: 'cm-colorview',
appendChild: va.inputColor = $element({
va,
className: 'color-swatch',
onclick: showColorpicker,
2017-11-27 06:56:22 +00:00
})
})];
2017-11-09 01:00:46 +00:00
break;
case 'checkbox':
va.input = $element({tag: 'input', type: 'checkbox'});
va.input.onchange = () => {
va.dirty = true;
va.value = String(Number(va.input.checked));
};
appendChild = [
$element({tag: 'span', className: 'onoffswitch', appendChild: [
va.input,
$element({tag: 'span'})
]})
];
break;
case 'select':
case 'dropdown':
case 'image':
// TODO: a image picker input?
va.input = $element({
tag: 'select',
appendChild: va.options.map(o => $element({
tag: 'option', value: o.name, textContent: o.label
}))
});
va.input.onchange = () => {
va.dirty = true;
va.value = va.input.value;
};
appendChild = [va.input];
break;
default:
va.input = $element({tag: 'input', type: 'text'});
va.input.oninput = () => {
va.dirty = true;
va.value = va.input.value;
};
appendChild = [va.input];
break;
2017-09-05 20:26:01 +00:00
}
elements.push($element({
2017-09-05 20:26:01 +00:00
tag: 'label',
className: `config-${va.type}`,
appendChild: [
$element({tag: 'span', appendChild: va.label}),
...appendChild,
],
2017-09-05 20:26:01 +00:00
}));
}
}
2017-09-05 20:26:01 +00:00
function renderValues() {
for (const va of vars) {
const useDefault = va.value === null || va.value === undefined;
const value = useDefault ? va.default : va.value;
if (va.type === 'color') {
va.inputColor.style.backgroundColor = value;
if (colorpicker.options.va === va) {
colorpicker.setColor(value);
2017-09-05 20:26:01 +00:00
}
} else if (va.type === 'checkbox') {
va.input.checked = Number(value);
} else {
va.input.value = value;
2017-09-05 20:26:01 +00:00
}
}
}
2017-09-05 20:26:01 +00:00
function useDefault() {
for (const va of vars) {
const hasValue = va.value !== null && va.value !== undefined;
va.dirty = hasValue && va.value !== va.default;
va.value = null;
2017-09-05 20:26:01 +00:00
}
renderValues();
}
2017-09-05 20:26:01 +00:00
function showColorpicker() {
window.removeEventListener('keydown', messageBox.listeners.key, true);
const box = $('#message-box-contents');
colorpicker.show({
va: this.va,
color: this.va.value || this.va.default,
top: this.getBoundingClientRect().bottom - 5,
left: box.getBoundingClientRect().left - 360,
hideDelay: 1e6,
guessBrightness: box,
callback: onColorChanged,
});
}
2017-09-05 20:26:01 +00:00
function onColorChanged(newColor) {
if (newColor) {
this.va.dirty = true;
this.va.value = newColor;
this.va.inputColor.style.backgroundColor = newColor;
2017-11-27 06:56:22 +00:00
}
debounce(restoreEscInDialog);
}
2017-11-27 06:56:22 +00:00
function restoreEscInDialog() {
if (!$('.colorpicker-popup') && messageBox.element) {
window.addEventListener('keydown', messageBox.listeners.key, true);
}
2017-09-05 20:26:01 +00:00
}
}