1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/modules/victorops/widget.go
Chris Cummer 3a388fba23
20191215 code improvements (#790)
* Upgrade godo to latest
* Fix a bunch of issues found by
* Running staticcheck on a codebase for the first time is a sobering experience
* go mod tidy
* More static improvements

Signed-off-by: Chris Cummer <chriscummer@me.com>
2019-12-16 20:25:29 -08:00

78 lines
1.5 KiB
Go

package victorops
import (
"fmt"
"github.com/rivo/tview"
"github.com/wtfutil/wtf/view"
)
// Widget contains text info
type Widget struct {
view.TextWidget
teams []OnCallTeam
settings *Settings
err error
}
// NewWidget creates a new widget
func NewWidget(app *tview.Application, settings *Settings) *Widget {
widget := Widget{
TextWidget: view.NewTextWidget(app, settings.common),
}
widget.View.SetScrollable(true)
widget.View.SetRegions(true)
return &widget
}
// Refresh gets latest content for the widget
func (widget *Widget) Refresh() {
if widget.Disabled() {
return
}
teams, err := Fetch(widget.settings.apiID, widget.settings.apiKey)
widget.err = err
widget.teams = teams
widget.Redraw(widget.content)
}
func (widget *Widget) content() (string, string, bool) {
title := widget.CommonSettings().Title
if widget.err != nil {
return title, widget.err.Error(), true
}
teams := widget.teams
var str string
if len(teams) == 0 {
return title, "No teams specified", false
}
for _, team := range teams {
if len(widget.settings.team) > 0 && widget.settings.team != team.Slug {
continue
}
str = fmt.Sprintf("%s[green]%s\n", str, team.Name)
if len(team.OnCall) == 0 {
str = fmt.Sprintf("%s[grey]no one\n", str)
}
for _, onCall := range team.OnCall {
str = fmt.Sprintf("%s[white]%s - %s\n", str, onCall.Policy, onCall.Userlist)
}
str = fmt.Sprintf("%s\n", str)
}
if len(str) == 0 {
str = "Could not find any teams to display"
}
return title, str, false
}