mirror of
https://git.sr.ht/~rjarry/aerc
synced 2025-12-18 12:00:10 +01:00
Add `desc:""` struct field tags in all command arguments where it makes sense. The description values will be returned along with completion choices. Implements: https://todo.sr.ht/~rjarry/aerc/271 Signed-off-by: Robin Jarry <robin@jarry.cc> Tested-by: Bojan Gabric <bojan@bojangabric.com> Tested-by: Jason Cox <me@jasoncarloscox.com> Acked-by: Tim Culverhouse <tim@timculverhouse.com>
115 lines
2.2 KiB
Go
115 lines
2.2 KiB
Go
package patch
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"io"
|
|
"os/exec"
|
|
"time"
|
|
|
|
"git.sr.ht/~rjarry/aerc/app"
|
|
"git.sr.ht/~rjarry/aerc/commands"
|
|
"git.sr.ht/~rjarry/aerc/config"
|
|
"git.sr.ht/~rjarry/aerc/lib/pama"
|
|
"git.sr.ht/~rjarry/aerc/lib/pama/models"
|
|
"git.sr.ht/~rjarry/aerc/lib/ui"
|
|
"git.sr.ht/~rjarry/go-opt/v2"
|
|
"git.sr.ht/~rockorager/vaxis"
|
|
)
|
|
|
|
type List struct {
|
|
All bool `opt:"-a" desc:"List all projects."`
|
|
}
|
|
|
|
func init() {
|
|
register(List{})
|
|
}
|
|
|
|
func (List) Description() string {
|
|
return "List the current project with the tracked patch sets."
|
|
}
|
|
|
|
func (List) Context() commands.CommandContext {
|
|
return commands.GLOBAL
|
|
}
|
|
|
|
func (List) Aliases() []string {
|
|
return []string{"list", "ls"}
|
|
}
|
|
|
|
func (l List) Execute(args []string) error {
|
|
m := pama.New()
|
|
current, err := m.CurrentProject()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
projects := []models.Project{current}
|
|
if l.All {
|
|
projects, err = m.Projects("")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
app.PushStatus(fmt.Sprintf("Current project: %s", current.Name), 30*time.Second)
|
|
|
|
createWidget := func(r io.Reader) (ui.DrawableInteractive, error) {
|
|
pagerCmd, err := app.CmdFallbackSearch(config.PagerCmds(), true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
cmd := opt.SplitArgs(pagerCmd)
|
|
pager := exec.Command(cmd[0], cmd[1:]...)
|
|
pager.Stdin = r
|
|
|
|
term, err := app.NewTerminal(pager)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
start := time.Now()
|
|
term.OnClose = func(err error) {
|
|
if time.Since(start) > 250*time.Millisecond {
|
|
app.CloseDialog()
|
|
return
|
|
}
|
|
term.OnEvent = func(_ vaxis.Event) bool {
|
|
app.CloseDialog()
|
|
return true
|
|
}
|
|
}
|
|
return term, nil
|
|
}
|
|
|
|
viewer, err := createWidget(m.NewReader(projects))
|
|
if err != nil {
|
|
viewer = app.NewListBox(
|
|
"Press <Esc> or <Enter> to close. "+
|
|
"Start typing to filter.",
|
|
numerify(m.NewReader(projects)), app.SelectedAccountUiConfig(),
|
|
func(_ string) { app.CloseDialog() },
|
|
)
|
|
}
|
|
|
|
app.AddDialog(app.DefaultDialog(
|
|
ui.NewBox(viewer, "Patch Management", "",
|
|
app.SelectedAccountUiConfig(),
|
|
),
|
|
))
|
|
|
|
return nil
|
|
}
|
|
|
|
func numerify(r io.Reader) []string {
|
|
var lines []string
|
|
nr := 1
|
|
scanner := bufio.NewScanner(r)
|
|
for scanner.Scan() {
|
|
s := scanner.Text()
|
|
lines = append(lines, fmt.Sprintf("%3d %s", nr, s))
|
|
nr++
|
|
}
|
|
return lines
|
|
}
|