-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand_bar_fragment.go
84 lines (76 loc) · 1.64 KB
/
command_bar_fragment.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
package tessen
import (
"strings"
)
type CommandBarFragment struct {
commandBar *CommandBar
commandMode bool
}
func (p *CommandBarFragment) ExecuteCommand() {
command := string(p.commandBar.text)
if command == "" {
return
}
commandMode := string([]rune(command)[0])
switch commandMode {
case "/":
log.Debugf("Search down: %q", command)
if obj, ok := currentPage.(Searcher); ok {
obj.SetSearch(command)
obj.Search()
}
case "?":
log.Debugf("Search up: %q", command)
if obj, ok := currentPage.(Searcher); ok {
obj.SetSearch(command)
obj.Search()
}
case ":":
log.Debugf("Command: %q", command)
handleCommand(command)
}
}
func handleCommand(command string) {
if len(command) < 2 {
// must be :something
return
}
fields := strings.Fields(string(command[1:]))
action := fields[0]
var args []string
if len(fields) > 1 {
args = fields[1:]
}
log.Debugf("handleCommand: action %q, args %s", action, args)
switch {
case action == "q" || action == "quit":
handleQuit()
case action == "help":
handleHelp()
case action == "query":
n := len(":query ")
if len(command) > n {
handleQueryCommand(string(command[(n - 1):]))
}
}
}
func handleQueryCommand(query string) {
log.Debugf("handleQueryCommand: query %q", query)
if query == "" {
return
}
q := new(QueryResultsPage)
q.ActiveQuery.Name = "adhoc query"
q.ActiveQuery.Filter = query
currentPage = q
changePage()
}
func (p *CommandBarFragment) SetCommandMode(mode bool) {
p.commandMode = mode
}
func (p *CommandBarFragment) CommandMode() bool {
return p.commandMode
}
func (p *CommandBarFragment) CommandBar() *CommandBar {
return p.commandBar
}