[PR #2472] [MERGED] [Mobile]: More functionalities #11373

Closed
opened 2026-04-10 20:59:11 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2472
Author: @joel-jeremy
Created: 3/17/2024
Status: Merged
Merged: 4/4/2024
Merged by: @joel-jeremy

Base: masterHead: mobile-menu-modal


📝 Commits (10+)

📊 Changes

41 files changed (+2177 additions, -743 deletions)

View changed files

📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-5-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-opens-individual-account-page-and-checks-that-filtering-is-working-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-opens-individual-account-page-and-checks-that-filtering-is-working-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-opens-individual-account-page-and-checks-that-filtering-is-working-5-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/Modals.tsx (+180 -18)
📝 packages/desktop-client/src/components/autocomplete/AccountAutocomplete.tsx (+1 -1)
📝 packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx (+1 -1)
📝 packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.tsx (+2 -1)
📝 packages/desktop-client/src/components/budget/index.tsx (+6 -1)
📝 packages/desktop-client/src/components/budget/report/BalanceMenu.tsx (+1 -1)
📝 packages/desktop-client/src/components/budget/rollover/BalanceMenu.tsx (+1 -1)
📝 packages/desktop-client/src/components/budget/rollover/RolloverContext.tsx (+4 -4)
📝 packages/desktop-client/src/components/budget/rollover/budgetsummary/ToBudgetMenu.tsx (+1 -1)
📝 packages/desktop-client/src/components/mobile/MobileForms.tsx (+3 -3)
📝 packages/desktop-client/src/components/mobile/accounts/Account.jsx (+23 -2)
📝 packages/desktop-client/src/components/mobile/accounts/AccountDetails.jsx (+83 -27)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+283 -279)
📝 packages/desktop-client/src/components/mobile/budget/index.tsx (+39 -36)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx (+84 -17)
packages/desktop-client/src/components/modals/AccountAutocompleteModal.tsx (+78 -0)

...and 21 more files

📄 Description

Added for mobile:

  • Updated the balance tooltip to be a modal
  • Scheduled transaction action modals
    • Post transaction
    • Skip scheduled date
    • View schedule (not supported for now)
  • Budget summary action modals
    • Move to a category
    • Hold for next month
    • Reset hold buffer
  • Account action modals
    • Rename account
    • Close account
    • Reopen account

🔄 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/2472 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 3/17/2024 **Status:** ✅ Merged **Merged:** 4/4/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `mobile-menu-modal` --- ### 📝 Commits (10+) - [`db83253`](https://github.com/actualbudget/actual/commit/db83253fdad034148ef841771f240c27b4fa0528) Balance modals - [`238a9de`](https://github.com/actualbudget/actual/commit/238a9defad9309761a917c51331050d3ec783110) Release notes - [`849d864`](https://github.com/actualbudget/actual/commit/849d8647361c2a5cb9e6420601fa26e5f1d76c95) Fix typecheck errors - [`b350fde`](https://github.com/actualbudget/actual/commit/b350fde624c134970036e8579d8362d38f158bf6) Fix errors - [`5f481f7`](https://github.com/actualbudget/actual/commit/5f481f790c0d53fd8994844d33efe760d01b29b9) Mobile scheduled transaction modal - [`8e49824`](https://github.com/actualbudget/actual/commit/8e49824cd4e11fbed6ef001018165116c08d8372) Cleanup - [`1992f77`](https://github.com/actualbudget/actual/commit/1992f7709339cbecd41a1cc1901bf3f39abb51e5) Fix props - [`725dd14`](https://github.com/actualbudget/actual/commit/725dd14a5cb106a4f2df164f3c3c1c67cd64041f) Fix typecheck errors - [`c141a19`](https://github.com/actualbudget/actual/commit/c141a192a796b391a45e6dd0f6367248a132ee6b) Updates - [`033759c`](https://github.com/actualbudget/actual/commit/033759c764cc9689a61f9d8fb506aa59ad4d791c) Fix autocomplete typings ### 📊 Changes **41 files changed** (+2177 additions, -743 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-5-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-opens-individual-account-page-and-checks-that-filtering-is-working-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-opens-individual-account-page-and-checks-that-filtering-is-working-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-opens-individual-account-page-and-checks-that-filtering-is-working-5-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/Modals.tsx` (+180 -18) 📝 `packages/desktop-client/src/components/autocomplete/AccountAutocomplete.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/autocomplete/PayeeAutocomplete.tsx` (+2 -1) 📝 `packages/desktop-client/src/components/budget/index.tsx` (+6 -1) 📝 `packages/desktop-client/src/components/budget/report/BalanceMenu.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/budget/rollover/BalanceMenu.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/budget/rollover/RolloverContext.tsx` (+4 -4) 📝 `packages/desktop-client/src/components/budget/rollover/budgetsummary/ToBudgetMenu.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/mobile/MobileForms.tsx` (+3 -3) 📝 `packages/desktop-client/src/components/mobile/accounts/Account.jsx` (+23 -2) 📝 `packages/desktop-client/src/components/mobile/accounts/AccountDetails.jsx` (+83 -27) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+283 -279) 📝 `packages/desktop-client/src/components/mobile/budget/index.tsx` (+39 -36) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx` (+84 -17) ➕ `packages/desktop-client/src/components/modals/AccountAutocompleteModal.tsx` (+78 -0) _...and 21 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 --> Added for mobile: - Updated the balance tooltip to be a modal - Scheduled transaction action modals - Post transaction - Skip scheduled date - View schedule (not supported for now) - Budget summary action modals - Move to a category - Hold for next month - Reset hold buffer - Account action modals - Rename account - Close account - Reopen account --- <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-10 20:59:11 -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#11373