ficsit-cli-flake/tea/components/header.go

50 lines
996 B
Go
Raw Normal View History

2021-12-02 04:00:33 +00:00
package components
import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
2022-10-14 16:11:16 +00:00
2021-12-02 04:00:33 +00:00
"github.com/satisfactorymodding/ficsit-cli/tea/utils"
)
var _ tea.Model = (*headerComponent)(nil)
type headerComponent struct {
root RootModel
labelStyle lipgloss.Style
}
func NewHeaderComponent(root RootModel) tea.Model {
return headerComponent{
root: root,
labelStyle: utils.LabelStyle,
}
}
func (h headerComponent) Init() tea.Cmd {
return nil
}
2023-06-18 15:48:53 +00:00
func (h headerComponent) Update(_ tea.Msg) (tea.Model, tea.Cmd) {
2021-12-02 04:00:33 +00:00
return h, nil
}
func (h headerComponent) View() string {
out := h.labelStyle.Render("Installation: ")
if h.root.GetCurrentInstallation() != nil {
out += h.root.GetCurrentInstallation().Path
} else {
out += "None"
}
out += "\n"
out += h.labelStyle.Render("Profile: ")
if h.root.GetCurrentProfile() != nil {
out += h.root.GetCurrentProfile().Name
} else {
out += "None"
}
return lipgloss.NewStyle().Margin(1, 0).Render(out)
}