mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
* WTF-1031 Rename WtfApp.app to WtfApp.tviewApp Signed-off-by: Chris Cummer <chriscummer@me.com> * WTF-1031 Add scaffolding for main to support multiple WtfApp instances Signed-off-by: Chris Cummer <chriscummer@me.com> * WTF-1031 WIP Signed-off-by: Chris Cummer <chriscummer@me.com> * Remove common functionality from KeyboardWidget and into Base Signed-off-by: Chris Cummer <chriscummer@me.com> * Augment with some descriptive comments Signed-off-by: Chris Cummer <chriscummer@me.com> * Add full support for multiple app instances via the AppManager. Still to do: * Config support for multiple apps/multiple config files * The ability to switch between apps Signed-off-by: Chris Cummer <chriscummer@me.com> * Move SetTerminal out of main and into its own file Signed-off-by: Chris Cummer <chriscummer@me.com>
109 lines
2.2 KiB
Go
109 lines
2.2 KiB
Go
package jenkins
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/rivo/tview"
|
|
"github.com/wtfutil/wtf/utils"
|
|
"github.com/wtfutil/wtf/view"
|
|
)
|
|
|
|
type Widget struct {
|
|
view.ScrollableWidget
|
|
|
|
settings *Settings
|
|
view *View
|
|
err error
|
|
}
|
|
|
|
func NewWidget(tviewApp *tview.Application, pages *tview.Pages, settings *Settings) *Widget {
|
|
widget := Widget{
|
|
ScrollableWidget: view.NewScrollableWidget(tviewApp, pages, settings.Common),
|
|
|
|
settings: settings,
|
|
}
|
|
|
|
widget.SetRenderFunction(widget.Render)
|
|
widget.initializeKeyboardControls()
|
|
|
|
return &widget
|
|
}
|
|
|
|
/* -------------------- Exported Functions -------------------- */
|
|
|
|
func (widget *Widget) Refresh() {
|
|
if widget.Disabled() {
|
|
return
|
|
}
|
|
|
|
view, err := widget.Create(
|
|
widget.settings.url,
|
|
widget.settings.user,
|
|
widget.settings.apiKey,
|
|
)
|
|
widget.view = view
|
|
|
|
if err != nil {
|
|
widget.err = err
|
|
widget.SetItemCount(0)
|
|
} else {
|
|
widget.SetItemCount(len(widget.view.Jobs))
|
|
}
|
|
|
|
widget.Render()
|
|
}
|
|
|
|
/* -------------------- Unexported Functions -------------------- */
|
|
|
|
func (widget *Widget) Render() {
|
|
widget.Redraw(widget.content)
|
|
}
|
|
|
|
func (widget *Widget) content() (string, string, bool) {
|
|
title := fmt.Sprintf("%s: [red]%s", widget.CommonSettings().Title, widget.view.Name)
|
|
if widget.err != nil {
|
|
return title, widget.err.Error(), true
|
|
}
|
|
if widget.view == nil || len(widget.view.Jobs) == 0 {
|
|
return title, "No content to display", false
|
|
}
|
|
|
|
var str string
|
|
jobs := widget.view.Jobs
|
|
for idx, job := range jobs {
|
|
jobName, _ := url.QueryUnescape(job.Name)
|
|
|
|
row := fmt.Sprintf(
|
|
`[%s] [%s]%-6s[white]`,
|
|
widget.RowColor(idx),
|
|
widget.jobColor(job),
|
|
jobName,
|
|
)
|
|
|
|
str += utils.HighlightableHelper(widget.View, row, idx, len(job.Name))
|
|
}
|
|
|
|
return title, str, false
|
|
}
|
|
|
|
func (widget *Widget) jobColor(job Job) string {
|
|
switch job.Color {
|
|
case "blue":
|
|
// Override color if successBallColor boolean param provided in config
|
|
return widget.settings.successBallColor
|
|
case "red":
|
|
return "red"
|
|
default:
|
|
return "white"
|
|
}
|
|
}
|
|
|
|
func (widget *Widget) openJob() {
|
|
sel := widget.GetSelected()
|
|
if sel >= 0 && widget.view != nil && sel < len(widget.view.Jobs) {
|
|
job := &widget.view.Jobs[sel]
|
|
utils.OpenFile(job.Url)
|
|
}
|
|
}
|