experiment: dedicated dashboards listing page#1805
Draft
elizabetdev wants to merge 2 commits intomainfrom
Draft
Conversation
Replaced DBDashboardPage with DashboardsListPage in the dashboard index. Removed unused imports and components related to dashboard creation and management in AppNav, streamlining the navigation component for better performance and maintainability.
…ponent Added a new list view for dashboards in DashboardsListPage, allowing users to toggle between grid and list layouts. Introduced DashboardListRow component for displaying individual dashboard details, including name, tags, and a delete option. Updated UI elements for better interaction and organization.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Contributor
E2E Test Results❌ 5 tests failed • 65 passed • 4 skipped • 1112s
Tests ran across 4 shards in parallel. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
This is an experiment / work in progress — not ready for merge. Looking for feedback on the direction.
What this explores
The sidenav currently lists every dashboard inline, which gets crowded as the number of dashboards grows. This PR experiments with moving dashboards out of the sidenav into a dedicated listing page at
/dashboards, giving them more room to breathe.The listing page supports searching by name or tag, toggling between a card grid and a compact table view (persisted in localStorage), creating new dashboards, and deleting existing ones. Preset dashboards (Services, ClickHouse, Kubernetes) are surfaced as separate cards at the top.
The sidenav "Dashboards" entry becomes a simple link — no more expandable submenu, no inline search, no drag-to-tag. Individual dashboard pages now show breadcrumbs (
Dashboards > Dashboard Name) linking back to the listing page for easy navigation.Made with Cursor