66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { useRouter } from 'next/navigation';
|
||
|
|
import { useState } from 'react';
|
||
|
|
|
||
|
|
interface User {
|
||
|
|
id: string;
|
||
|
|
email: string;
|
||
|
|
name: string | null;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface DashboardLayoutProps {
|
||
|
|
user: User;
|
||
|
|
children: React.ReactNode;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function DashboardLayout({ user, children }: DashboardLayoutProps) {
|
||
|
|
const router = useRouter();
|
||
|
|
const [loading, setLoading] = useState(false);
|
||
|
|
|
||
|
|
const handleLogout = async () => {
|
||
|
|
setLoading(true);
|
||
|
|
try {
|
||
|
|
await fetch('/api/auth/logout', { method: 'POST' });
|
||
|
|
router.push('/login');
|
||
|
|
router.refresh();
|
||
|
|
} catch (error) {
|
||
|
|
console.error('Logout error:', error);
|
||
|
|
} finally {
|
||
|
|
setLoading(false);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen bg-gray-50 dark:bg-gray-900">
|
||
|
|
<nav className="bg-white dark:bg-gray-800 shadow">
|
||
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||
|
|
<div className="flex justify-between h-16">
|
||
|
|
<div className="flex items-center">
|
||
|
|
<h1 className="text-xl font-bold text-gray-900 dark:text-white">
|
||
|
|
Platform SaaS
|
||
|
|
</h1>
|
||
|
|
</div>
|
||
|
|
<div className="flex items-center space-x-4">
|
||
|
|
<span className="text-sm text-gray-700 dark:text-gray-300">
|
||
|
|
{user.name || user.email}
|
||
|
|
</span>
|
||
|
|
<button
|
||
|
|
onClick={handleLogout}
|
||
|
|
disabled={loading}
|
||
|
|
className="px-4 py-2 text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 rounded-md disabled:opacity-50"
|
||
|
|
>
|
||
|
|
{loading ? 'Déconnexion...' : 'Déconnexion'}
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<main className="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
|
||
|
|
{children}
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|