[PR #2892] [MERGED] [Mobile] Long press transaction to reveal floating action bar with bulk actions #4572

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2892
Author: @joel-jeremy
Created: 6/17/2024
Status: Merged
Merged: 8/12/2024
Merged by: @joel-jeremy

Base: masterHead: mobile-transaction-long-press


📝 Commits (10+)

📊 Changes

44 files changed (+1395 additions, -532 deletions)

View changed files

📝 packages/desktop-client/package.json (+1 -0)
📝 packages/desktop-client/src/components/Modals.tsx (+2 -0)
📝 packages/desktop-client/src/components/Notifications.tsx (+37 -20)
📝 packages/desktop-client/src/components/accounts/Account.jsx (+40 -236)
📝 packages/desktop-client/src/components/accounts/Header.jsx (+4 -2)
packages/desktop-client/src/components/mobile/FloatingActionBar.tsx (+30 -0)
📝 packages/desktop-client/src/components/mobile/accounts/AccountTransactions.jsx (+2 -2)
📝 packages/desktop-client/src/components/mobile/budget/CategoryTransactions.jsx (+2 -2)
📝 packages/desktop-client/src/components/mobile/transactions/Transaction.jsx (+142 -105)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx (+370 -5)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.jsx (+6 -4)
📝 packages/desktop-client/src/components/modals/ConfirmTransactionDelete.tsx (+3 -3)
📝 packages/desktop-client/src/components/payees/ManagePayees.jsx (+3 -1)
📝 packages/desktop-client/src/components/payees/PayeeTableRow.tsx (+5 -1)
📝 packages/desktop-client/src/components/rules/RuleRow.tsx (+5 -1)
📝 packages/desktop-client/src/components/rules/RulesHeader.tsx (+3 -1)
📝 packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx (+14 -4)
📝 packages/desktop-client/src/components/schedules/ScheduleLink.tsx (+9 -3)
📝 packages/desktop-client/src/components/transactions/SelectedTransactionsButton.jsx (+4 -14)
📝 packages/desktop-client/src/components/transactions/SimpleTransactionsTable.jsx (+11 -2)

...and 24 more files

📄 Description

image
image
image


🔄 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/2892 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 6/17/2024 **Status:** ✅ Merged **Merged:** 8/12/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `mobile-transaction-long-press` --- ### 📝 Commits (10+) - [`0ee83be`](https://github.com/actualbudget/actual/commit/0ee83be904f7411b12d374ea748a6d33576072fa) Mobile transaction long press - [`9319c26`](https://github.com/actualbudget/actual/commit/9319c26cd08445f162dd0a937bb7165b2bcf4afa) Floating action bar - [`dfb9776`](https://github.com/actualbudget/actual/commit/dfb9776de84d872ca1a6e4efeca3cb12cd6000b7) Styling - [`4f4bfb3`](https://github.com/actualbudget/actual/commit/4f4bfb382e3bb636c1fd07340840bfab70d30a07) Add functionality - [`1651bc0`](https://github.com/actualbudget/actual/commit/1651bc0ca360bd4d0c40e834b356cc03a1ce53b6) Fix typecheck error - [`4023a48`](https://github.com/actualbudget/actual/commit/4023a48bb42c8bcc199cb9f77afb941ec2621c7b) Release notes - [`f3a48ae`](https://github.com/actualbudget/actual/commit/f3a48aeea848a08d4b7bdfec1c068fc823abc888) Undo notifications - [`51aca79`](https://github.com/actualbudget/actual/commit/51aca79950f8af10d743994624e35252562f9d2e) Fix schedules and update transaction delete confirmation message - [`735229d`](https://github.com/actualbudget/actual/commit/735229df166bd4e1437d9b0af9e8bb5f96ff201f) Use react-aria useLongPress - [`16cc373`](https://github.com/actualbudget/actual/commit/16cc373e2ded4ad7643c3d2a5dc60d9b48e44965) Bulk edit amount display ### 📊 Changes **44 files changed** (+1395 additions, -532 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/package.json` (+1 -0) 📝 `packages/desktop-client/src/components/Modals.tsx` (+2 -0) 📝 `packages/desktop-client/src/components/Notifications.tsx` (+37 -20) 📝 `packages/desktop-client/src/components/accounts/Account.jsx` (+40 -236) 📝 `packages/desktop-client/src/components/accounts/Header.jsx` (+4 -2) ➕ `packages/desktop-client/src/components/mobile/FloatingActionBar.tsx` (+30 -0) 📝 `packages/desktop-client/src/components/mobile/accounts/AccountTransactions.jsx` (+2 -2) 📝 `packages/desktop-client/src/components/mobile/budget/CategoryTransactions.jsx` (+2 -2) 📝 `packages/desktop-client/src/components/mobile/transactions/Transaction.jsx` (+142 -105) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx` (+370 -5) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionListWithBalances.jsx` (+6 -4) 📝 `packages/desktop-client/src/components/modals/ConfirmTransactionDelete.tsx` (+3 -3) 📝 `packages/desktop-client/src/components/payees/ManagePayees.jsx` (+3 -1) 📝 `packages/desktop-client/src/components/payees/PayeeTableRow.tsx` (+5 -1) 📝 `packages/desktop-client/src/components/rules/RuleRow.tsx` (+5 -1) 📝 `packages/desktop-client/src/components/rules/RulesHeader.tsx` (+3 -1) 📝 `packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx` (+14 -4) 📝 `packages/desktop-client/src/components/schedules/ScheduleLink.tsx` (+9 -3) 📝 `packages/desktop-client/src/components/transactions/SelectedTransactionsButton.jsx` (+4 -14) 📝 `packages/desktop-client/src/components/transactions/SimpleTransactionsTable.jsx` (+11 -2) _...and 24 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 --> ![image](https://github.com/user-attachments/assets/0e1cf580-3b1a-4d69-8e28-50ff4f384fa9) ![image](https://github.com/user-attachments/assets/ff74e8b4-bb23-47e1-b7ef-1b5420f13fd8) ![image](https://github.com/user-attachments/assets/d395bca9-df5b-423f-a1c5-e046125f7aab) --- <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:57:51 -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#4572