71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
"use client";
|
|
|
|
import { ToggleTalkButton } from "../ToggleTalkButton";
|
|
import { Notifications } from "../Notifications";
|
|
import Link from "next/link";
|
|
import { Connection } from "../Connection";
|
|
import { ThemeSwap } from "./_components/ThemeSwap";
|
|
import { useState } from "react";
|
|
import { Audio } from "./_components/Audio";
|
|
|
|
export default function Navbar() {
|
|
const [isDark, setIsDark] = useState(false);
|
|
|
|
const toggleTheme = () => {
|
|
const newTheme = !isDark;
|
|
setIsDark(newTheme);
|
|
document.documentElement.setAttribute(
|
|
"data-theme",
|
|
newTheme ? "nord" : "dark",
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="navbar bg-base-100 shadow-sm">
|
|
<div className="flex-1">
|
|
<a className="btn btn-ghost text-xl">VAR Leitstelle V2</a>
|
|
</div>
|
|
<div className="flex gap-2">
|
|
<ul className="menu menu-horizontal bg-base-200 rounded-box">
|
|
<li>
|
|
<ToggleTalkButton />
|
|
</li>
|
|
<li>
|
|
<Audio />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div className="flex gap-2">
|
|
<Notifications />
|
|
</div>
|
|
<div className="flex gap-6">
|
|
<ThemeSwap isDark={isDark} toggleTheme={toggleTheme} />
|
|
<div className="flex items-center">
|
|
<Connection />
|
|
</div>
|
|
<div className="dropdown dropdown-end">
|
|
<div tabIndex={0} role="button" className="btn btn-ghost">
|
|
...
|
|
</div>
|
|
<ul
|
|
tabIndex={0}
|
|
className="menu menu-sm dropdown-content bg-base-100 box z-1 mt-3 w-52 p-2 shadow"
|
|
>
|
|
<li>
|
|
<a className="justify-between">Profil</a>
|
|
</li>
|
|
<li>
|
|
<a>Einstellungen</a>
|
|
</li>
|
|
<li>
|
|
<Link href={"/logout"}>
|
|
<p>Logout</p>
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|