mirror of
https://github.com/torrentpier/torrentpier
synced 2025-07-16 10:03:11 -07:00
* feat: initialize Laravel project with React 19 starter kit - Add Laravel backend with Inertia.js integration - Set up React 19 with TypeScript frontend - Configure shadcn/ui component library - Add Vite build tooling and development setup - Include authentication scaffolding with Inertia - Set up responsive layouts and UI components * Potential fix for code scanning alert no. 595: Workflow does not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
import { DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator } from '@/components/ui/dropdown-menu';
|
|
import { UserInfo } from '@/components/user-info';
|
|
import { useMobileNavigation } from '@/hooks/use-mobile-navigation';
|
|
import { type User } from '@/types';
|
|
import { Link, router } from '@inertiajs/react';
|
|
import { LogOut, Settings } from 'lucide-react';
|
|
|
|
interface UserMenuContentProps {
|
|
user: User;
|
|
}
|
|
|
|
export function UserMenuContent({ user }: UserMenuContentProps) {
|
|
const cleanup = useMobileNavigation();
|
|
|
|
const handleLogout = () => {
|
|
cleanup();
|
|
router.flushAll();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<DropdownMenuLabel className="p-0 font-normal">
|
|
<div className="flex items-center gap-2 px-1 py-1.5 text-left text-sm">
|
|
<UserInfo user={user} showEmail={true} />
|
|
</div>
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuItem asChild>
|
|
<Link className="block w-full" href={route('profile.edit')} as="button" prefetch onClick={cleanup}>
|
|
<Settings className="mr-2" />
|
|
Settings
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuGroup>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem asChild>
|
|
<Link className="block w-full" method="post" href={route('logout')} as="button" onClick={handleLogout}>
|
|
<LogOut className="mr-2" />
|
|
Log out
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
</>
|
|
);
|
|
}
|