aerc/ui/account.go

68 lines
1.3 KiB
Go
Raw Normal View History

2018-01-11 04:41:15 +01:00
package ui
import (
2018-01-11 15:04:18 +01:00
"fmt"
2018-01-11 04:41:15 +01:00
tb "github.com/nsf/termbox-go"
"git.sr.ht/~sircmpwn/aerc2/config"
"git.sr.ht/~sircmpwn/aerc2/worker"
2018-01-11 15:04:18 +01:00
"git.sr.ht/~sircmpwn/aerc2/worker/types"
2018-01-11 04:41:15 +01:00
)
type AccountTab struct {
Config *config.AccountConfig
2018-01-11 15:04:18 +01:00
Worker worker.Worker
2018-01-11 04:41:15 +01:00
Parent *UIState
2018-01-11 04:54:55 +01:00
counter int
2018-01-11 15:04:18 +01:00
log []string
2018-01-11 04:41:15 +01:00
}
2018-01-11 15:04:18 +01:00
func NewAccountTab(conf *config.AccountConfig) (*AccountTab, error) {
work, err := worker.NewWorker(conf.Source)
if err != nil {
return nil, err
}
go work.Run()
work.PostAction(types.Configure{Config: conf})
2018-01-11 04:41:15 +01:00
return &AccountTab{
Config: conf,
Worker: work,
2018-01-11 15:04:18 +01:00
}, nil
2018-01-11 04:41:15 +01:00
}
func (acc *AccountTab) Name() string {
return acc.Config.Name
}
func (acc *AccountTab) SetParent(parent *UIState) {
acc.Parent = parent
}
func (acc *AccountTab) Render(at Geometry) {
cell := tb.Cell{
2018-01-11 15:04:18 +01:00
Ch: ' ',
2018-01-11 04:41:15 +01:00
Fg: tb.ColorDefault,
Bg: tb.ColorDefault,
}
2018-01-11 15:04:18 +01:00
TFill(at, cell)
TPrintf(&at, cell, "%s %d\n", acc.Name(), acc.counter)
for _, str := range acc.log {
TPrintf(&at, cell, "%s\n", str)
}
2018-01-11 04:54:55 +01:00
acc.counter++
if acc.counter%10000 == 0 {
acc.counter = 0
}
acc.Parent.InvalidateFrom(acc)
2018-01-11 04:41:15 +01:00
}
2018-01-11 15:04:18 +01:00
func (acc *AccountTab) GetChannel() chan types.WorkerMessage {
return acc.Worker.GetMessages()
}
func (acc *AccountTab) HandleMessage(msg types.WorkerMessage) {
acc.log = append(acc.log, fmt.Sprintf("<- %T", msg))
}