[PR #7626] [WIP] Add savings plans #56601

Open
opened 2026-05-01 04:34:42 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/7626
Author: @hahahhhj11-art
Created: 4/26/2026
Status: 🔄 Open

Base: masterHead: savings-plans


📝 Commits (1)

📊 Changes

22 files changed (+891 additions, -0 deletions)

View changed files

📝 packages/desktop-client/src/components/FinancesApp.tsx (+5 -0)
📝 packages/desktop-client/src/components/responsive/narrow.ts (+2 -0)
📝 packages/desktop-client/src/components/responsive/wide.ts (+2 -0)
packages/desktop-client/src/components/savings-plans/SavingsPlanCard.tsx (+177 -0)
packages/desktop-client/src/components/savings-plans/SavingsPlanForm.tsx (+165 -0)
packages/desktop-client/src/components/savings-plans/SavingsPlansPage.tsx (+147 -0)
📝 packages/desktop-client/src/components/sidebar/PrimaryButtons.tsx (+8 -0)
packages/desktop-client/src/savings-plans/mutations.ts (+107 -0)
packages/desktop-client/src/savings-plans/queries.ts (+19 -0)
packages/loot-core/migrations/1775433600000_savings_plans.sql (+14 -0)
packages/loot-core/src/mocks/files/budgets/test-budget/db.sqlite (+0 -0)
packages/loot-core/src/mocks/files/budgets/test-budget/metadata.json (+6 -0)
📝 packages/loot-core/src/server/aql/schema/index.ts (+10 -0)
📝 packages/loot-core/src/server/db/index.ts (+28 -0)
📝 packages/loot-core/src/server/db/types/index.ts (+11 -0)
📝 packages/loot-core/src/server/main.ts (+2 -0)
packages/loot-core/src/server/savings-plans/app.ts (+51 -0)
packages/loot-core/src/shared/savings.test.ts (+96 -0)
packages/loot-core/src/shared/savings.ts (+29 -0)
📝 packages/loot-core/src/types/handlers.ts (+2 -0)

...and 2 more files

📄 Description

Description

Testing

Checklist

  • Release notes added (see link above)
  • No obvious regressions in affected areas
  • Self-review has been performed - I understand what each change in the code does and why it is needed

🔄 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/7626 **Author:** [@hahahhhj11-art](https://github.com/hahahhhj11-art) **Created:** 4/26/2026 **Status:** 🔄 Open **Base:** `master` ← **Head:** `savings-plans` --- ### 📝 Commits (1) - [`371c4f9`](https://github.com/actualbudget/actual/commit/371c4f9b3de5decdfaa42703bc4bf4b1eec35c15) Add savings plans ### 📊 Changes **22 files changed** (+891 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+5 -0) 📝 `packages/desktop-client/src/components/responsive/narrow.ts` (+2 -0) 📝 `packages/desktop-client/src/components/responsive/wide.ts` (+2 -0) ➕ `packages/desktop-client/src/components/savings-plans/SavingsPlanCard.tsx` (+177 -0) ➕ `packages/desktop-client/src/components/savings-plans/SavingsPlanForm.tsx` (+165 -0) ➕ `packages/desktop-client/src/components/savings-plans/SavingsPlansPage.tsx` (+147 -0) 📝 `packages/desktop-client/src/components/sidebar/PrimaryButtons.tsx` (+8 -0) ➕ `packages/desktop-client/src/savings-plans/mutations.ts` (+107 -0) ➕ `packages/desktop-client/src/savings-plans/queries.ts` (+19 -0) ➕ `packages/loot-core/migrations/1775433600000_savings_plans.sql` (+14 -0) ➕ `packages/loot-core/src/mocks/files/budgets/test-budget/db.sqlite` (+0 -0) ➕ `packages/loot-core/src/mocks/files/budgets/test-budget/metadata.json` (+6 -0) 📝 `packages/loot-core/src/server/aql/schema/index.ts` (+10 -0) 📝 `packages/loot-core/src/server/db/index.ts` (+28 -0) 📝 `packages/loot-core/src/server/db/types/index.ts` (+11 -0) 📝 `packages/loot-core/src/server/main.ts` (+2 -0) ➕ `packages/loot-core/src/server/savings-plans/app.ts` (+51 -0) ➕ `packages/loot-core/src/shared/savings.test.ts` (+96 -0) ➕ `packages/loot-core/src/shared/savings.ts` (+29 -0) 📝 `packages/loot-core/src/types/handlers.ts` (+2 -0) _...and 2 more files_ </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> ## Description <!-- What does this PR do? Why is it needed? Please give context on the "why?": why do we need this change? What problem is it solving for you?--> ## Related issue(s) <!-- e.g. Fixes #123, Relates to #456 --> ## Testing <!-- What did you test? How can we reproduce the issue you are fixing or how can we test the feature you built? --> ## Checklist - [ ] Release notes added (see link above) - [ ] No obvious regressions in affected areas - [ ] Self-review has been performed - I understand what each change in the code does and why it is needed <!--- actual-bot-sections ---> --- <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-05-01 04:34:42 -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#56601