import "./AppWindow.js" import "./AppMenu.js" import "./ProfileButton.js" import "./InputBox.js" import "./Sidebar.js" class Home extends Shadow { render() { ZStack(() => { img("_/icons/logo.svg", "3.5em") .position("fixed") .left("3em") .top("2em") .zIndex(3) // .onClick(() => { // window.navigateTo("/") // this.rerender() // }) div() .width(100, vw) .height(100, vh) .margin("0px") .backgroundImage("url('_/images/the_return.webp')") .backgroundSize("cover") .backgroundPosition("48% 65%") .backgroundRepeat("no-repeat") switch(window.location.pathname) { case "/": AppWindow() AppMenu() break case "/app/forum": AppWindow("Forum") AppMenu("Forum") break; case "/app/messages": AppWindow("Messages") AppMenu("Messages") break; case "/app/market": AppWindow("Market") AppMenu("Market") break; } ProfileButton() .zIndex(1) .cursor("default") .position("fixed") .top("5.5vh") .right("4.5vw") a("/signout", "Sign Out") .position("fixed") .top("3em") .right("2em") .background("transparent") .border("1px solid var(--tan)") .color("var(--tan)") .borderRadius(5, px) .onHover(function (hovering) { console.log('hovering', hovering, this) if(hovering) { this.style.background = "var(--tan)" this.style.color = "black" } else { this.style.background = "" this.style.color = "var(--tan)" } }) .onNavigate(function () { if(window.location.pathname === "/") { this.style.border = "1px solid var(--tan)" this.style.color = "var(--tan)" } else { this.style.border = "1px solid var(--accent)" this.style.color = "var(--accent)" } }) }) } } registerShadow(Home)