js
const autoFocusTreeOnload = true;
whenElementExist('.layout__center').then(async element => {
await sleep(40);
observeTabChanged(element, (tab) => {
collapseAllBooksThenFocusCurrentBook(element, tab);
});
if(autoFocusTreeOnload) {
await sleep(40);
focusCurrentDocInTrees();
}
});
async function collapseAllBooksThenFocusCurrentBook(element, tab) {
let currNodeId = "";
await whenElementExist(()=>{
const content = element.querySelector('.layout-tab-container [data-id="'+tab.getAttribute("data-id")+'"]');
currNodeId = document.querySelector('.layout-tab-container [data-id="'+tab.getAttribute("data-id")+'"] .protyle-title')?.getAttribute("data-node-id") || "";
return content && content.getAttribute("data-loading") === "finished" && currNodeId;
});
let currBoxDataUrl = "";
if(currNodeId){
focusCurrentDocInTrees();
let currTreeItem = null;
await whenElementExist(()=>{
currTreeItem = document.querySelector("ul.b3-list[data-url] li[data-node-id='" + currNodeId + "']");
return currTreeItem;
});
if(currTreeItem) {
currBoxDataUrl = currTreeItem.closest('ul.b3-list[data-url]')?.getAttribute("data-url") || "";
if(currBoxDataUrl){
currTreeItemPath = currTreeItem.getAttribute("data-path");
const trees = document.querySelectorAll("ul.b3-list[data-url='" + currBoxDataUrl + "'] span.b3-list-item__toggle svg.b3-list-item__arrow--open");
trees.forEach(arrowBtn => {
const itemPath = arrowBtn.closest('li.b3-list-item')?.getAttribute("data-path")?.replace(/\.sy$/i, '');
if(currTreeItemPath.startsWith(itemPath)){
return;
}
if (arrowBtn.parentElement) {
arrowBtn.parentElement.click();
}
});
}
}
}
document.querySelectorAll("ul.b3-list[data-url]").forEach(async book => {
if(book.getAttribute("data-url") === currBoxDataUrl) {
return;
}
const bookArrowBtn = book.querySelector('li[data-type="navigation-root"] span.b3-list-item__toggle');
if (bookArrowBtn && bookArrowBtn.firstElementChild.classList.contains("b3-list-item__arrow--open")) {
bookArrowBtn.click();
}
});
}
async function focusCurrentDocInTrees() {
document.querySelector(".layout-tab-container .block__icons span[data-type=focus]")?.click();
await whenElementExist(()=>{
return document.querySelector('ul.b3-list[data-url] li[data-type="navigation-file"].b3-list-item--focus');
});
await sleep(40);
const dockFileTreeBtn = document.querySelector('#dockLeft span[data-type="file"]');
if(document.querySelector('#layouts .layout__dockl')?.style?.width === "0px"){
if(dockFileTreeBtn.classList.contains("dock__item--active")) {
dockFileTreeBtn.classList.remove("dock__item--active");
}
if(dockFileTreeBtn.classList.contains("dock__item--activefocus")) {
dockFileTreeBtn.classList.remove("dock__item--activefocus");
}
}
}
function observeTabChanged(parentNode, callback) {
const observerCallback = function(mutationsList, observer) {
for (let mutation of mutationsList) {
if (mutation.type === 'attributes' && mutation.attributeName === 'class') {
const element = mutation.target;
if (element.tagName.toLowerCase() === 'li' && element.getAttribute('data-type') === 'tab-header' && element.classList.contains('item--focus')) {
if(typeof callback === 'function') callback(element);
}
}
if (mutation.type === 'childList') {
mutation.addedNodes.forEach(node => {
if (node.nodeType === Node.ELEMENT_NODE && node.tagName.toLowerCase() === 'li') {
if (node.getAttribute('data-type') === 'tab-header' && node.classList.contains('item--focus')) {
if(typeof callback === 'function') callback(node);
}
}
});
}
}
};
const observer = new MutationObserver(observerCallback);
const config = { attributes: true, attributeFilter: ['class'], childList: true, subtree: true };
observer.observe(parentNode, config);
return function stopObserving() {
observer.disconnect();
};
}
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
function whenElementExist(selector) {
return new Promise(resolve => {
const checkForElement = () => {
let element = null;
if (typeof selector === 'function') {
element = selector();
} else {
element = document.querySelector(selector);
}
if (element) {
resolve(element);
} else {
requestAnimationFrame(checkForElement);
}
};
checkForElement();
});
}