feat: [ENG-2396] expand VM metadata shown in sf nodes ls --verbose#232
Merged
Conversation
Changed Files
|
be3b97a to
c842f49
Compare
Contributor
Greptile OverviewGreptile SummaryReworks the Key changes:
Issues found:
Confidence Score: 2/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant User
participant CLI as sf nodes ls --verbose
participant NodesClient
participant API
participant NodeVerboseDisplay
participant VMTable
User->>CLI: Execute command
CLI->>NodesClient: Fetch nodes
NodesClient->>API: GET /nodes
API-->>NodesClient: Return nodes array
NodesClient-->>CLI: nodes data
loop For each node
CLI->>NodeVerboseDisplay: Render node
NodeVerboseDisplay->>NodeVerboseDisplay: Get lastVM via getLastVM()
NodeVerboseDisplay->>NodeVerboseDisplay: Calculate duration with date-fns
alt lastVM exists
NodeVerboseDisplay->>NodeVerboseDisplay: Display Active VM section
NodeVerboseDisplay->>NodeVerboseDisplay: Show VM ID, status, dates, image
end
alt node.vms.data.length > 1
NodeVerboseDisplay->>VMTable: Render Previous VMs (slice(1))
VMTable->>VMTable: Sort by updated_at, show first 5
end
NodeVerboseDisplay->>NodeVerboseDisplay: Display Schedule section
NodeVerboseDisplay->>NodeVerboseDisplay: Display Pricing section
alt node.vms.data[0].image_id exists
NodeVerboseDisplay->>NodeVerboseDisplay: Display Current VM Image section
Note over NodeVerboseDisplay: ⚠️ Redundant - already shown in Active VM
end
NodeVerboseDisplay-->>CLI: Rendered node output
end
CLI-->>User: Display formatted output
|
Contributor
There was a problem hiding this comment.
Additional Comments (1)
-
src/lib/nodes/list.tsx, line 444-456 (link)logic: redundant display of image ID - already shown in "Active VM" section at line 359
1 file reviewed, 2 comments
sf nodes ls --verbose, add sf node vmssf nodes ls --verbose
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.
Uh oh!
There was an error while loading. Please reload this page.