feat: show pool reason on dashboard and droplet detail#501
Merged
Conversation
Clickable pooled rows expand to show the reason; droplet detail shows a dedicated Pool Reason section for pooled droplets. Adds GetPoolReason/GetPoolReasons to the cistern client and includes pool_reasons in the dashboard SSE stream.
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.
Summary
GetPoolReasons()andGetPoolReason()methods to the cistern client, querying the events table for pool event payloadsDashboardDatanow includespool_reasons: Record<string, string>mapping pooled droplet IDs to their reasonsPooledSectionpassespoolReasonsin,DropletRowgainsonClickandexpandedprops for interactive expansionDropletRoware now clickable links to the detail page (navigate viareact-router-dom)GET /api/droplets/{id}) now includespool_reasonfield for pooled dropletspool_reasonsfieldChanged files
internal/cistern/client.go—GetPoolReasons(),GetPoolReason()methodscmd/ct/dashboard.go—PoolReasonsinDashboardData, populated infetchDashboardDatacmd/ct/dashboard_web.go—handleGetDropletinjectspool_reasonfor pooled dropletsweb/src/api/types.ts—pool_reasonsonDashboardData,pool_reasononDropletweb/src/pages/Dashboard.tsx—PooledSectionwith expandable rows showing reasonsweb/src/pages/DropletDetail.tsx— Pool Reason section for pooled dropletsweb/src/components/DropletRow.tsx— Clickable ID links,onClick/expandedpropsweb/src/__tests__/— Updated mock data withpool_reasons