js
(() => {
const currGutterHideAfterClick = true;
document.addEventListener('mousedown', function(event) {
if(!event.altKey || event.button !== 0) return;
const hArrow = event.target.closest('.protyle-gutters:has(button[data-type="NodeHeading"]) button[data-type="fold"]');
if(!hArrow) return;
const hButton = hArrow.parentElement.querySelector('button[data-type="NodeHeading"]');
if(!hButton) return;
const currHeadId = hButton.dataset?.nodeId;
const currHead = document.querySelector(`div[data-node-id="${currHeadId}"]`);
const hType = currHead?.dataset?.subtype;
const isFold = !!currHead?.getAttribute('fold');
const isSelected = currHead.classList.contains('protyle-wysiwyg--select');
const selectedSelector = isSelected ? '.protyle-wysiwyg--select' : '';
const protyle = getProtyleByMouseAt(event);
if(isHasCtrlKey(event) && event.altKey && !event.shiftKey) {
const heads = protyle.querySelectorAll(`.protyle-wysiwyg [data-type="NodeHeading"]${selectedSelector}`);
foldHeads(heads, isFold);
hideGutterAfterClick(hButton, hArrow);
} else if(event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) {
const heads = protyle.querySelectorAll(`.protyle-wysiwyg [data-type="NodeHeading"][data-subtype="${hType}"]${selectedSelector}`);
foldHeads(heads, isFold);
hideGutterAfterClick(hButton, hArrow);
}
});
function foldHeads(heads, isFold) {
heads.forEach(head => {
const headId = head.dataset?.nodeId;
if(!headId) return;
const willFoldState = !isFold;
const isHeadFold = !!head.getAttribute('fold');
if(isHeadFold === willFoldState) return;
foldBlock(headId, willFoldState);
});
}
async function foldBlock(id, isFold = true) {
const result = await fetchSyncPost('/api/block/' + (isFold ? 'foldBlock' : 'unfoldBlock'), {id: id});
if(!result || result.code !== 0) console.error(result);
}
function hideGutterAfterClick(hButton, hArrow) {
if(currGutterHideAfterClick) {
hButton.style.display = 'none';
hArrow.style.display = 'none';
} else {
const arrowSvg = hArrow.querySelector('svg');
if(!arrowSvg.style.transform || arrowSvg.style.transform === '') {
arrowSvg.style.transform = 'rotate(90deg)';
} else {
arrowSvg.style.transform = '';
}
}
}
function getProtyleByMouseAt(event) {
const mouseX = event.clientX;
const mouseY = event.clientY;
const element = document.elementFromPoint(mouseX, mouseY);
if(element) return element.closest('.protyle');
return null;
}
function isHasCtrlKey(event) {
if(isMac()) return event.metaKey;
return event.ctrlKey;
}
function isMac() {
return navigator.platform.indexOf("Mac") > -1;
}
async function fetchSyncPost(url, data, returnType = 'json') {
const init = {
method: "POST",
};
if (data) {
if (data instanceof FormData) {
init.body = data;
} else {
init.body = JSON.stringify(data);
}
}
try {
const res = await fetch(url, init);
const res2 = returnType === 'json' ? await res.json() : await res.text();
return res2;
} catch(e) {
console.log(e);
return returnType === 'json' ? {code:e.code||1, msg: e.message||"", data: null} : "";
}
}
})();