[PR #4793] [CLOSED] [WIP] Feat/frontend plugins cleanup and plugin configuration #5585

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/4793
Author: @alecbakholdin
Created: 4/12/2025
Status: Closed

Base: feat/frontend-pluginsHead: feat/frontend-plugins-cleanup


📝 Commits (4)

  • fc47450 cleaned up some linting and typing things
  • 8edadf4 more linting and typecheck changes
  • 5f36029 started work on configuration
  • a27cfe1 plugin configurability

📊 Changes

26 files changed (+385 additions, -126 deletions)

View changed files

📝 packages/component-library/src/props/modalProps.ts (+2 -2)
📝 packages/desktop-client/src/components/FinancesApp.tsx (+1 -1)
📝 packages/desktop-client/src/components/LoggedInUser.tsx (+2 -2)
📝 packages/desktop-client/src/components/Modals.tsx (+5 -1)
📝 packages/desktop-client/src/components/common/Modal.tsx (+3 -2)
packages/desktop-client/src/components/modals/ConfigurePluginModal.tsx (+106 -0)
📝 packages/desktop-client/src/components/modals/PluginModal.tsx (+2 -2)
📝 packages/desktop-client/src/components/modals/SelectNewPluginModal.tsx (+1 -1)
📝 packages/desktop-client/src/components/plugins/ManagePlugins.tsx (+49 -24)
📝 packages/desktop-client/src/components/plugins/PluginsHeader.tsx (+2 -2)
📝 packages/desktop-client/src/components/sidebar/PrimaryButtons.tsx (+2 -2)
📝 packages/desktop-client/src/plugin/ActualPluginsProvider.tsx (+7 -7)
📝 packages/desktop-client/src/plugin/core/githubUtils.ts (+2 -2)
packages/desktop-client/src/plugin/core/hooks.ts (+35 -0)
📝 packages/desktop-client/src/plugin/core/pluginInstaller.ts (+9 -6)
📝 packages/desktop-client/src/plugin/core/pluginLoader.ts (+12 -9)
📝 packages/desktop-client/src/plugin/core/pluginStore.ts (+57 -34)
📝 packages/loot-core/src/client/modals/modalsSlice.ts (+8 -1)
📝 packages/loot-core/src/platform/server/indexeddb/index.web.ts (+3 -0)
📝 packages/loot-core/src/server/plugins/pluginUtil.ts (+1 -1)

...and 6 more files

📄 Description

Cleaned up some typecheck/linting stuff. Added plugin configuration. Not persisted to sync server yet.


🔄 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/4793 **Author:** [@alecbakholdin](https://github.com/alecbakholdin) **Created:** 4/12/2025 **Status:** ❌ Closed **Base:** `feat/frontend-plugins` ← **Head:** `feat/frontend-plugins-cleanup` --- ### 📝 Commits (4) - [`fc47450`](https://github.com/actualbudget/actual/commit/fc47450661101b27640abfd97cb594f69805dd6f) cleaned up some linting and typing things - [`8edadf4`](https://github.com/actualbudget/actual/commit/8edadf4af5198e6fd2bc9fb5b47e1491584f7cdf) more linting and typecheck changes - [`5f36029`](https://github.com/actualbudget/actual/commit/5f360292cfbdb7b435f53ea63d4e90e2866c7fe4) started work on configuration - [`a27cfe1`](https://github.com/actualbudget/actual/commit/a27cfe1932a740e086255da453088917cb23764a) plugin configurability ### 📊 Changes **26 files changed** (+385 additions, -126 deletions) <details> <summary>View changed files</summary> 📝 `packages/component-library/src/props/modalProps.ts` (+2 -2) 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/LoggedInUser.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/Modals.tsx` (+5 -1) 📝 `packages/desktop-client/src/components/common/Modal.tsx` (+3 -2) ➕ `packages/desktop-client/src/components/modals/ConfigurePluginModal.tsx` (+106 -0) 📝 `packages/desktop-client/src/components/modals/PluginModal.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/modals/SelectNewPluginModal.tsx` (+1 -1) 📝 `packages/desktop-client/src/components/plugins/ManagePlugins.tsx` (+49 -24) 📝 `packages/desktop-client/src/components/plugins/PluginsHeader.tsx` (+2 -2) 📝 `packages/desktop-client/src/components/sidebar/PrimaryButtons.tsx` (+2 -2) 📝 `packages/desktop-client/src/plugin/ActualPluginsProvider.tsx` (+7 -7) 📝 `packages/desktop-client/src/plugin/core/githubUtils.ts` (+2 -2) ➕ `packages/desktop-client/src/plugin/core/hooks.ts` (+35 -0) 📝 `packages/desktop-client/src/plugin/core/pluginInstaller.ts` (+9 -6) 📝 `packages/desktop-client/src/plugin/core/pluginLoader.ts` (+12 -9) 📝 `packages/desktop-client/src/plugin/core/pluginStore.ts` (+57 -34) 📝 `packages/loot-core/src/client/modals/modalsSlice.ts` (+8 -1) 📝 `packages/loot-core/src/platform/server/indexeddb/index.web.ts` (+3 -0) 📝 `packages/loot-core/src/server/plugins/pluginUtil.ts` (+1 -1) _...and 6 more files_ </details> ### 📄 Description Cleaned up some typecheck/linting stuff. Added plugin configuration. Not persisted to sync server yet. --- <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 21:14: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#5585