feat: Add Kanban task planning board#138
Merged
Merged
Conversation
Introduces a full-featured Kanban board at /tasks for planning work ahead of time with four status columns (To Do, In Progress, Blocked, Done). Planned tasks are a separate entity from time-tracked tasks, enabling cross-day carry-over naturally. Key additions: - PlannedTask entity with status, priority, and linkedTaskId fields - Dual storage: localStorage (guest) and Supabase (authenticated) - "Pull to Day" action starts timing a planned task immediately, marking it in_progress and linking it to the active work day - Stale day fix: endDay() now accepts an optional end time; a StaleDayDialog auto-opens when an unfinished day from a previous date is detected, letting the user set the correct end time before the day records with accurate durations https://claude.ai/code/session_0141FfeR698mBiwxojcza868
Brings in the beforeunload/handleBackground stale-closure fix from main (commit 8729091) that uses latestStateRef.current to prevent archived day state from reappearing after a hard refresh. Both the ref reset in postDay and the setDayEndTime(null) call coexist cleanly. https://claude.ai/code/session_0141FfeR698mBiwxojcza868
Deploying timetrackerpro with
|
| Latest commit: |
28e276d
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://ffc917b7.timetrackerpro.pages.dev |
| Branch Preview URL: | https://claude-task-tracking-system.timetrackerpro.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces a full-featured Kanban board at /tasks for planning work ahead of time with four status columns (To Do, In Progress, Blocked, Done). Planned tasks are a separate entity from time-tracked tasks, enabling cross-day carry-over naturally.
Key additions: