-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.go
70 lines (60 loc) · 1.75 KB
/
menu.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package sdmanager
import (
"github.com/charmbracelet/bubbles/list"
tea "github.com/charmbracelet/bubbletea"
)
// Создать пункты главного меню
func GetMenuItems() []list.Item {
items := []list.Item{
MenuItem{Title: string(ActionStartService), Action: ActionStartService},
MenuItem{Title: string(ActionStopService), Action: ActionStopService},
MenuItem{Title: string(ActionRestartService), Action: ActionRestartService},
MenuItem{Title: string(ActionViewLogs), Action: ActionViewLogs},
MenuItem{Title: string(ActionInstallService), Action: ActionInstallService},
MenuItem{Title: string(ActionExit), Action: ActionExit},
}
return items
}
// Создать модель меню
func NewMenuModel() MenuModel {
const defaultWidth = 40
l := list.New(GetMenuItems(), ItemDelegate{}, defaultWidth, ListHeight)
l.Title = "Systemd Manager"
l.SetShowStatusBar(false)
l.SetFilteringEnabled(false)
l.Styles.Title = TitleStyle
l.Styles.PaginationStyle = PaginationStyle
l.Styles.HelpStyle = HelpStyle
return MenuModel{
List: l,
Choice: "",
Quitting: false,
}
}
// Обработка событий в меню
func UpdateMenu(msg tea.Msg, model MenuModel) (MenuModel, tea.Cmd) {
switch msg := msg.(type) {
case tea.WindowSizeMsg:
model.List.SetWidth(msg.Width)
return model, nil
case tea.KeyMsg:
switch msg.String() {
case "q", "ctrl+c":
model.Quitting = true
return model, tea.Quit
case "enter":
item, ok := model.List.SelectedItem().(MenuItem)
if ok {
model.Choice = item.Action
}
return model, nil
}
}
var cmd tea.Cmd
model.List, cmd = model.List.Update(msg)
return model, cmd
}
// Отрисовка меню
func ViewMenu(model MenuModel) string {
return "\n" + model.List.View()
}