mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-15 13:19:56 +00:00
76 lines
2.6 KiB
TypeScript
76 lines
2.6 KiB
TypeScript
import { useEffect, useRef } from "react";
|
|
import { PanelRightCloseIcon, PanelRightOpenIcon, SettingsIcon } from "lucide-react";
|
|
import { Window } from "@wailsio/runtime";
|
|
import { Windows as WindowsSvc } from "@bindings/services";
|
|
import { ProfileSelector } from "@/components/ProfileSelector.tsx";
|
|
import { IconButton } from "@/components/IconButton.tsx";
|
|
import { useAppearance } from "@/modules/appearance/AppearanceContext.tsx";
|
|
import { cn } from "@/lib/cn";
|
|
|
|
const WINDOW_SMALL_WIDTH = 380;
|
|
const WINDOW_BIG_WIDTH = 925;
|
|
const WINDOW_HEIGHT = 615;
|
|
const EXPANDED_THRESHOLD = 500;
|
|
|
|
export const Header = () => {
|
|
const { showProfileSelector, showSettingsButton, expanded, setField } = useAppearance();
|
|
const didInitialResize = useRef(false);
|
|
|
|
useEffect(() => {
|
|
if (didInitialResize.current) return;
|
|
didInitialResize.current = true;
|
|
const w = expanded ? WINDOW_BIG_WIDTH : WINDOW_SMALL_WIDTH;
|
|
void Window.SetSize(w, WINDOW_HEIGHT).catch(() => {});
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!didInitialResize.current) return;
|
|
const w = expanded ? WINDOW_BIG_WIDTH : WINDOW_SMALL_WIDTH;
|
|
void Window.SetSize(w, WINDOW_HEIGHT).catch(() => {});
|
|
}, [expanded]);
|
|
|
|
useEffect(() => {
|
|
const onResize = () => {
|
|
const isWide = window.innerWidth >= EXPANDED_THRESHOLD;
|
|
if (isWide !== expanded) setField("expanded", isWide);
|
|
};
|
|
window.addEventListener("resize", onResize);
|
|
return () => window.removeEventListener("resize", onResize);
|
|
}, [expanded, setField]);
|
|
|
|
const togglePanel = () => {
|
|
const next = !expanded;
|
|
setField("expanded", next);
|
|
const w = next ? WINDOW_BIG_WIDTH : WINDOW_SMALL_WIDTH;
|
|
void Window.SetSize(w, WINDOW_HEIGHT).catch(() => {});
|
|
};
|
|
|
|
const openSettings = () => {
|
|
void WindowsSvc.OpenSettings().catch(() => {});
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"shrink-0 cursor-default wails-draggable flex items-center justify-end px-4 gap-3 bg-gradient-to-b from-nb-gray-800/15",
|
|
"pt-4",
|
|
)}
|
|
>
|
|
{showProfileSelector && (
|
|
<div className={"ml-20"}>
|
|
<ProfileSelector />
|
|
</div>
|
|
)}
|
|
|
|
<IconButton
|
|
icon={expanded ? PanelRightOpenIcon : PanelRightCloseIcon}
|
|
onClick={togglePanel}
|
|
/>
|
|
{showSettingsButton && (
|
|
<IconButton icon={SettingsIcon} onClick={openSettings} />
|
|
)}
|
|
</div>
|
|
);
|
|
};
|