feat: refresh in sidebar

This commit is contained in:
Julien Froidefond
2025-02-12 23:00:51 +01:00
parent 38da137c26
commit af2474d5d9

View File

@@ -1,4 +1,4 @@
import { BookOpen, Home, Library, Settings, LogOut } from "lucide-react"; import { BookOpen, Home, Library, Settings, LogOut, RefreshCw } from "lucide-react";
import Link from "next/link"; import Link from "next/link";
import { usePathname, useRouter } from "next/navigation"; import { usePathname, useRouter } from "next/navigation";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
@@ -16,6 +16,7 @@ export function Sidebar({ isOpen }: SidebarProps) {
const router = useRouter(); const router = useRouter();
const [libraries, setLibraries] = useState<KomgaLibrary[]>([]); const [libraries, setLibraries] = useState<KomgaLibrary[]>([]);
const [isLoading, setIsLoading] = useState(true); const [isLoading, setIsLoading] = useState(true);
const [isRefreshing, setIsRefreshing] = useState(false);
const [isAuthenticated, setIsAuthenticated] = useState(false); const [isAuthenticated, setIsAuthenticated] = useState(false);
// Initialiser l'authentification au montage du composant // Initialiser l'authentification au montage du composant
@@ -35,7 +36,6 @@ export function Sidebar({ isOpen }: SidebarProps) {
}, []); }, []);
// Effet séparé pour charger les bibliothèques // Effet séparé pour charger les bibliothèques
useEffect(() => {
const fetchLibraries = async () => { const fetchLibraries = async () => {
if (!isAuthenticated) { if (!isAuthenticated) {
setIsLoading(false); setIsLoading(false);
@@ -62,12 +62,19 @@ export function Sidebar({ isOpen }: SidebarProps) {
} }
} finally { } finally {
setIsLoading(false); setIsLoading(false);
setIsRefreshing(false);
} }
}; };
useEffect(() => {
fetchLibraries(); fetchLibraries();
}, [isAuthenticated, pathname]); }, [isAuthenticated, pathname]);
const handleRefresh = async () => {
setIsRefreshing(true);
await fetchLibraries();
};
const handleLogout = () => { const handleLogout = () => {
console.log("Sidebar - Logging out"); console.log("Sidebar - Logging out");
authService.logout(); authService.logout();
@@ -119,7 +126,17 @@ export function Sidebar({ isOpen }: SidebarProps) {
<> <>
<div className="px-3 py-2"> <div className="px-3 py-2">
<div className="space-y-1"> <div className="space-y-1">
<h2 className="mb-2 px-4 text-lg font-semibold tracking-tight">Bibliothèques</h2> <div className="mb-2 px-4 flex items-center justify-between">
<h2 className="text-lg font-semibold tracking-tight">Bibliothèques</h2>
<button
onClick={handleRefresh}
disabled={isRefreshing}
className="p-1 hover:bg-accent hover:text-accent-foreground rounded-md transition-colors"
aria-label="Rafraîchir les bibliothèques"
>
<RefreshCw className={cn("h-4 w-4", isRefreshing && "animate-spin")} />
</button>
</div>
{isLoading ? ( {isLoading ? (
<div className="px-3 py-2 text-sm text-muted-foreground">Chargement...</div> <div className="px-3 py-2 text-sm text-muted-foreground">Chargement...</div>
) : libraries.length === 0 ? ( ) : libraries.length === 0 ? (