-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.go
More file actions
82 lines (65 loc) · 1.21 KB
/
options.go
File metadata and controls
82 lines (65 loc) · 1.21 KB
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
package main
import (
"fmt"
"os"
"strings"
tea "github.com/charmbracelet/bubbletea"
)
type Template struct {
Name string
Path string
}
var Choices = []Template{}
type OptionStruct struct {
cursor int
choice Template
}
func (m OptionStruct) Init() tea.Cmd {
return nil
}
func (m OptionStruct) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.KeyMsg:
switch msg.String() {
case "ctrl+c", "esc":
return m, tea.Quit
case "enter":
m.choice = Choices[m.cursor]
return m, tea.Quit
case "down", "j":
m.cursor++
if m.cursor >= len(Choices) {
m.cursor = 0
}
case "up", "k":
m.cursor--
if m.cursor < 0 {
m.cursor = len(Choices) - 1
}
}
}
return m, nil
}
func (m OptionStruct) View() string {
s := strings.Builder{}
s.WriteString("Which template you would like to use (esc to quit)\n\n")
for i := 0; i < len(Choices); i++ {
if m.cursor == i {
s.WriteString("[•] ")
} else {
s.WriteString("[ ] ")
}
s.WriteString(Choices[i].Name)
s.WriteString("\n")
}
return s.String()
}
func ChoiceModel() tea.Model {
p := tea.NewProgram(OptionStruct{})
m, err := p.Run()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
return m
}