
diff --git a/public/themes/default.css b/public/themes/default.css index 84789e919..33c1af4aa 100644 --- a/public/themes/default.css +++ b/public/themes/default.css @@ -44,6 +44,10 @@ --floating-logo-width: 40px; --floating-logo-height: var(--screentabs-height); + /* right sidebar triggers */ + --floating-right-sidebar-triggers-width-darwin: 50px; + --floating-right-sidebar-triggers-width: 40px; + /* global colors */ --app-bg-color: black; --app-accent-color: rgb(88, 193, 66); diff --git a/src/app/app.less b/src/app/app.less index 71d22ecc5..929b3294c 100644 --- a/src/app/app.less +++ b/src/app/app.less @@ -302,6 +302,25 @@ a.a-block { } } +.right-sidebar-triggers { + position: absolute; + z-index: 25; + right: 0px; + display: flex; + flex-direction: row; + align-items: center; + pointer-events: none; + height: 38px; + padding: 0 5px; + + .right-sidebar-trigger { + cursor: pointer; + user-select: none; + -webkit-app-region: no-drag; + pointer-events: all; + } +} + .copied-indicator { position: absolute; top: 0; diff --git a/src/app/app.tsx b/src/app/app.tsx index de6910e6e..a5745c9d0 100644 --- a/src/app/app.tsx +++ b/src/app/app.tsx @@ -16,10 +16,12 @@ import { BookmarksView } from "./bookmarks/bookmarks"; import { HistoryView } from "./history/history"; import { ConnectionsView } from "./connections/connections"; import { ClientSettingsView } from "./clientsettings/clientsettings"; -import { MainSideBar } from "./sidebar/sidebar"; -import { DisconnectedModal, ClientStopModal } from "./common/modals"; -import { ModalsProvider } from "./common/modals/provider"; -import { ErrorBoundary } from "./common/error/errorboundary"; +import { MainSideBar } from "./sidebar/main"; +import { RightSideBar } from "./sidebar/right"; +import { DisconnectedModal, ClientStopModal } from "@/modals"; +import { ModalsProvider } from "@/modals/provider"; +import { Button } from "@/elements"; +import { ErrorBoundary } from "@/common/error/errorboundary"; import cn from "classnames"; import "./app.less"; @@ -65,9 +67,17 @@ class App extends React.Component<{}, {}> { } @boundMethod - openSidebar() { - const width = GlobalModel.mainSidebarModel.getWidth(true); - GlobalCommandRunner.clientSetSidebar(width, false); + openMainSidebar() { + const mainSidebarModel = GlobalModel.mainSidebarModel; + const width = mainSidebarModel.getWidth(true); + mainSidebarModel.saveState(width, false); + } + + @boundMethod + openRightSidebar() { + const rightSidebarModel = GlobalModel.rightSidebarModel; + const width = rightSidebarModel.getWidth(true); + rightSidebarModel.saveState(width, false); } render() { @@ -110,23 +120,36 @@ class App extends React.Component<{}, {}> { } // used to force a full reload of the application const renderVersion = GlobalModel.renderVersion.get(); - const sidebarCollapsed = GlobalModel.mainSidebarModel.getCollapsed(); + const mainSidebarCollapsed = GlobalModel.mainSidebarModel.getCollapsed(); + const rightSidebarCollapsed = GlobalModel.rightSidebarModel.getCollapsed(); + const activeMainView = GlobalModel.activeMainView.get(); const lightDarkClass = GlobalModel.isThemeDark() ? "is-dark" : "is-light"; return (