elanthia-online / illthorn

Electron-based FE
18 stars 10 forks source link

Toggle Left HUD #201

Closed BryanSchuetz closed 1 year ago

BryanSchuetz commented 3 years ago

Going back to this #40 commit that added an option for a right-side-panel—It would be nice if we could also collapse the left panel (or the right—if we ever put anything over there) at times. Similar to how you can show/hide the sidebar in VSCode.

Something like:

// /ui/layout.js

  const LEFT_PANELS_ON_CLASS = "left-panels-off"

  const leftPanels = LayoutSettings.get("left-panels", true)
  if (!leftPanels) {
    window.app.classList.add(LEFT_PANELS_ON_CLASS)
  }

Works well enough—though it's not redrawing automatically (you have to refresh to see it collapse)—not sure if Chris had something planned for that or what. Point is—would be nice to easily collapse the HUD.