[PR #1282] [MERGED] Dashboard/filter UI #1236

Closed
opened 2026-03-03 00:25:15 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1282
Author: @ButteryCrumpet
Created: 10/28/2021
Status: Merged
Merged: 10/28/2021
Merged by: @Davy-c

Base: dashboard/newHead: dashboard/filter-ui


📝 Commits (10+)

  • 81c0069 update query types
  • 9480d79 update dashboard types
  • 7d18943 align core selectors with new types
  • 4881686 add prop to secondary condition components
  • 1552cdd use new types in form components
  • 7e89143 update api types
  • d9ae53b update Modal components
  • 122c2e0 update mobile components
  • dd800ec display prop filters in context menu
  • e7db94d filter docs with new query structure

📊 Changes

19 files changed (+637 additions, -988 deletions)

View changed files

📝 src/cloud/api/teams/dashboard/index.ts (+3 -3)
📝 src/cloud/components/DashboardFolderContextMenu.tsx (+39 -65)
src/cloud/components/Modal/contents/Dashboard/ConditionItem.tsx (+143 -0)
src/cloud/components/Modal/contents/Dashboard/ConditionValueControl.tsx (+159 -0)
📝 src/cloud/components/Modal/contents/Dashboard/CreateDashboardModal.tsx (+4 -5)
📝 src/cloud/components/Modal/contents/Dashboard/DashboardForm.tsx (+43 -108)
📝 src/cloud/components/Modal/contents/Dashboard/DateConditionValueTypeSelect.tsx (+53 -36)
📝 src/cloud/components/Modal/contents/Dashboard/DocAssigneeSelect.tsx (+13 -17)
📝 src/cloud/components/Modal/contents/Dashboard/DocDateSelect.tsx (+12 -18)
📝 src/cloud/components/Modal/contents/Dashboard/DocLabelSelect.tsx (+9 -11)
src/cloud/components/Modal/contents/Dashboard/SecondaryConditionItem.tsx (+0 -152)
src/cloud/components/Modal/contents/Dashboard/SecondaryConditionValueControl.tsx (+0 -85)
📝 src/cloud/components/Modal/contents/Dashboard/UpdateDashboardModal.tsx (+2 -41)
📝 src/cloud/components/Modal/contents/Dashboard/interfaces.ts (+10 -70)
📝 src/cloud/interfaces/db/dashboard.ts (+21 -98)
📝 src/cloud/pages/[teamId]/dashboard-folders/[dashboardFolderId].tsx (+99 -171)
📝 src/mobile/components/organisms/modals/DashboardCreateModal.tsx (+4 -4)
📝 src/mobile/components/organisms/modals/DashboardUpdateModal.tsx (+2 -41)
📝 src/mobile/components/organisms/modals/organisms/DashboardForm.tsx (+21 -63)

📄 Description

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/BoostIO/BoostNote-App/pull/1282 **Author:** [@ButteryCrumpet](https://github.com/ButteryCrumpet) **Created:** 10/28/2021 **Status:** ✅ Merged **Merged:** 10/28/2021 **Merged by:** [@Davy-c](https://github.com/Davy-c) **Base:** `dashboard/new` ← **Head:** `dashboard/filter-ui` --- ### 📝 Commits (10+) - [`81c0069`](https://github.com/BoostIO/BoostNote-App/commit/81c00692843446a8e4814b51b8869ac436e7911c) update query types - [`9480d79`](https://github.com/BoostIO/BoostNote-App/commit/9480d798453f39b7460cd59ee6714daf26ef448a) update dashboard types - [`7d18943`](https://github.com/BoostIO/BoostNote-App/commit/7d18943cf906e355991a7048ad4e8158bc75c7cb) align core selectors with new types - [`4881686`](https://github.com/BoostIO/BoostNote-App/commit/4881686f5be7e78acafc9f25d9c0fb3cf33c80c2) add prop to secondary condition components - [`1552cdd`](https://github.com/BoostIO/BoostNote-App/commit/1552cdda8452c0dac5d37cd5e47d960afa8b1ef4) use new types in form components - [`7e89143`](https://github.com/BoostIO/BoostNote-App/commit/7e89143b2b4916a7a32931d154458c580c54e575) update api types - [`d9ae53b`](https://github.com/BoostIO/BoostNote-App/commit/d9ae53b9f24abd6319f6938fcf70b69bab3e9234) update Modal components - [`122c2e0`](https://github.com/BoostIO/BoostNote-App/commit/122c2e0a8509cbd6963e9b42c5377d9cc49becb2) update mobile components - [`dd800ec`](https://github.com/BoostIO/BoostNote-App/commit/dd800ecf739db3d34603d81969466cb46e95873f) display prop filters in context menu - [`e7db94d`](https://github.com/BoostIO/BoostNote-App/commit/e7db94d910a68f2473cac9ae610aa7a5164913da) filter docs with new query structure ### 📊 Changes **19 files changed** (+637 additions, -988 deletions) <details> <summary>View changed files</summary> 📝 `src/cloud/api/teams/dashboard/index.ts` (+3 -3) 📝 `src/cloud/components/DashboardFolderContextMenu.tsx` (+39 -65) ➕ `src/cloud/components/Modal/contents/Dashboard/ConditionItem.tsx` (+143 -0) ➕ `src/cloud/components/Modal/contents/Dashboard/ConditionValueControl.tsx` (+159 -0) 📝 `src/cloud/components/Modal/contents/Dashboard/CreateDashboardModal.tsx` (+4 -5) 📝 `src/cloud/components/Modal/contents/Dashboard/DashboardForm.tsx` (+43 -108) 📝 `src/cloud/components/Modal/contents/Dashboard/DateConditionValueTypeSelect.tsx` (+53 -36) 📝 `src/cloud/components/Modal/contents/Dashboard/DocAssigneeSelect.tsx` (+13 -17) 📝 `src/cloud/components/Modal/contents/Dashboard/DocDateSelect.tsx` (+12 -18) 📝 `src/cloud/components/Modal/contents/Dashboard/DocLabelSelect.tsx` (+9 -11) ➖ `src/cloud/components/Modal/contents/Dashboard/SecondaryConditionItem.tsx` (+0 -152) ➖ `src/cloud/components/Modal/contents/Dashboard/SecondaryConditionValueControl.tsx` (+0 -85) 📝 `src/cloud/components/Modal/contents/Dashboard/UpdateDashboardModal.tsx` (+2 -41) 📝 `src/cloud/components/Modal/contents/Dashboard/interfaces.ts` (+10 -70) 📝 `src/cloud/interfaces/db/dashboard.ts` (+21 -98) 📝 `src/cloud/pages/[teamId]/dashboard-folders/[dashboardFolderId].tsx` (+99 -171) 📝 `src/mobile/components/organisms/modals/DashboardCreateModal.tsx` (+4 -4) 📝 `src/mobile/components/organisms/modals/DashboardUpdateModal.tsx` (+2 -41) 📝 `src/mobile/components/organisms/modals/organisms/DashboardForm.tsx` (+21 -63) </details> ### 📄 Description ![image](https://user-images.githubusercontent.com/19530989/139176998-5b49696d-6a41-49ff-aedb-c3729b119a87.png) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:25:15 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/BoostNote-App#1236
No description provided.