mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
a58ce74ed0
Primary goals: - Scrollable output ( fixes #245 ) - Sending job signals from status view - Filtering of output by filesystem Implementation: - original TUI framework: github.com/rivo/tview - but: tview is quasi-unmaintained, didn't support some features - => use fork https://gitlab.com/tslocum/cview - however, don't buy into either too much to avoid lock-in - instead: **port over the existing status UI drawing code and adjust it to produce strings instead of directly drawing into the termbox buffer** Co-authored-by: Calistoc <calistoc@protonmail.com> Co-authored-by: InsanePrawn <insane.prawny@gmail.com> fixes #245 fixes #220
71 lines
1.4 KiB
Go
71 lines
1.4 KiB
Go
package status
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/gdamore/tcell"
|
|
"github.com/mattn/go-isatty"
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/zrepl/zrepl/client/status/viewmodel"
|
|
)
|
|
|
|
func dump(c Client, job string) error {
|
|
s, err := c.Status()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if job != "" {
|
|
if _, ok := s.Jobs[job]; !ok {
|
|
return errors.Errorf("job %q not found", job)
|
|
}
|
|
}
|
|
|
|
width := (1 << 31) - 1
|
|
wrap := false
|
|
hline := strings.Repeat("-", 80)
|
|
if isatty.IsTerminal(os.Stdout.Fd()) {
|
|
wrap = true
|
|
screen, err := tcell.NewScreen()
|
|
if err != nil {
|
|
return errors.Wrap(err, "get terminal dimensions")
|
|
}
|
|
if err := screen.Init(); err != nil {
|
|
return errors.Wrap(err, "init screen")
|
|
}
|
|
width, _ = screen.Size()
|
|
screen.Fini()
|
|
hline = strings.Repeat("-", width)
|
|
}
|
|
|
|
m := viewmodel.New()
|
|
params := viewmodel.Params{
|
|
Report: s.Jobs,
|
|
ReportFetchError: nil,
|
|
SelectedJob: nil,
|
|
FSFilter: func(s string) bool { return true },
|
|
DetailViewWidth: width,
|
|
DetailViewWrap: wrap,
|
|
ShortKeybindingOverview: "",
|
|
}
|
|
m.Update(params)
|
|
for _, j := range m.Jobs() {
|
|
if job != "" && j.Name() != job {
|
|
continue
|
|
}
|
|
params.SelectedJob = j
|
|
m.Update(params)
|
|
fmt.Println(m.SelectedJob().FullDescription())
|
|
if job != "" {
|
|
return nil
|
|
} else {
|
|
fmt.Println(hline)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|