feat: implement activity feed with filterable timeline for project history (#3184)#3208
Open
knoxiboy wants to merge 2 commits into
Open
feat: implement activity feed with filterable timeline for project history (#3184)#3208knoxiboy wants to merge 2 commits into
knoxiboy wants to merge 2 commits into
Conversation
GSSoC Label Checklist 🏷️@Priyanshu-byte-coder — please apply the appropriate labels before merging: Difficulty (pick one):
Quality (optional):
Validation (required to score):
|
knoxiboy
force-pushed
the
3184-issue-activity-feed
branch
from
July 15, 2026 14:59
1e0ab44 to
59d0b00
Compare
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.
Summary
This PR implements a project-wide activity history feed and timeline showing updates across tasks and workflow columns. The feed includes a beautiful filterable timeline (filter by action type and date range) and supports pagination/loading more logs.
Closes #3184
Type of Change
What Changed
supabase/migrations/20260715000001_add_activity_log.sql: Createdactivity_logtable referencing projects and users with indexing and RLS security policies.src/app/api/kanban/[projectId]/activity/route.ts: API route returning filterable and paginated activity logs.src/app/api/kanban/[projectId]/stages/route.ts: Updated to recordstage_created,stage_deleted, andstages_reorderedactions.src/app/api/kanban/[projectId]/tasks/route.ts: Updated to recordtask_created,task_deleted,task_updated, andtask_movedactions.src/components/kanban/ActivityFeed.tsx: Renders the vertical timeline with action icon badges, local time formatting, action/date filters, and lazy-loading pagination.src/components/kanban/KanbanBoard.tsx: Integrated the feed side-panel with a responsive header toggle button.How to Test
/dashboard/kanban/[projectId]).Checklist
console.log, debug code, or commented-out blocksnpm run lintpasses locally (Eslint setup failed locally on native dependency issue)npm run type-check)Accessibility (UI changes only)
Additional Context