[PR #1802] [MERGED] Mobile balance cover/transfer/rollover overspending #3967

Closed
opened 2026-02-28 20:49:34 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/1802
Author: @joel-jeremy
Created: 10/16/2023
Status: Merged
Merged: 10/30/2023
Merged by: @joel-jeremy

Base: masterHead: mobile-balance-cover-transfer


📝 Commits (9)

📊 Changes

22 files changed (+777 additions, -556 deletions)

View changed files

📝 packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx (+19 -23)
📝 packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx (+12 -3)
packages/desktop-client/src/components/budget/CategoryGroupsContext.js (+0 -3)
📝 packages/desktop-client/src/components/budget/DynamicBudgetTable.js (+27 -30)
📝 packages/desktop-client/src/components/budget/MobileBudgetTable.js (+461 -285)
packages/desktop-client/src/components/budget/rollover/BalanceTooltip.tsx (+106 -0)
packages/desktop-client/src/components/budget/rollover/CoverTooltip.tsx (+83 -0)
📝 packages/desktop-client/src/components/budget/rollover/TransferTooltip.tsx (+2 -2)
📝 packages/desktop-client/src/components/budget/rollover/rollover-components.tsx (+3 -163)
📝 packages/desktop-client/src/components/budget/util.ts (+11 -1)
📝 packages/desktop-client/src/components/reports/CategorySelector.tsx (+8 -7)
📝 packages/desktop-client/src/components/tooltips.js (+1 -0)
📝 packages/desktop-client/src/style/styles.ts (+10 -0)
📝 packages/loot-core/src/mocks/budget.ts (+1 -4)
📝 packages/loot-core/src/server/db/index.ts (+15 -14)
📝 packages/loot-core/src/shared/months.ts (+5 -0)
📝 packages/loot-core/src/types/models/category-group.d.ts (+2 -0)
📝 packages/loot-core/src/types/models/category.d.ts (+2 -3)

...and 2 more files

📄 Description

Add the following tooltip options in mobile balance:

  • Transfer to another category
  • Rollover overspending
  • Cover overspending

🔄 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/1802 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 10/16/2023 **Status:** ✅ Merged **Merged:** 10/30/2023 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `mobile-balance-cover-transfer` --- ### 📝 Commits (9) - [`187f9f7`](https://github.com/actualbudget/actual/commit/187f9f7273c4e4c5108c670292b29c88bce8724a) Mobile balance cover/transfer - [`ae22fd1`](https://github.com/actualbudget/actual/commit/ae22fd1b0d56da616f0573dc4704fa28e8fcc178) Release notes - [`9f35b02`](https://github.com/actualbudget/actual/commit/9f35b02a52b9109408b0958d3ee19939de447fdd) Fix errors - [`d04c40a`](https://github.com/actualbudget/actual/commit/d04c40af2b1d40ca26ef8c40f997b58f57626dc9) Cleanup - [`9a06ae8`](https://github.com/actualbudget/actual/commit/9a06ae8f53381cc83932955137c56604ff3b9b67) Fix hit boxes and add line clamp - [`867379f`](https://github.com/actualbudget/actual/commit/867379f30166e2268da3e1d12476e2c85e1f4815) Fix styling - [`d8fee00`](https://github.com/actualbudget/actual/commit/d8fee00c5456d7a438d73fab2f7d8e06ea0d8aa7) Prevent simultaneous field edits - [`11e7288`](https://github.com/actualbudget/actual/commit/11e7288507c21b82b5af2f216eba82b695f81d4c) Use onPointerDown - [`6b86184`](https://github.com/actualbudget/actual/commit/6b861847e9774ff9de3bdc55313fefe2085c6923) Remove balanceTooltip close effect ### 📊 Changes **22 files changed** (+777 additions, -556 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/budget.test.js-snapshots/Budget-transfer-funds-to-another-category-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-loads-the-budget-page-with-budgeted-amounts-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx` (+19 -23) 📝 `packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx` (+12 -3) ➖ `packages/desktop-client/src/components/budget/CategoryGroupsContext.js` (+0 -3) 📝 `packages/desktop-client/src/components/budget/DynamicBudgetTable.js` (+27 -30) 📝 `packages/desktop-client/src/components/budget/MobileBudgetTable.js` (+461 -285) ➕ `packages/desktop-client/src/components/budget/rollover/BalanceTooltip.tsx` (+106 -0) ➕ `packages/desktop-client/src/components/budget/rollover/CoverTooltip.tsx` (+83 -0) 📝 `packages/desktop-client/src/components/budget/rollover/TransferTooltip.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/budget/rollover/rollover-components.tsx` (+3 -163) 📝 `packages/desktop-client/src/components/budget/util.ts` (+11 -1) 📝 `packages/desktop-client/src/components/reports/CategorySelector.tsx` (+8 -7) 📝 `packages/desktop-client/src/components/tooltips.js` (+1 -0) 📝 `packages/desktop-client/src/style/styles.ts` (+10 -0) 📝 `packages/loot-core/src/mocks/budget.ts` (+1 -4) 📝 `packages/loot-core/src/server/db/index.ts` (+15 -14) 📝 `packages/loot-core/src/shared/months.ts` (+5 -0) 📝 `packages/loot-core/src/types/models/category-group.d.ts` (+2 -0) 📝 `packages/loot-core/src/types/models/category.d.ts` (+2 -3) _...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 --> Add the following tooltip options in mobile balance: - Transfer to another category - Rollover overspending - Cover overspending --- <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-02-28 20:49:34 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#3967