[PR #1803] [CLOSED] Reports reorg #34163

Closed
opened 2026-04-20 21:22:06 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/1803
Author: @carkom
Created: 10/16/2023
Status: Closed

Base: masterHead: reportsReorg


📝 Commits (10+)

📊 Changes

24 files changed (+1367 additions, -533 deletions)

View changed files

📝 packages/desktop-client/src/components/reports/CashFlow.js (+146 -4)
📝 packages/desktop-client/src/components/reports/CategorySpending.js (+57 -4)
packages/desktop-client/src/components/reports/Change.js (+0 -22)
packages/desktop-client/src/components/reports/Container.tsx (+0 -28)
packages/desktop-client/src/components/reports/DateRange.js (+0 -32)
📝 packages/desktop-client/src/components/reports/NetWorth.js (+80 -5)
📝 packages/desktop-client/src/components/reports/Overview.js (+5 -321)
📝 packages/desktop-client/src/components/reports/Tools.tsx (+28 -2)
packages/desktop-client/src/components/reports/Tooltip.js (+0 -87)
packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx (+181 -0)
packages/desktop-client/src/components/reports/graphs/BarGraph.tsx (+132 -0)
packages/desktop-client/src/components/reports/graphs/BarLineGraph.tsx (+139 -0)
📝 packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx (+2 -2)
📝 packages/desktop-client/src/components/reports/graphs/CategorySpendingGraph.tsx (+3 -3)
packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx (+119 -0)
packages/desktop-client/src/components/reports/graphs/LineGraph.tsx (+132 -0)
📝 packages/desktop-client/src/components/reports/graphs/NetWorthGraph.tsx (+1 -1)
packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx (+137 -0)
📝 packages/desktop-client/src/components/reports/spreadsheets/cash-flow-spreadsheet.tsx (+0 -0)
📝 packages/desktop-client/src/components/reports/spreadsheets/category-spending-spreadsheet.tsx (+0 -0)

...and 4 more files

📄 Description

No code changes to existing code. Just splitting graphs and spreadsheets into separate directories and adding some generic Rechart Graphs so they can be used without needing to create a custom graph for every new report that is created.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/1803 **Author:** [@carkom](https://github.com/carkom) **Created:** 10/16/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `reportsReorg` --- ### 📝 Commits (10+) - [`e196a34`](https://github.com/actualbudget/actual/commit/e196a3489b4671d86a5a4ba3e320734658835060) Reorganize and add graphs - [`0e9cc2d`](https://github.com/actualbudget/actual/commit/0e9cc2df3a05eb9490ce3982cb955f5fdfc201a6) Merge remote-tracking branch 'upstream/master' into reportsReorg - [`fe2fe06`](https://github.com/actualbudget/actual/commit/fe2fe06812132206573c51d35ab77d194947a440) Graph Additions - [`e67b25e`](https://github.com/actualbudget/actual/commit/e67b25e5c9bd0e1bd19a8d0ceda24cf12fef46f5) fixes - [`af87e2b`](https://github.com/actualbudget/actual/commit/af87e2b8a354d7d9e060d27e3570edcb709564cb) notes - [`732b99b`](https://github.com/actualbudget/actual/commit/732b99b3e7ff58ce8910fcff4ad96706d22636c0) Privacy Filters - [`8a45605`](https://github.com/actualbudget/actual/commit/8a45605fefe12878aa2c4768a8fad6c14e83bc43) consolidate tools and utilities - [`6ee5275`](https://github.com/actualbudget/actual/commit/6ee5275195835f3656daa3312a81976060ac3f57) Merge branch 'master' into reportsReorg - [`8811694`](https://github.com/actualbudget/actual/commit/8811694dec06af7c593b772f05bd81feaf1e9a1b) reorganize overview cards - [`c2426d9`](https://github.com/actualbudget/actual/commit/c2426d948b36e635d8d46565c4946a41bea70305) remove changes to schedule ### 📊 Changes **24 files changed** (+1367 additions, -533 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/reports/CashFlow.js` (+146 -4) 📝 `packages/desktop-client/src/components/reports/CategorySpending.js` (+57 -4) ➖ `packages/desktop-client/src/components/reports/Change.js` (+0 -22) ➖ `packages/desktop-client/src/components/reports/Container.tsx` (+0 -28) ➖ `packages/desktop-client/src/components/reports/DateRange.js` (+0 -32) 📝 `packages/desktop-client/src/components/reports/NetWorth.js` (+80 -5) 📝 `packages/desktop-client/src/components/reports/Overview.js` (+5 -321) 📝 `packages/desktop-client/src/components/reports/Tools.tsx` (+28 -2) ➖ `packages/desktop-client/src/components/reports/Tooltip.js` (+0 -87) ➕ `packages/desktop-client/src/components/reports/graphs/AreaGraph.tsx` (+181 -0) ➕ `packages/desktop-client/src/components/reports/graphs/BarGraph.tsx` (+132 -0) ➕ `packages/desktop-client/src/components/reports/graphs/BarLineGraph.tsx` (+139 -0) 📝 `packages/desktop-client/src/components/reports/graphs/CashFlowGraph.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/reports/graphs/CategorySpendingGraph.tsx` (+3 -3) ➕ `packages/desktop-client/src/components/reports/graphs/DonutGraph.tsx` (+119 -0) ➕ `packages/desktop-client/src/components/reports/graphs/LineGraph.tsx` (+132 -0) 📝 `packages/desktop-client/src/components/reports/graphs/NetWorthGraph.tsx` (+1 -1) ➕ `packages/desktop-client/src/components/reports/graphs/StackedBarGraph.tsx` (+137 -0) 📝 `packages/desktop-client/src/components/reports/spreadsheets/cash-flow-spreadsheet.tsx` (+0 -0) 📝 `packages/desktop-client/src/components/reports/spreadsheets/category-spending-spreadsheet.tsx` (+0 -0) _...and 4 more files_ </details> ### 📄 Description No code changes to existing code. Just splitting graphs and spreadsheets into separate directories and adding some generic Rechart Graphs so they can be used without needing to create a custom graph for every new report that is created. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 21:22:06 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#34163