From a22f1de6d02d47522714f7ce9666003ecbc326dd Mon Sep 17 00:00:00 2001 From: Till JS Date: Tue, 31 Mar 2026 17:45:22 +0200 Subject: [PATCH] feat(todo): complete animation + "Heute erledigt" section on focus pages KanbanTaskCard: - Checkbox click animates first (checkPop 300ms, fade to 50% opacity) - After 500ms the actual onToggleComplete fires and task moves - Modal cannot open during animation (pointer-events: none) FokusLayout: - Derives completedToday from tasks context (isCompleted + completedAt today) - Shows "Heute erledigt" section at bottom of every sheet - New items slide in from above (slideDown 350ms animation) Co-Authored-By: Claude Sonnet 4.6 --- .../components/board-views/FokusLayout.svelte | 60 +++++++++++++++++++ .../components/kanban/KanbanTaskCard.svelte | 56 +++++++++++++++-- 2 files changed, 111 insertions(+), 5 deletions(-) diff --git a/apps/todo/apps/web/src/lib/components/board-views/FokusLayout.svelte b/apps/todo/apps/web/src/lib/components/board-views/FokusLayout.svelte index d9405cec3..942d3e3ee 100644 --- a/apps/todo/apps/web/src/lib/components/board-views/FokusLayout.svelte +++ b/apps/todo/apps/web/src/lib/components/board-views/FokusLayout.svelte @@ -1,5 +1,7 @@