[PR #2425] [MERGED] [Maintenance] Reorganize mobile components #18661

Closed
opened 2026-04-14 20:49:14 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2425
Author: @joel-jeremy
Created: 3/5/2024
Status: Merged
Merged: 3/12/2024
Merged by: @joel-jeremy

Base: masterHead: mobile-components


📝 Commits (8)

📊 Changes

28 files changed (+967 additions, -933 deletions)

View changed files

📝 packages/desktop-client/package.json (+1 -0)
📝 packages/desktop-client/src/components/FinancesApp.tsx (+1 -1)
📝 packages/desktop-client/src/components/accounts/Account.jsx (+4 -4)
📝 packages/desktop-client/src/components/accounts/Balance.jsx (+1 -1)
📝 packages/desktop-client/src/components/accounts/Header.jsx (+1 -1)
📝 packages/desktop-client/src/components/mobile/PullToRefresh.tsx (+0 -0)
📝 packages/desktop-client/src/components/mobile/accounts/Account.jsx (+57 -58)
📝 packages/desktop-client/src/components/mobile/accounts/AccountDetails.jsx (+18 -18)
📝 packages/desktop-client/src/components/mobile/accounts/Accounts.jsx (+15 -15)
📝 packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx (+34 -35)
📝 packages/desktop-client/src/components/mobile/budget/ListItem.tsx (+2 -2)
📝 packages/desktop-client/src/components/mobile/budget/index.tsx (+127 -134)
📝 packages/desktop-client/src/components/mobile/transactions/FocusableAmountInput.jsx (+10 -22)
packages/desktop-client/src/components/mobile/transactions/ListBox.jsx (+53 -0)
packages/desktop-client/src/components/mobile/transactions/ListBoxSection.jsx (+61 -0)
packages/desktop-client/src/components/mobile/transactions/Option.jsx (+33 -0)
packages/desktop-client/src/components/mobile/transactions/Transaction.jsx (+209 -0)
📝 packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx (+84 -523)
packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx (+117 -0)
📝 packages/desktop-client/src/components/responsive/narrow.ts (+3 -3)

...and 8 more files

📄 Description

Moved mobile components under the components/mobile folder and moved exported components to separate files.


🔄 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/2425 **Author:** [@joel-jeremy](https://github.com/joel-jeremy) **Created:** 3/5/2024 **Status:** ✅ Merged **Merged:** 3/12/2024 **Merged by:** [@joel-jeremy](https://github.com/joel-jeremy) **Base:** `master` ← **Head:** `mobile-components` --- ### 📝 Commits (8) - [`9de9268`](https://github.com/actualbudget/actual/commit/9de9268f97aa9a4043ec04c5cee43fcfd43ed9ca) Reorganize mobile components - [`a0ca324`](https://github.com/actualbudget/actual/commit/a0ca3240c07fe0882269d0aa2f1bc0655aef0cda) Fix lint error - [`eef0afd`](https://github.com/actualbudget/actual/commit/eef0afd21a57f05910a410173efb09f4e3049f0e) Cleanup - [`c1dc708`](https://github.com/actualbudget/actual/commit/c1dc70894591167160c7589c1897f21cdd002403) Fix lint error - [`4d1b52c`](https://github.com/actualbudget/actual/commit/4d1b52c5d9d6b4e936414e5d3db28bf86fab48db) Release notes - [`244c0f3`](https://github.com/actualbudget/actual/commit/244c0f34237421cda473842a2354b04b8457f61a) Cleanup - [`58d30b6`](https://github.com/actualbudget/actual/commit/58d30b6e48a6f44d44fce1981469f7d8e6c0e8b9) Cleanup useActions - [`e75408c`](https://github.com/actualbudget/actual/commit/e75408c90ba5e48cc2514c3f75f06ca51c53420e) useDebounceCallback ### 📊 Changes **28 files changed** (+967 additions, -933 deletions) <details> <summary>View changed files</summary> 📝 `packages/desktop-client/package.json` (+1 -0) 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/accounts/Account.jsx` (+4 -4) 📝 `packages/desktop-client/src/components/accounts/Balance.jsx` (+1 -1) 📝 `packages/desktop-client/src/components/accounts/Header.jsx` (+1 -1) 📝 `packages/desktop-client/src/components/mobile/PullToRefresh.tsx` (+0 -0) 📝 `packages/desktop-client/src/components/mobile/accounts/Account.jsx` (+57 -58) 📝 `packages/desktop-client/src/components/mobile/accounts/AccountDetails.jsx` (+18 -18) 📝 `packages/desktop-client/src/components/mobile/accounts/Accounts.jsx` (+15 -15) 📝 `packages/desktop-client/src/components/mobile/budget/BudgetTable.jsx` (+34 -35) 📝 `packages/desktop-client/src/components/mobile/budget/ListItem.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/mobile/budget/index.tsx` (+127 -134) 📝 `packages/desktop-client/src/components/mobile/transactions/FocusableAmountInput.jsx` (+10 -22) ➕ `packages/desktop-client/src/components/mobile/transactions/ListBox.jsx` (+53 -0) ➕ `packages/desktop-client/src/components/mobile/transactions/ListBoxSection.jsx` (+61 -0) ➕ `packages/desktop-client/src/components/mobile/transactions/Option.jsx` (+33 -0) ➕ `packages/desktop-client/src/components/mobile/transactions/Transaction.jsx` (+209 -0) 📝 `packages/desktop-client/src/components/mobile/transactions/TransactionEdit.jsx` (+84 -523) ➕ `packages/desktop-client/src/components/mobile/transactions/TransactionList.jsx` (+117 -0) 📝 `packages/desktop-client/src/components/responsive/narrow.ts` (+3 -3) _...and 8 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 --> Moved mobile components under the `components/mobile` folder and moved exported components to separate files. --- <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-14 20:49:14 -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#18661