mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
Define help with keys This means that keys and help are automatically in sync This means that you can't define keys, but forget help This unfortunately also means that formatting may not be quite as good
136 lines
2.7 KiB
Go
136 lines
2.7 KiB
Go
package rollbar
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/rivo/tview"
|
|
"github.com/wtfutil/wtf/wtf"
|
|
)
|
|
|
|
// A Widget represents a Rollbar widget
|
|
type Widget struct {
|
|
wtf.KeyboardWidget
|
|
wtf.ScrollableWidget
|
|
|
|
items *Result
|
|
settings *Settings
|
|
}
|
|
|
|
// NewWidget creates a new instance of a widget
|
|
func NewWidget(app *tview.Application, pages *tview.Pages, settings *Settings) *Widget {
|
|
widget := Widget{
|
|
KeyboardWidget: wtf.NewKeyboardWidget(app, pages, settings.common),
|
|
ScrollableWidget: wtf.NewScrollableWidget(app, settings.common, true),
|
|
|
|
settings: settings,
|
|
}
|
|
|
|
widget.SetRenderFunction(widget.Render)
|
|
widget.initializeKeyboardControls()
|
|
widget.View.SetInputCapture(widget.InputCapture)
|
|
|
|
widget.KeyboardWidget.SetView(widget.View)
|
|
|
|
return &widget
|
|
}
|
|
|
|
/* -------------------- Exported Functions -------------------- */
|
|
|
|
func (widget *Widget) Refresh() {
|
|
if widget.Disabled() {
|
|
return
|
|
}
|
|
|
|
items, err := CurrentActiveItems(
|
|
widget.settings.accessToken,
|
|
widget.settings.assignedToName,
|
|
widget.settings.activeOnly,
|
|
)
|
|
|
|
if err != nil {
|
|
widget.Redraw(widget.CommonSettings.Title, err.Error(), true)
|
|
return
|
|
}
|
|
widget.items = &items.Results
|
|
widget.SetItemCount(len(widget.items.Items))
|
|
|
|
widget.Refresh()
|
|
}
|
|
|
|
/* -------------------- Unexported Functions -------------------- */
|
|
|
|
func (widget *Widget) Render() {
|
|
if widget.items == nil {
|
|
return
|
|
}
|
|
|
|
title := fmt.Sprintf("%s - %s", widget.CommonSettings.Title, widget.settings.projectName)
|
|
widget.Redraw(title, widget.contentFrom(widget.items), false)
|
|
}
|
|
|
|
func (widget *Widget) contentFrom(result *Result) string {
|
|
if result == nil {
|
|
return "No results"
|
|
}
|
|
var str string
|
|
if len(result.Items) > widget.settings.count {
|
|
result.Items = result.Items[:widget.settings.count]
|
|
}
|
|
for idx, item := range result.Items {
|
|
|
|
str = str + fmt.Sprintf(
|
|
"[%s] [%s] %s [%s] %s [%s]count: %d [%s]%s\n",
|
|
widget.RowColor(idx),
|
|
levelColor(&item),
|
|
item.Level,
|
|
statusColor(&item),
|
|
item.Title,
|
|
widget.RowColor(idx),
|
|
item.TotalOccurrences,
|
|
"blue",
|
|
item.Environment,
|
|
)
|
|
}
|
|
|
|
return str
|
|
}
|
|
|
|
func statusColor(item *Item) string {
|
|
switch item.Status {
|
|
case "active":
|
|
return "red"
|
|
case "resolved":
|
|
return "green"
|
|
default:
|
|
return "red"
|
|
}
|
|
}
|
|
func levelColor(item *Item) string {
|
|
switch item.Level {
|
|
case "error":
|
|
return "red"
|
|
case "critical":
|
|
return "green"
|
|
case "warning":
|
|
return "yellow"
|
|
default:
|
|
return "grey"
|
|
}
|
|
}
|
|
|
|
func (widget *Widget) openBuild() {
|
|
if widget.GetSelected() >= 0 && widget.items != nil && widget.GetSelected() < len(widget.items.Items) {
|
|
item := &widget.items.Items[widget.GetSelected()]
|
|
|
|
wtf.OpenFile(
|
|
fmt.Sprintf(
|
|
"https://rollbar.com/%s/%s/%s/%d",
|
|
widget.settings.projectOwner,
|
|
widget.settings.projectName,
|
|
"items",
|
|
item.ID,
|
|
),
|
|
)
|
|
}
|
|
}
|