aerc/ui/account.go

76 lines
1.5 KiB
Go
Raw Normal View History

2018-01-11 04:41:15 +01:00
package ui
import (
2018-02-01 03:18:21 +01:00
"log"
2018-01-11 15:04:18 +01:00
2018-01-11 04:41:15 +01:00
tb "github.com/nsf/termbox-go"
2018-02-01 03:18:21 +01:00
"github.com/davecgh/go-spew/spew"
2018-01-11 04:41:15 +01:00
"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 {
2018-02-01 03:18:21 +01:00
Config *config.AccountConfig
Worker worker.Worker
Parent *UIState
logger *log.Logger
2018-01-11 04:54:55 +01:00
counter int
2018-01-11 04:41:15 +01:00
}
2018-02-01 03:18:21 +01:00
func NewAccountTab(conf *config.AccountConfig,
logger *log.Logger) (*AccountTab, error) {
work, err := worker.NewWorker(conf.Source, logger)
2018-01-11 15:04:18 +01:00
if err != nil {
return nil, err
}
go work.Run()
work.PostAction(types.Configure{Config: conf})
2018-01-14 11:30:11 +01:00
work.PostAction(types.Connect{})
2018-01-11 04:41:15 +01:00
return &AccountTab{
Config: conf,
Worker: work,
2018-02-01 03:18:21 +01:00
logger: logger,
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)
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) {
2018-02-01 03:18:21 +01:00
switch msg.InResponseTo().(type) {
case types.Configure:
// Avoid printing passwords
acc.logger.Printf("<- %T\n", msg)
default:
acc.logger.Printf("<- %s", spew.Sdump(msg))
}
2018-01-11 15:04:18 +01:00
}