From eadc96fb4f5fa03b8de694b305c7a2f584efd5b4 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Fri, 24 Apr 2026 23:00:35 -0400 Subject: [PATCH] feat(frontend): add AniList watchlist sort dropdown component Implement a Sort.svelte component that provides a dropdown menu allowing users to dynamically reorder their AniList watchlist by various parameters including media title, score, status, progress, popularity, and dates. The component binds to the global aniListSort store and fetches updated watchlist data from the backend whenever the user selects a new sort option, providing immediate visual feedback. --- frontend/src/helperComponents/Sort.svelte | 77 +++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/frontend/src/helperComponents/Sort.svelte b/frontend/src/helperComponents/Sort.svelte index e69de29..62461ff 100644 --- a/frontend/src/helperComponents/Sort.svelte +++ b/frontend/src/helperComponents/Sort.svelte @@ -0,0 +1,77 @@ + + +