ficsit-cli-flake/tea/components/header.go
mircearoata e4b02a792d
feat: offline mode (#14)
* chore: move mod downloading to cli/cache

* feat: data providers, ficsit and local

* feat: keep cache in memory, load on init

* feat: log invalid cache files instead of returning error

* chore: make linter happy

* feat: fill cached mod Authors field from CreatedBy

* chore: make linter happy again

* feat: add icon and size to cached mods

* feat: cache the cached file hashes

* fix: change to new provider access style

---------

Co-authored-by: Vilsol <me@vil.so>
2023-12-06 06:47:41 +02:00

66 lines
1.3 KiB
Go

package components
import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"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
}
func (h headerComponent) Update(_ tea.Msg) (tea.Model, tea.Cmd) {
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"
}
out += "\n"
out += h.labelStyle.Render("Vanilla: ")
if h.root.GetCurrentInstallation() != nil {
if h.root.GetCurrentInstallation().Vanilla {
out += "On"
} else {
out += "Off"
}
} else {
out += "N/A"
}
if h.root.GetProvider().Offline {
out += "\n"
out += h.labelStyle.Render("Offline")
}
return lipgloss.NewStyle().Margin(1, 0).Render(out)
}