[PR #3263] feat: Command Palette for searching accross the dashboard #31318

Open
opened 2026-06-13 11:43:51 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/3263
Author: @Fredkiss3
Created: 6/12/2026
Status: 🔄 Open

Base: devHead: feat/command-bar


📝 Commits (5)

  • 444d293 🚧 WIP: copy command bar from existing PR
  • a68b570 🚧 wip: Use command bar nav items
  • abc0a41 ♻️ reorganize command bar items
  • ce77268 🚧 wip: block top position of command palette
  • 3bc5ab2 🚧 wip

📊 Changes

15 files changed (+1319 additions, -50 deletions)

View changed files

📝 messages/en-US.json (+59 -0)
📝 src/app/[orgId]/settings/layout.tsx (+4 -1)
📝 src/app/navigation.tsx (+232 -0)
📝 src/app/page.tsx (+3 -1)
📝 src/components/Layout.tsx (+51 -39)
📝 src/components/SitesTable.tsx (+0 -7)
src/components/command-palette/CommandPalette.tsx (+408 -0)
src/components/command-palette/CommandPaletteTrigger.tsx (+69 -0)
src/components/command-palette/useCommandPaletteActions.tsx (+161 -0)
src/components/command-palette/useCommandPaletteNavigation.ts (+57 -0)
src/components/command-palette/useCommandPaletteOrganizations.ts (+45 -0)
src/components/command-palette/useCommandPaletteSearch.ts (+142 -0)
📝 src/components/ui/command.tsx (+11 -2)
src/lib/flattenNavItems.ts (+42 -0)
src/lib/hydrateNavHref.ts (+35 -0)

📄 Description

Community Contribution License Agreement

By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.

Summary

TODO

Screenshots

TODO


🔄 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/fosrl/pangolin/pull/3263 **Author:** [@Fredkiss3](https://github.com/Fredkiss3) **Created:** 6/12/2026 **Status:** 🔄 Open **Base:** `dev` ← **Head:** `feat/command-bar` --- ### 📝 Commits (5) - [`444d293`](https://github.com/fosrl/pangolin/commit/444d293a29575402575c16e92955df1033f7b30a) 🚧 WIP: copy command bar from existing PR - [`a68b570`](https://github.com/fosrl/pangolin/commit/a68b57067c5b93662e18c1da0f9f48d3d41ebff9) 🚧 wip: Use command bar nav items - [`abc0a41`](https://github.com/fosrl/pangolin/commit/abc0a41d9ecf9a27a023202a729311d748c63310) ♻️ reorganize command bar items - [`ce77268`](https://github.com/fosrl/pangolin/commit/ce77268c82a7d2b1ed4618e80e752d3856612718) 🚧 wip: block top position of command palette - [`3bc5ab2`](https://github.com/fosrl/pangolin/commit/3bc5ab2136f030c0bc5477ba95001c9b69b7b546) 🚧 wip ### 📊 Changes **15 files changed** (+1319 additions, -50 deletions) <details> <summary>View changed files</summary> 📝 `messages/en-US.json` (+59 -0) 📝 `src/app/[orgId]/settings/layout.tsx` (+4 -1) 📝 `src/app/navigation.tsx` (+232 -0) 📝 `src/app/page.tsx` (+3 -1) 📝 `src/components/Layout.tsx` (+51 -39) 📝 `src/components/SitesTable.tsx` (+0 -7) ➕ `src/components/command-palette/CommandPalette.tsx` (+408 -0) ➕ `src/components/command-palette/CommandPaletteTrigger.tsx` (+69 -0) ➕ `src/components/command-palette/useCommandPaletteActions.tsx` (+161 -0) ➕ `src/components/command-palette/useCommandPaletteNavigation.ts` (+57 -0) ➕ `src/components/command-palette/useCommandPaletteOrganizations.ts` (+45 -0) ➕ `src/components/command-palette/useCommandPaletteSearch.ts` (+142 -0) 📝 `src/components/ui/command.tsx` (+11 -2) ➕ `src/lib/flattenNavItems.ts` (+42 -0) ➕ `src/lib/hydrateNavHref.ts` (+35 -0) </details> ### 📄 Description ## Community Contribution License Agreement By creating this pull request, I grant the project maintainers an unlimited, perpetual license to use, modify, and redistribute these contributions under any terms they choose, including both the AGPLv3 and the Fossorial Commercial license terms. I represent that I have the right to grant this license for all contributed content. ## Summary > TODO ## Screenshots > TODO --- <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-06-13 11:43:51 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#31318