aerc/widgets/account.go

139 lines
3.2 KiB
Go
Raw Normal View History

package widgets
import (
2019-01-13 19:33:43 +01:00
"fmt"
2019-01-13 19:03:28 +01:00
"log"
"time"
"github.com/gdamore/tcell"
2019-01-13 19:03:28 +01:00
"git.sr.ht/~sircmpwn/aerc2/config"
"git.sr.ht/~sircmpwn/aerc2/lib/ui"
2019-01-13 19:03:28 +01:00
"git.sr.ht/~sircmpwn/aerc2/worker"
"git.sr.ht/~sircmpwn/aerc2/worker/types"
)
type AccountView struct {
conf *config.AccountConfig
grid *ui.Grid
2019-01-13 19:03:28 +01:00
logger *log.Logger
2019-01-13 19:33:43 +01:00
interactive ui.Interactive
onInvalidate func(d ui.Drawable)
2019-01-13 19:33:43 +01:00
statusline *StatusLine
statusbar *ui.Stack
2019-01-13 19:03:28 +01:00
worker *types.Worker
}
2019-01-13 19:33:43 +01:00
func NewAccountView(
conf *config.AccountConfig, logger *log.Logger) *AccountView {
2019-01-13 19:03:28 +01:00
2019-01-13 19:33:43 +01:00
statusbar := ui.NewStack()
statusline := NewStatusLine()
statusbar.Push(statusline)
grid := ui.NewGrid().Rows([]ui.GridSpec{
{ui.SIZE_WEIGHT, 1},
{ui.SIZE_EXACT, 1},
}).Columns([]ui.GridSpec{
{ui.SIZE_EXACT, 20},
{ui.SIZE_WEIGHT, 1},
})
grid.AddChild(ui.NewBordered(
ui.NewFill('s'), ui.BORDER_RIGHT)).Span(2, 1)
grid.AddChild(ui.NewFill('.')).At(0, 1)
2019-01-13 19:33:43 +01:00
grid.AddChild(statusbar).At(1, 1)
worker, err := worker.NewWorker(conf.Source, logger)
if err != nil {
// TODO: Update status line with error
2019-01-13 19:33:43 +01:00
return &AccountView{
conf: conf,
grid: grid,
logger: logger,
statusline: statusline,
}
}
2019-01-13 19:03:28 +01:00
acct := &AccountView{
2019-01-13 19:33:43 +01:00
conf: conf,
grid: grid,
logger: logger,
statusline: statusline,
statusbar: statusbar,
worker: worker,
2019-01-13 19:03:28 +01:00
}
go worker.Backend.Run()
go func() {
for {
msg := <-worker.Messages
msg = worker.ProcessMessage(msg)
// TODO: dispatch to appropriate handlers
}
}()
worker.PostAction(&types.Configure{Config: conf}, nil)
worker.PostAction(&types.Connect{}, acct.connected)
return acct
2019-01-13 19:03:28 +01:00
}
func (acct *AccountView) connected(msg types.WorkerMessage) {
switch msg := msg.(type) {
case *types.Done:
2019-01-13 19:33:43 +01:00
acct.statusline.Set("Connected.")
2019-01-13 19:03:28 +01:00
acct.logger.Println("Connected.")
acct.worker.PostAction(&types.ListDirectories{}, nil)
case *types.CertificateApprovalRequest:
// TODO: Ask the user
acct.logger.Println("Approved unknown certificate.")
2019-01-13 19:33:43 +01:00
acct.statusline.Push("Approved unknown certificate.", 5*time.Second)
2019-01-13 19:03:28 +01:00
acct.worker.PostAction(&types.ApproveCertificate{
Message: types.RespondTo(msg),
Approved: true,
}, acct.connected)
default:
acct.logger.Println("Connection failed.")
2019-01-13 19:33:43 +01:00
acct.statusline.Set("Connection failed.").
Color(tcell.ColorRed, tcell.ColorDefault)
2019-01-13 19:03:28 +01:00
}
}
func (acct *AccountView) OnInvalidate(onInvalidate func(d ui.Drawable)) {
acct.grid.OnInvalidate(func(_ ui.Drawable) {
onInvalidate(acct)
})
}
func (acct *AccountView) Invalidate() {
acct.grid.Invalidate()
}
func (acct *AccountView) Draw(ctx *ui.Context) {
acct.grid.Draw(ctx)
}
2019-01-13 19:33:43 +01:00
func (acct *AccountView) Event(event tcell.Event) bool {
if acct.interactive != nil {
return acct.interactive.Event(event)
}
switch event := event.(type) {
case *tcell.EventKey:
if event.Rune() == ':' {
exline := NewExLine(func(command string) {
acct.statusline.Push(
fmt.Sprintf("TODO: execute %s", command), 3*time.Second)
acct.statusbar.Pop()
acct.interactive = nil
}, func() {
acct.statusbar.Pop()
acct.interactive = nil
})
acct.interactive = exline
acct.statusbar.Push(exline)
return true
}
}
return false
}