You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.2 KiB
93 lines
2.2 KiB
import { useDevice } from "@core/stores/deviceStore.js";
|
|
import type { Page } from "@core/stores/deviceStore.js";
|
|
import {
|
|
LucideIcon,
|
|
MapIcon,
|
|
MessageSquareIcon,
|
|
SettingsIcon,
|
|
LayersIcon,
|
|
UsersIcon,
|
|
EditIcon,
|
|
LayoutGrid
|
|
} from "lucide-react";
|
|
import { Subtle } from "@components/UI/Typography/Subtle.js";
|
|
import { SidebarSection } from "@components/UI/Sidebar/SidebarSection.js";
|
|
import { SidebarButton } from "@components/UI/Sidebar/sidebarButton.js";
|
|
|
|
export interface SidebarProps {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const Sidebar = ({ children }: SidebarProps): JSX.Element => {
|
|
const { hardware, nodes } = useDevice();
|
|
const myNode = nodes.get(hardware.myNodeNum);
|
|
const { activePage, setActivePage, setDialogOpen } = useDevice();
|
|
|
|
interface NavLink {
|
|
name: string;
|
|
icon: LucideIcon;
|
|
page: Page;
|
|
}
|
|
|
|
const pages: NavLink[] = [
|
|
{
|
|
name: "Messages",
|
|
icon: MessageSquareIcon,
|
|
page: "messages"
|
|
},
|
|
{
|
|
name: "Map",
|
|
icon: MapIcon,
|
|
page: "map"
|
|
},
|
|
{
|
|
name: "Config",
|
|
icon: SettingsIcon,
|
|
page: "config"
|
|
},
|
|
{
|
|
name: "Channels",
|
|
icon: LayersIcon,
|
|
page: "channels"
|
|
},
|
|
{
|
|
name: "Peers",
|
|
icon: UsersIcon,
|
|
page: "peers"
|
|
}
|
|
];
|
|
|
|
return (
|
|
<div className="min-w-[280px] max-w-min flex-col border-r-[0.5px] border-slate-300 bg-transparent dark:border-slate-700">
|
|
<div className="flex justify-between px-8 py-6">
|
|
<div>
|
|
<span className="text-lg font-medium">
|
|
{myNode?.user?.shortName ?? "UNK"}
|
|
</span>
|
|
<Subtle>{myNode?.user?.longName ?? "UNK"}</Subtle>
|
|
</div>
|
|
<button
|
|
className="transition-all hover:text-accent"
|
|
onClick={() => setDialogOpen("deviceName", true)}
|
|
>
|
|
<EditIcon size={16} />
|
|
</button>
|
|
</div>
|
|
|
|
<SidebarSection label="Navigation">
|
|
{pages.map((link, index) => (
|
|
<SidebarButton
|
|
key={index}
|
|
label={link.name}
|
|
icon={link.icon}
|
|
onClick={() => {
|
|
setActivePage(link.page);
|
|
}}
|
|
active={link.page === activePage}
|
|
/>
|
|
))}
|
|
</SidebarSection>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|