ficsit-cli-flake/tea/scenes/rename_profile.go

90 lines
2.2 KiB
Go
Raw Normal View History

2021-12-04 18:02:05 +00:00
package scenes
import (
"fmt"
"time"
2021-12-04 18:02:05 +00:00
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
2022-10-14 16:11:16 +00:00
2021-12-04 18:02:05 +00:00
"github.com/satisfactorymodding/ficsit-cli/cli"
"github.com/satisfactorymodding/ficsit-cli/tea/components"
"github.com/satisfactorymodding/ficsit-cli/tea/utils"
)
var _ tea.Model = (*renameProfile)(nil)
type renameProfile struct {
2022-10-14 16:11:16 +00:00
input textinput.Model
2021-12-04 18:02:05 +00:00
root components.RootModel
parent tea.Model
2022-10-14 16:11:16 +00:00
error *components.ErrorComponent
2021-12-04 18:02:05 +00:00
title string
oldName string
}
func NewRenameProfile(root components.RootModel, parent tea.Model, profileData *cli.Profile) tea.Model {
model := renameProfile{
root: root,
parent: parent,
2022-04-14 01:27:39 +00:00
input: textinput.New(),
2021-12-04 18:02:05 +00:00
title: utils.NonListTitleStyle.Render(fmt.Sprintf("Rename Profile: %s", profileData.Name)),
oldName: profileData.Name,
}
model.input.SetValue(profileData.Name)
model.input.Focus()
model.input.Width = root.Size().Width
return model
}
func (m renameProfile) Init() tea.Cmd {
return textinput.Blink
2021-12-04 18:02:05 +00:00
}
func (m renameProfile) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.KeyMsg:
switch keypress := msg.String(); keypress {
case KeyControlC:
return m, tea.Quit
case KeyEscape:
return m.parent, nil
case KeyEnter:
2022-06-08 20:56:32 +00:00
if err := m.root.GetGlobal().Profiles.RenameProfile(m.root.GetGlobal(), m.oldName, m.input.Value()); err != nil {
errorComponent, cmd := components.NewErrorComponent(err.Error(), time.Second*5)
m.error = errorComponent
return m, cmd
2021-12-04 18:02:05 +00:00
}
return m.parent, updateProfileNamesCmd
default:
var cmd tea.Cmd
m.input, cmd = m.input.Update(msg)
return m, cmd
}
case tea.WindowSizeMsg:
m.root.SetSize(msg)
case components.ErrorComponentTimeoutMsg:
m.error = nil
default:
var cmd tea.Cmd
m.input, cmd = m.input.Update(msg)
return m, cmd
2021-12-04 18:02:05 +00:00
}
return m, nil
}
func (m renameProfile) View() string {
inputView := lipgloss.NewStyle().Padding(1, 2).Render(m.input.View())
if m.error != nil {
2022-10-14 16:11:16 +00:00
return lipgloss.JoinVertical(lipgloss.Left, m.root.View(), m.title, m.error.View(), inputView)
}
2021-12-04 18:02:05 +00:00
return lipgloss.JoinVertical(lipgloss.Left, m.root.View(), m.title, inputView)
}