feat(Notes): add favorite functionality to notes, allowing users to toggle favorites and filter notes accordingly

This commit is contained in:
Julien Froidefond
2026-01-12 10:52:44 +01:00
parent 31d01c2926
commit 75d31e86ac
9 changed files with 156 additions and 22 deletions

View File

@@ -29,3 +29,35 @@ export async function reorderNotes(
};
}
}
/**
* Bascule l'état favori d'une note
*/
export async function toggleNoteFavorite(noteId: string) {
try {
const session = await getServerSession(authOptions);
if (!session?.user?.id) {
return { success: false, error: 'Non autorisé' };
}
// Récupérer la note actuelle pour connaître son état favori
const currentNote = await notesService.getNoteById(noteId, session.user.id);
if (!currentNote) {
return { success: false, error: 'Note non trouvée' };
}
// Basculer l'état favori
const updatedNote = await notesService.updateNote(noteId, session.user.id, {
isFavorite: !currentNote.isFavorite,
});
revalidatePath('/notes');
return { success: true, note: updatedNote };
} catch (error) {
console.error('Error toggling note favorite:', error);
return {
success: false,
error: error instanceof Error ? error.message : 'Erreur inconnue',
};
}
}