Merged
Conversation
Owner
AdamJ
commented
Mar 22, 2026
- update archive page summary stats
- update archive item row rendering
Archive.tsx: - Import calculation utilities directly at module scope (stable refs) instead of pulling unstable context method wrappers - Wrap all four summary-stat reduce() calls (totalHoursWorked, totalBillable, totalNonBillable, totalRevenue) in a single useMemo keyed on [filteredDays, projects, categories]; previously they ran unconditionally on every render even when nothing had changed ArchiveItem.tsx: - Add dayStats useMemo ([day, projects, categories]) computing per-day hours and revenue once per item instead of calling context getters inline, which also eliminates the double getRevenueForDay() call in the revenue badge - Add projectMap / categoryMap useMemo lookups so the task-table row loop uses O(1) Map.get() instead of O(n) Array.find() per row - Convert the daily-summary IIFE into a useMemo([day.tasks]) so generateDailySummary() only runs when task descriptions actually change https://claude.ai/code/session_012AmNjF3Ju9VJwSWybJqBEw
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.