const MAIN_VIEW = document.getElementById("main-view"); const NAVBAR = document.getElementById("navbar"); const DESKTOP = document.getElementById("desktop"); let windowByNavItem = []; const WINDOW_RESIZE_AREA_WIDTH = 8; const DEFAULT_WINDOW = `
`; const MIN_WINDOW_HEIGHT = 40; const MIN_WINDOW_WIDTH = 80; let lastclick = null; let dragging_element = null; let dragging_start = [0,0]; let dragging_element_start = [0,0]; let dragging_resize_side = ""; let dragging_size_start = [0,0]; let wasLastHoveringNavbar = false; let window_counter = 0; function getParentIcon(element){ if(!MAIN_VIEW.contains(element)) return null; if(element.classList.contains("icon")) return element; if(element == MAIN_VIEW) return null; return getParentIcon(element.parentElement); } function getParentNavIcon(element){ if(!NAVBAR.contains(element)) return null; if(element.classList.contains("nav-item")) return element; if(element == NAVBAR) return null; return getParentNavIcon(element.parentElement); } function getParentWindow(element){ if(!MAIN_VIEW.contains(element)) return null; if(element.classList.contains("window")) return element; if(element == MAIN_VIEW) return null; return getParentWindow(element.parentElement); } function isOnWindowHead(element){ if(!MAIN_VIEW.contains(element)) return false; if(element.classList.contains("window-head")) return true; if(element == MAIN_VIEW) return false; return getParentWindow(element.parentElement); } function setActiveIcon(icon_element){ let icons = document.getElementsByClassName("icon active"); for(let i = 0; i < icons.length; i++){ icons[i].classList.remove("active"); } if(icon_element){ icon_element.classList.add("active"); } } function setWindowInFront(window_element){ //Appending the window breaks animations... so we have to do this :| let windows = Array.from(DESKTOP.getElementsByClassName("window")); for(let i = windows.length - 1; i >= 0; i--){ if(windows[i] == window_element) continue; DESKTOP.prepend(windows[i]); } } function setActiveWindow(window_element){ let windows = document.getElementsByClassName("window active"); for(let i = 0; i < windows.length; i++){ if(windows[i] == window_element) continue; windows[i].classList.remove("active"); } if(window_element){ if(window_element.parentElement.lastElementChild != window_element){ setWindowInFront(window_element); } if(window_element.classList.contains("minimized")){ toggleMinimizeWindow(window_element); } if(!window_element.classList.contains("active")){ window_element.classList.add("active"); } } updateNavbarWindowStates(); } function runIconAction(icon_element){ console.log(icon_element); let icon_action = icon_element.getAttribute("action"); eval(icon_action); } function getWindowResizeSide(x, y, windowElement){ let side = ""; if(windowElement.getAttribute("resizeable") != "true") return side; let window_rect = windowElement.getBoundingClientRect(); if(y < window_rect.top + WINDOW_RESIZE_AREA_WIDTH){ side += "n"; } else if(y > window_rect.bottom - WINDOW_RESIZE_AREA_WIDTH){ side += "s"; } if(x < window_rect.left + WINDOW_RESIZE_AREA_WIDTH){ side += "w"; } else if(x > window_rect.right - WINDOW_RESIZE_AREA_WIDTH){ side += "e"; } return side; } function closeWindow(windowElement){ windowElement.remove(); updateNavbar(); } function focusNextWindow(){ let windows = document.querySelectorAll(".window:not(.minimized)"); if(windows.length > 0){ setActiveWindow(windows[0]); } } function toggleMinimizeWindow(windowElement){ if(windowElement.classList.contains("minimized")){ windowElement.classList.remove("minimized"); return; } windowElement.classList.add("minimized"); updateNavbarWindowStates(); } function toggleMaximizeWindow(windowElement){ if(windowElement.classList.contains("maximized")){ windowElement.classList.remove("maximized"); return; } windowElement.classList.add("maximized"); setActiveWindow(windowElement); updateNavbarWindowStates(); } function getWindowName(windowElement){ let title_elem = windowElement.getElementsByClassName("window-title")[0]; if(title_elem){ return title_elem.innerText; } return ""; } function setWindowName(windowElement, name){ let title_elem = windowElement.getElementsByClassName("window-title")[0]; if(title_elem){ title_elem.innerText = name; } } function createWindow(windowName, width, height){ let template = document.createElement("template"); template.innerHTML = DEFAULT_WINDOW; let windowElement = template.content.firstElementChild; windowElement.setAttribute("windownum", window_counter); window_counter++; if(height){ windowElement.style.height = height + "px"; } if(width){ windowElement.style.width = width + "px"; } DESKTOP.appendChild(windowElement); setWindowName(windowElement, windowName); setActiveWindow(windowElement); updateNavbar(); return windowElement; } function createBrowserWindowTo(url, width, height){ let windowElement = createWindow("nek0BROWSER", width, height); let content = windowElement.getElementsByClassName('window-content')[0]; content.innerHTML = `