Implements FocusMode component with ambient sounds, distraction blocking and adds FocusPage. Replit-Commit-Author: Agent Replit-Commit-Session-Id: c5f0c281-8dd8-4846-b452-4a07bcd21062 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/9777c70b-fc38-4831-8d6b-78dfffe041b0/5abfa1d7-294e-4d88-a0a7-e2cbc6cee435.jpg
163 lines
6.1 KiB
TypeScript
163 lines
6.1 KiB
TypeScript
import { Link, useLocation } from "wouter";
|
|
import { useAuth } from "@/hooks/useAuth";
|
|
import { useTheme } from "@/context/ThemeContext";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { LanguageSwitcher } from "@/components/LanguageSwitcher";
|
|
import FocusButton from "@/components/focus/FocusButton";
|
|
import {
|
|
Moon,
|
|
Sun,
|
|
Mic,
|
|
User,
|
|
Settings,
|
|
LogOut,
|
|
Activity
|
|
} from "lucide-react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
export default function Header() {
|
|
const { user, logout } = useAuth();
|
|
const { theme, toggleTheme } = useTheme();
|
|
const { t } = useTranslation();
|
|
const [, setLocation] = useLocation();
|
|
|
|
const handleLogout = async () => {
|
|
await logout();
|
|
setLocation("/");
|
|
};
|
|
|
|
const getUserInitials = (user: any) => {
|
|
if (user.firstName && user.lastName) {
|
|
return `${user.firstName[0]}${user.lastName[0]}`.toUpperCase();
|
|
}
|
|
return user.username?.[0]?.toUpperCase() || "U";
|
|
};
|
|
|
|
return (
|
|
<header className="sticky top-0 z-50 w-full border-b border-border/40 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
|
|
<div className="container flex h-14 max-w-screen-2xl items-center">
|
|
{/* Logo and Brand */}
|
|
<div className="mr-4 flex">
|
|
<Link href={user ? "/dashboard" : "/"} className="mr-6 flex items-center space-x-2">
|
|
<div className="w-8 h-8 bg-gradient-to-br from-primary to-secondary rounded-lg flex items-center justify-center">
|
|
<Mic className="w-4 h-4 text-white" />
|
|
</div>
|
|
<span className="hidden font-bold sm:inline-block bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">
|
|
MenAssist
|
|
</span>
|
|
</Link>
|
|
</div>
|
|
|
|
{/* Navigation */}
|
|
{user && (
|
|
<nav className="flex items-center space-x-6 text-sm font-medium">
|
|
<Link
|
|
href="/dashboard"
|
|
className="transition-colors hover:text-foreground/80 text-foreground"
|
|
>
|
|
Dashboard
|
|
</Link>
|
|
</nav>
|
|
)}
|
|
|
|
{/* Right side actions */}
|
|
<div className="flex flex-1 items-center justify-between space-x-2 md:justify-end">
|
|
<div className="w-full flex-1 md:w-auto md:flex-none" />
|
|
|
|
{/* Voice Status Indicator */}
|
|
<div className="flex items-center space-x-2 bg-muted/50 px-3 py-1 rounded-full">
|
|
<Activity className="w-3 h-3 text-green-500 animate-pulse" />
|
|
<span className="text-xs text-muted-foreground hidden sm:inline">Voice Ready</span>
|
|
</div>
|
|
|
|
{/* Language Switcher */}
|
|
<LanguageSwitcher />
|
|
|
|
{/* Focus Mode */}
|
|
{user && <FocusButton variant="ghost" size="sm" />}
|
|
|
|
{/* Theme Toggle */}
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={toggleTheme}
|
|
className="w-9 px-0"
|
|
>
|
|
<Sun className="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" />
|
|
<Moon className="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" />
|
|
<span className="sr-only">Toggle theme</span>
|
|
</Button>
|
|
|
|
{/* User Menu or Login */}
|
|
{user ? (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="ghost" className="relative h-8 w-8 rounded-full">
|
|
<Avatar className="h-8 w-8">
|
|
<AvatarFallback className="bg-primary text-primary-foreground">
|
|
{getUserInitials(user)}
|
|
</AvatarFallback>
|
|
</Avatar>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-56" align="end" forceMount>
|
|
<DropdownMenuLabel className="font-normal">
|
|
<div className="flex flex-col space-y-1">
|
|
<p className="text-sm font-medium leading-none">
|
|
{user.firstName && user.lastName
|
|
? `${user.firstName} ${user.lastName}`
|
|
: user.username
|
|
}
|
|
</p>
|
|
<p className="text-xs leading-none text-muted-foreground">
|
|
{user.email}
|
|
</p>
|
|
<div className="mt-1">
|
|
<Badge variant="secondary" className="text-xs">
|
|
{user.role === "admin" ? "Admin" : user.role === "pro" ? "Pro" : "Standard"}
|
|
</Badge>
|
|
</div>
|
|
</div>
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={() => setLocation("/settings")}>
|
|
<Settings className="mr-2 h-4 w-4" />
|
|
<span>Settings</span>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={() => setLocation("/profile")}>
|
|
<User className="mr-2 h-4 w-4" />
|
|
<span>Profile</span>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={handleLogout}>
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
<span>Log out</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
) : (
|
|
<div className="flex items-center space-x-2">
|
|
<Button variant="ghost" size="sm" onClick={() => setLocation("/login")}>
|
|
Sign In
|
|
</Button>
|
|
<Button size="sm" onClick={() => setLocation("/login")}>
|
|
Get Started
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|