59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
/* global $ $$ dom */// dom.js
|
|
/* global debounce */// toolbox.js
|
|
/* global prefs */
|
|
'use strict';
|
|
|
|
(() => {
|
|
const HR = dom.headerResizer;
|
|
const el = $('#header-resizer');
|
|
let curW, offset, active;
|
|
prefs.subscribe(HR.prefId, (key, val) => {
|
|
if (!active && val !== curW) {
|
|
getCurWidth();
|
|
setWidth(val);
|
|
}
|
|
});
|
|
el.onmousedown = e => {
|
|
if (e.button) return;
|
|
getCurWidth();
|
|
offset = curW - e.clientX;
|
|
active = true;
|
|
document.body.classList.add('resizing-h');
|
|
document.on('mousemove', resize);
|
|
document.on('mouseup', resizeStop);
|
|
};
|
|
|
|
function getCurWidth() {
|
|
curW = parseFloat(document.documentElement.style.getPropertyValue('--header-width'))
|
|
|| $('#header').offsetWidth;
|
|
}
|
|
|
|
function resize({clientX: x}) {
|
|
if (setWidth(offset + x)) {
|
|
debounce(save, 250);
|
|
}
|
|
}
|
|
|
|
function resizeStop() {
|
|
document.off('mouseup', resizeStop);
|
|
document.off('mousemove', resize);
|
|
document.body.classList.remove('resizing-h');
|
|
active = false;
|
|
}
|
|
|
|
function save() {
|
|
prefs.set(HR.prefId, curW);
|
|
}
|
|
|
|
function setWidth(w) {
|
|
const delta = (w = HR.setDomProp(w)) - curW;
|
|
if (delta) {
|
|
curW = w;
|
|
for (const el of $$('.CodeMirror-linewidget[style*="width:"]')) {
|
|
el.style.width = parseFloat(el.style.width) - delta + 'px';
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
})();
|