mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-08 06:01:12 +02:00
Implement the new summary dashboard with node info and logs. Replace the previous metrics dashboard with the new dashboard which has multiple screens for node summary, metrics and editing network config. Port the old metrics dashboard to the tview library and assign it to be a screen in the new dashboard, accessible by F2 key. Add a new resource, infos.cluster.talos.dev which contains the cluster name and id of a node. Disable the network config editor screen in the new dashboard until it is fully implemented with its backend. Closes siderolabs/talos#4790. Signed-off-by: Utku Ozdemir <utku.ozdemir@siderolabs.com>
36 lines
943 B
Go
36 lines
943 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package components
|
|
|
|
import (
|
|
"github.com/gdamore/tcell/v2"
|
|
"github.com/rivo/tview"
|
|
)
|
|
|
|
// HorizontalLine is a widget that draws a horizontal line.
|
|
type HorizontalLine struct {
|
|
tview.TextView
|
|
}
|
|
|
|
// NewHorizontalLine initializes HorizontalLine.
|
|
func NewHorizontalLine() *HorizontalLine {
|
|
widget := &HorizontalLine{
|
|
TextView: *tview.NewTextView(),
|
|
}
|
|
|
|
// set the background to be a horizontal line
|
|
widget.SetDrawFunc(func(screen tcell.Screen, x, y, width, height int) (int, int, int, int) {
|
|
for i := x; i < x+width; i++ {
|
|
for j := y; j < y+height; j++ {
|
|
screen.SetContent(i, j, tview.BoxDrawingsLightHorizontal, nil, tcell.StyleDefault.Foreground(tcell.ColorWhite))
|
|
}
|
|
}
|
|
|
|
return x, y, width, height
|
|
})
|
|
|
|
return widget
|
|
}
|