[PR #2068] [MERGED] Mobile split transactions #4096

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2068
Author: @joel-jeremy
Created: 12/11/2023
Status: Merged
Merged: 12/22/2023
Merged by: @joel-jeremy

Base: masterHead: mobile-split-transactions


📝 Commits (10+)

📊 Changes

18 files changed (+1356 additions, -988 deletions)

View changed files

📝 packages/desktop-client/e2e/mobile.test.js (+4 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-from-accounts-id-page-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-from-accounts-id-page-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-1-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-2-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-3-chromium-linux.png (+0 -0)
📝 packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-4-chromium-linux.png (+0 -0)
📝 packages/desktop-client/src/components/Modals.tsx (+1 -0)
📝 packages/desktop-client/src/components/budget/MobileBudgetTable.jsx (+2 -2)
📝 packages/desktop-client/src/components/mobile/MobileAmountInput.jsx (+177 -261)
📝 packages/desktop-client/src/components/mobile/MobileForms.jsx (+2 -3)
📝 packages/desktop-client/src/components/modals/EditField.jsx (+8 -2)
📝 packages/desktop-client/src/components/schedules/EditSchedule.jsx (+2 -2)
📝 packages/desktop-client/src/components/transactions/MobileTransaction.jsx (+978 -682)
📝 packages/desktop-client/src/components/util/AmountInput.tsx (+50 -36)
packages/desktop-client/src/hooks/useSingleActiveEditForm.tsx (+125 -0)
📝 packages/loot-core/src/client/state-types/modals.d.ts (+1 -0)
upcoming-release-notes/2068.md (+6 -0)

📄 Description

Mobile split transactions + a hook to limit editing a field when another is currently being edited


🔄 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/2068 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 12/11/2023 **Status:** ✅ Merged **Merged:** 12/22/2023 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `mobile-split-transactions` --- ### 📝 Commits (10+) - [`4b15151`](https://github.com/actualbudget/actual/commit/4b151518833bc0a3081cf0792238253d7a5b4ee9) Mobile split transactions - [`77416e4`](https://github.com/actualbudget/actual/commit/77416e42cbde8e0e500e10ae5cb990914b183d69) Release notes - [`051ce04`](https://github.com/actualbudget/actual/commit/051ce044603a6964e725569214a2fdb38dbaa671) Fix colors - [`e2dda66`](https://github.com/actualbudget/actual/commit/e2dda6661548c40344a55691db152796d2ff989f) Update test ids - [`28aa10c`](https://github.com/actualbudget/actual/commit/28aa10c12e1d4aca679b55679148610ab4cd35a3) AmountInput component on split transactions - [`d327524`](https://github.com/actualbudget/actual/commit/d3275246b81cdc177b214c8d4ab03383d7572e8c) Add notes to mobile split transaction - [`02b2955`](https://github.com/actualbudget/actual/commit/02b2955ed0304b489d31d506c5b9933784e66492) Ease of use improvements + functional components - [`888da64`](https://github.com/actualbudget/actual/commit/888da64e206a6a986a2a79ddbc8d122739785a66) Ease of use updates - [`ac62032`](https://github.com/actualbudget/actual/commit/ac62032fb7f03035719c8365137cec192c54bcbb) VRT updates - [`660d821`](https://github.com/actualbudget/actual/commit/660d821bc37132edec21e63867a51af309d46b52) Fix AmountInput blur ### 📊 Changes **18 files changed** (+1356 additions, -988 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/e2e/mobile.test.js` (+4 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-from-accounts-id-page-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-from-accounts-id-page-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-1-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-2-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-3-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/e2e/mobile.test.js-snapshots/Mobile-creates-a-transaction-via-footer-button-4-chromium-linux.png` (+0 -0) 📝 `packages/desktop-client/src/components/Modals.tsx` (+1 -0) 📝 `packages/desktop-client/src/components/budget/MobileBudgetTable.jsx` (+2 -2) 📝 `packages/desktop-client/src/components/mobile/MobileAmountInput.jsx` (+177 -261) 📝 `packages/desktop-client/src/components/mobile/MobileForms.jsx` (+2 -3) 📝 `packages/desktop-client/src/components/modals/EditField.jsx` (+8 -2) 📝 `packages/desktop-client/src/components/schedules/EditSchedule.jsx` (+2 -2) 📝 `packages/desktop-client/src/components/transactions/MobileTransaction.jsx` (+978 -682) 📝 `packages/desktop-client/src/components/util/AmountInput.tsx` (+50 -36) ➕ `packages/desktop-client/src/hooks/useSingleActiveEditForm.tsx` (+125 -0) 📝 `packages/loot-core/src/client/state-types/modals.d.ts` (+1 -0) ➕ `upcoming-release-notes/2068.md` (+6 -0) </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 --> Mobile split transactions + a hook to limit editing a field when another is currently being edited --- <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:51:28 -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#4096