- Fixed group emoji icons in DB (💼🛒📚🗺️🏃✨🏠🌿) - Added TaskModal component for + button - Czech status labels (Čeká, Probíhá, Hotovo, Zrušeno) - Improved TaskCard, GroupSelector, Header, StatusBadge - Better dark/light mode transitions Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
88 lines
3.6 KiB
TypeScript
88 lines
3.6 KiB
TypeScript
"use client";
|
|
|
|
import { useAuth } from "@/lib/auth";
|
|
import { useTheme } from "./ThemeProvider";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
export default function Header() {
|
|
const { user, logout, token } = useAuth();
|
|
const { theme, toggleTheme } = useTheme();
|
|
const router = useRouter();
|
|
|
|
function handleLogout() {
|
|
logout();
|
|
router.push("/login");
|
|
}
|
|
|
|
return (
|
|
<header className="sticky top-0 z-50 bg-white/80 dark:bg-gray-950/80 backdrop-blur-md border-b border-gray-200 dark:border-gray-800">
|
|
<div className="max-w-4xl mx-auto px-4 h-14 flex items-center justify-between">
|
|
<Link href="/tasks" className="flex items-center gap-2">
|
|
<div className="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center">
|
|
<svg className="w-4 h-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2.5}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
</div>
|
|
<span className="text-lg font-bold tracking-tight">Task Team</span>
|
|
</Link>
|
|
|
|
<div className="flex items-center gap-2">
|
|
{/* Theme toggle */}
|
|
<button
|
|
onClick={toggleTheme}
|
|
className="p-2.5 rounded-lg hover:bg-gray-100 dark:hover:bg-gray-800 transition-colors min-w-[44px] min-h-[44px] flex items-center justify-center"
|
|
aria-label="P\u0159epnout t\u00e9ma"
|
|
>
|
|
{theme === "dark" ? (
|
|
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z"
|
|
/>
|
|
</svg>
|
|
) : (
|
|
<svg className="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z"
|
|
/>
|
|
</svg>
|
|
)}
|
|
</button>
|
|
|
|
{token && user ? (
|
|
<div className="flex items-center gap-2">
|
|
<div className="hidden sm:flex items-center gap-2">
|
|
<div className="w-7 h-7 bg-blue-100 dark:bg-blue-900/30 text-blue-700 dark:text-blue-300 rounded-full flex items-center justify-center text-xs font-bold">
|
|
{(user.name || user.email || "?").charAt(0).toUpperCase()}
|
|
</div>
|
|
<span className="text-sm text-muted max-w-[120px] truncate">
|
|
{user.name || user.email}
|
|
</span>
|
|
</div>
|
|
<button
|
|
onClick={handleLogout}
|
|
className="text-sm px-3 py-1.5 rounded-lg border border-gray-300 dark:border-gray-600 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors min-h-[44px] flex items-center"
|
|
>
|
|
Odhl\u00e1sit
|
|
</button>
|
|
</div>
|
|
) : (
|
|
<Link
|
|
href="/login"
|
|
className="text-sm px-4 py-2 rounded-lg bg-blue-600 text-white hover:bg-blue-700 transition-colors min-h-[44px] flex items-center"
|
|
>
|
|
P\u0159ihl\u00e1sit
|
|
</Link>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|