mirror of
https://github.com/usememos/memos.git
synced 2025-02-12 09:20:42 +01:00
chore: update collapse sidebar
This commit is contained in:
parent
b9cbe6626f
commit
4b223c1e4c
@ -1,7 +1,9 @@
|
||||
import { Button, IconButton, Tooltip } from "@mui/joy";
|
||||
import classNames from "classnames";
|
||||
import { Suspense } from "react";
|
||||
import { Outlet } from "react-router-dom";
|
||||
import useLocalStorage from "react-use/lib/useLocalStorage";
|
||||
import Icon from "@/components/Icon";
|
||||
import Navigation from "@/components/Navigation";
|
||||
import useResponsiveWidth from "@/hooks/useResponsiveWidth";
|
||||
import Loading from "@/pages/Loading";
|
||||
@ -21,12 +23,29 @@ function Root() {
|
||||
{sm && (
|
||||
<div
|
||||
className={classNames(
|
||||
"hidden sm:block fixed top-0 left-0 select-none border-r dark:border-zinc-800 h-full bg-zinc-50 dark:bg-zinc-800 dark:bg-opacity-40 transition-all hover:shadow-xl z-2",
|
||||
"group flex flex-col justify-start items-start fixed top-0 left-0 select-none border-r dark:border-zinc-800 h-full bg-zinc-50 dark:bg-zinc-800 dark:bg-opacity-40 transition-all hover:shadow-xl z-2",
|
||||
collapsed ? "w-16 px-2" : "w-56 px-4"
|
||||
)}
|
||||
onDoubleClick={() => setCollapsed(!collapsed)}
|
||||
>
|
||||
<Navigation collapsed={collapsed} />
|
||||
<Navigation className="!h-auto" collapsed={collapsed} />
|
||||
<div className={classNames("w-full grow h-auto flex flex-col justify-end", collapsed ? "items-center" : "items-start")}>
|
||||
<div
|
||||
className={classNames("hidden py-3 group-hover:flex flex-col justify-center items-center")}
|
||||
onClick={() => setCollapsed(!collapsed)}
|
||||
>
|
||||
{!collapsed ? (
|
||||
<Button variant="plain" color="neutral" startDecorator={<Icon.ChevronLeft className="w-5 h-auto opacity-70" />}>
|
||||
Collapse
|
||||
</Button>
|
||||
) : (
|
||||
<Tooltip title="Expand" placement="right" arrow>
|
||||
<IconButton>
|
||||
<Icon.ChevronRight className="w-5 h-auto opacity-70" />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
<main className="w-full h-auto flex-grow shrink flex flex-col justify-start items-center">
|
||||
|
Loading…
x
Reference in New Issue
Block a user