-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice_input.go
124 lines (104 loc) · 3.35 KB
/
service_input.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package sdmanager
import (
"context"
"strings"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
)
// Инициализация модели ввода имени сервиса
func NewServiceInputModel(action string) ServiceInputModel {
ti := textinput.New()
ti.Placeholder = "myservice"
ti.Focus()
ti.CharLimit = 255
ti.Width = 80
var message string
switch action {
case ActionStart:
message = "Введите имя сервиса для запуска:"
case ActionStop:
message = "Введите имя сервиса для остановки:"
case ActionRestart:
message = "Введите имя сервиса для перезапуска:"
case ActionViewLog:
message = "Введите имя сервиса для просмотра логов:"
default:
message = "Введите имя сервиса:"
}
return ServiceInputModel{
Input: ti,
Action: action,
Message: message,
Error: "",
ResultMsg: "",
Quitting: false,
}
}
// Обработка событий при вводе имени сервиса
func UpdateServiceInput(ctx context.Context, msg tea.Msg, model ServiceInputModel) (ServiceInputModel, tea.Cmd, error) {
switch msg := msg.(type) {
case tea.KeyMsg:
switch msg.Type {
case tea.KeyEnter:
// Если есть предыдущая ошибка, просто очищаем её
if model.Error != "" {
model.Error = ""
return model, nil, nil
}
serviceName := model.Input.Value()
if serviceName == "" {
model.Error = "Имя сервиса не может быть пустым"
return model, nil, nil
}
// Проверка валидности имени сервиса
if err := IsValidServiceName(serviceName); err != nil {
model.Error = err.Error()
return model, nil, nil
}
// Выполняем выбранное действие
var result string
var err error
switch model.Action {
case ActionStart:
result, err = StartService(serviceName)
case ActionStop:
result, err = StopService(serviceName)
case ActionRestart:
result, err = RestartService(serviceName)
case ActionViewLog:
err = ViewServiceLogs(ctx, serviceName)
}
if err != nil {
model.Error = err.Error()
return model, nil, nil
}
model.ResultMsg = result
model.Quitting = true
return model, tea.Quit, nil
case tea.KeyTab:
// Автозаполнение из placeholder если поле пустое
if model.Input.Value() == "" && model.Input.Placeholder != "" {
model.Input.SetValue(model.Input.Placeholder)
}
case tea.KeyCtrlC, tea.KeyEsc:
model.Quitting = true
return model, tea.Quit, nil
}
}
// Обновляем текстовый ввод
var cmd tea.Cmd
model.Input, cmd = model.Input.Update(msg)
return model, cmd, nil
}
// Отрисовка формы ввода имени сервиса
func ViewServiceInput(model ServiceInputModel) string {
var s strings.Builder
s.WriteString(model.Message + "\n\n")
s.WriteString(model.Input.View() + "\n\n")
// Отображаем ошибку на отдельной строке, если она есть
if model.Error != "" {
s.WriteString(FormatError(model.Error) + "\n\n")
}
s.WriteString("Нажмите Enter для подтверждения, Esc (Ctrl+C) для отмены\n")
return s.String()
}