[PR #2231] [MERGED] Convert FiltersMenu to Typescript (part 1) #4193

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

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/2231
Author: @carkom
Created: 1/14/2024
Status: Merged
Merged: 2/2/2024
Merged by: @carkom

Base: masterHead: convertFiltersMenu


📝 Commits (10+)

📊 Changes

14 files changed (+351 additions, -264 deletions)

View changed files

packages/desktop-client/src/components/filters/AppliedFilters.tsx (+55 -0)
📝 packages/desktop-client/src/components/filters/CompactFiltersButton.tsx (+1 -6)
packages/desktop-client/src/components/filters/FilterExpression.tsx (+108 -0)
📝 packages/desktop-client/src/components/filters/FiltersButton.tsx (+1 -6)
📝 packages/desktop-client/src/components/filters/FiltersMenu.jsx (+6 -217)
packages/desktop-client/src/components/filters/OpButton.tsx (+36 -0)
📝 packages/desktop-client/src/components/filters/SavedFilters.jsx (+16 -16)
packages/desktop-client/src/components/filters/subfieldFromFilter.ts (+27 -0)
packages/desktop-client/src/components/filters/subfieldToOptions.ts (+34 -0)
packages/desktop-client/src/components/filters/updateFilterReducer.ts (+34 -0)
📝 packages/desktop-client/src/components/reports/Header.jsx (+2 -1)
📝 packages/desktop-client/src/components/reports/reports/CustomReport.jsx (+1 -1)
📝 packages/loot-core/src/types/models/rule.d.ts (+24 -17)
upcoming-release-notes/2231.md (+6 -0)

📄 Description

Split out all the elements into separate files - working to get rid of mega-files in the code base. Updated all those files to Typescript.


🔄 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/2231 **Author:** [@carkom](https://github.com/carkom) **Created:** 1/14/2024 **Status:** ✅ Merged **Merged:** 2/2/2024 **Merged by:** [@carkom](https://github.com/carkom) **Base:** `master` ← **Head:** `convertFiltersMenu` --- ### 📝 Commits (10+) - [`6f53276`](https://github.com/actualbudget/actual/commit/6f53276865c67ddd71436c30317bf92fa3154740) migration work - [`f3b915d`](https://github.com/actualbudget/actual/commit/f3b915d6c6068730ca777750eb28c49f5e82e3f0) notes - [`3a01141`](https://github.com/actualbudget/actual/commit/3a01141ceeb788800bd89555cfcbd22c882cdca4) Merge branch 'master' into convertFiltersMenu - [`b249828`](https://github.com/actualbudget/actual/commit/b249828850379ec568345d70ed7548fd5b3a2475) typecheck - [`b6d5178`](https://github.com/actualbudget/actual/commit/b6d5178d22a035ee4754b729fb77d23f788faf7c) typecheck fixes - [`6bb0376`](https://github.com/actualbudget/actual/commit/6bb03769ae57545b684de14be9206df0f1d600a9) fixes - [`56c8f3d`](https://github.com/actualbudget/actual/commit/56c8f3d4d1061c3d3a9da0ef853bfa3e737d9fe2) Merge remote-tracking branch 'upstream/master' into convertFiltersMenu - [`8c1a689`](https://github.com/actualbudget/actual/commit/8c1a68967c08bd12f709a2df596367d5e11eb83f) merge fixes - [`fa3913d`](https://github.com/actualbudget/actual/commit/fa3913ddef28abdb1c4419e64220cd8a06140665) typecheck updates - [`832811c`](https://github.com/actualbudget/actual/commit/832811cd7fc54d914aac0477641b2002b6498dc2) review fixes ### 📊 Changes **14 files changed** (+351 additions, -264 deletions) <details> <summary>View changed files</summary> ➕ `packages/desktop-client/src/components/filters/AppliedFilters.tsx` (+55 -0) 📝 `packages/desktop-client/src/components/filters/CompactFiltersButton.tsx` (+1 -6) ➕ `packages/desktop-client/src/components/filters/FilterExpression.tsx` (+108 -0) 📝 `packages/desktop-client/src/components/filters/FiltersButton.tsx` (+1 -6) 📝 `packages/desktop-client/src/components/filters/FiltersMenu.jsx` (+6 -217) ➕ `packages/desktop-client/src/components/filters/OpButton.tsx` (+36 -0) 📝 `packages/desktop-client/src/components/filters/SavedFilters.jsx` (+16 -16) ➕ `packages/desktop-client/src/components/filters/subfieldFromFilter.ts` (+27 -0) ➕ `packages/desktop-client/src/components/filters/subfieldToOptions.ts` (+34 -0) ➕ `packages/desktop-client/src/components/filters/updateFilterReducer.ts` (+34 -0) 📝 `packages/desktop-client/src/components/reports/Header.jsx` (+2 -1) 📝 `packages/desktop-client/src/components/reports/reports/CustomReport.jsx` (+1 -1) 📝 `packages/loot-core/src/types/models/rule.d.ts` (+24 -17) ➕ `upcoming-release-notes/2231.md` (+6 -0) </details> ### 📄 Description Split out all the elements into separate files - working to get rid of mega-files in the code base. Updated all those files to Typescript. --- <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:52:52 -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#4193