mirror of
https://github.com/FranP-code/inbox-negotiator.git
synced 2025-10-13 00:42:26 +00:00
104 lines
3.7 KiB
TypeScript
104 lines
3.7 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import { supabase } from '../lib/supabase';
|
|
import type { User } from '@supabase/supabase-js';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger
|
|
} from '@/components/ui/dropdown-menu';
|
|
import { Avatar, AvatarFallback } from '@/components/ui/avatar';
|
|
import { BarChart3, LogOut, User as UserIcon } from 'lucide-react';
|
|
import { ModeToggle } from './ModeToggle';
|
|
|
|
export function Navbar() {
|
|
const [user, setUser] = useState<User | null>(null);
|
|
|
|
useEffect(() => {
|
|
supabase.auth.getSession().then(({ data: { session } }) => {
|
|
setUser(session?.user ?? null);
|
|
});
|
|
|
|
const { data: { subscription } } = supabase.auth.onAuthStateChange(
|
|
(event, session) => {
|
|
setUser(session?.user ?? null);
|
|
}
|
|
);
|
|
|
|
return () => subscription.unsubscribe();
|
|
}, []);
|
|
|
|
const handleSignOut = async () => {
|
|
await supabase.auth.signOut();
|
|
window.location.href = '/';
|
|
};
|
|
|
|
const getInitials = (email: string) => {
|
|
return email.substring(0, 2).toUpperCase();
|
|
};
|
|
|
|
return (
|
|
<nav className="border-b bg-white dark:bg-background">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="flex justify-between items-center h-16">
|
|
<div className="flex items-center gap-3">
|
|
<BarChart3 className="h-8 w-8 text-primary" />
|
|
<a href="/" className="text-xl font-bold text-gray-900 dark:text-foreground">
|
|
InboxNegotiator
|
|
</a>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-4">
|
|
<ModeToggle />
|
|
{user ? (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button variant="ghost" className="relative h-8 w-8 rounded-full">
|
|
<Avatar className="h-8 w-8">
|
|
<AvatarFallback className="text-xs">
|
|
{getInitials(user.email || '')}
|
|
</AvatarFallback>
|
|
</Avatar>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-56" align="end">
|
|
<div className="flex items-center justify-start gap-2 p-2">
|
|
<div className="flex flex-col space-y-1 leading-none">
|
|
<p className="font-medium text-sm">{user.user_metadata?.full_name || 'User'}</p>
|
|
<p className="w-[200px] truncate text-xs text-muted-foreground">
|
|
{user.email}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem asChild>
|
|
<a href="/dashboard" className="flex items-center">
|
|
<UserIcon className="mr-2 h-4 w-4" />
|
|
Dashboard
|
|
</a>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={handleSignOut}>
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
Sign out
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
) : (
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="ghost" asChild>
|
|
<a href="/login">Sign In</a>
|
|
</Button>
|
|
<Button asChild>
|
|
<a href="/signup">Get Started</a>
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
);
|
|
} |