aerc/widgets/account.go

217 lines
5.1 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
2019-01-13 20:25:46 +01:00
dirlist *DirectoryList
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)
runCmd func(cmd string) error
msglist *MessageList
msgStores map[string]*MessageStore
2019-01-13 19:33:43 +01:00
statusline *StatusLine
statusbar *ui.Stack
2019-01-13 19:03:28 +01:00
worker *types.Worker
}
func NewAccountView(conf *config.AccountConfig,
logger *log.Logger, runCmd func(cmd string) error) *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},
})
2019-01-13 19:33:43 +01:00
grid.AddChild(statusbar).At(1, 1)
worker, err := worker.NewWorker(conf.Source, logger)
if err != nil {
statusline.Set(fmt.Sprintf("%s", err))
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
dirlist := NewDirectoryList(conf, logger, worker)
2019-01-13 20:25:46 +01:00
grid.AddChild(ui.NewBordered(dirlist, ui.BORDER_RIGHT)).Span(2, 1)
msglist := NewMessageList(logger)
grid.AddChild(msglist).At(0, 1)
2019-01-13 19:03:28 +01:00
acct := &AccountView{
2019-01-13 19:33:43 +01:00
conf: conf,
2019-01-13 20:25:46 +01:00
dirlist: dirlist,
2019-01-13 19:33:43 +01:00
grid: grid,
logger: logger,
msglist: msglist,
msgStores: make(map[string]*MessageStore),
runCmd: runCmd,
2019-01-13 19:33:43 +01:00
statusbar: statusbar,
statusline: statusline,
2019-01-13 19:33:43 +01:00
worker: worker,
2019-01-13 19:03:28 +01:00
}
go worker.Backend.Run()
go func() {
for {
msg := <-worker.Messages
msg = worker.ProcessMessage(msg)
2019-03-11 02:15:24 +01:00
acct.onMessage(msg)
2019-01-13 19:03:28 +01:00
}
}()
worker.PostAction(&types.Configure{Config: conf}, nil)
worker.PostAction(&types.Connect{}, acct.connected)
2019-01-14 01:41:21 +01:00
statusline.Set("Connecting...")
2019-01-13 19:03:28 +01:00
return acct
2019-01-13 19:03:28 +01:00
}
2019-03-15 03:34:34 +01:00
func (acct *AccountView) Name() string {
return acct.conf.Name
}
2019-02-10 22:46:13 +01:00
func (acct *AccountView) Children() []ui.Drawable {
return acct.grid.Children()
}
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) {
err := acct.runCmd(command)
if err != nil {
2019-03-11 02:26:05 +01:00
acct.statusline.Push(" "+err.Error(), 10*time.Second).
Color(tcell.ColorRed, tcell.ColorWhite)
}
2019-01-13 19:33:43 +01:00
acct.statusbar.Pop()
acct.interactive = nil
}, func() {
acct.statusbar.Pop()
acct.interactive = nil
})
acct.interactive = exline
acct.statusbar.Push(exline)
return true
}
}
return false
}
2019-01-13 20:25:46 +01:00
func (acct *AccountView) connected(msg types.WorkerMessage) {
switch msg := msg.(type) {
case *types.Done:
acct.statusline.Set("Listing mailboxes...")
acct.logger.Println("Listing mailboxes...")
acct.dirlist.UpdateList(func(dirs []string) {
var dir string
for _, _dir := range dirs {
if _dir == "INBOX" {
dir = _dir
break
}
}
if dir == "" {
dir = dirs[0]
}
acct.dirlist.Select(dir)
acct.logger.Println("Connected.")
acct.statusline.Set("Connected.")
})
2019-01-13 20:25:46 +01:00
case *types.CertificateApprovalRequest:
// TODO: Ask the user
acct.worker.PostAction(&types.ApproveCertificate{
Message: types.RespondTo(msg),
Approved: true,
}, acct.connected)
}
}
2019-03-11 02:15:24 +01:00
func (acct *AccountView) Directories() *DirectoryList {
return acct.dirlist
}
2019-03-15 04:41:25 +01:00
func (acct *AccountView) Messages() *MessageList {
return acct.msglist
}
2019-03-11 02:15:24 +01:00
func (acct *AccountView) onMessage(msg types.WorkerMessage) {
switch msg := msg.(type) {
case *types.Done:
switch msg.InResponseTo().(type) {
case *types.OpenDirectory:
if store, ok := acct.msgStores[acct.dirlist.selected]; ok {
// If we've opened this dir before, we can re-render it from
// memory while we wait for the update and the UI feels
// snappier. If not, we'll unset the store and show the spinner
// while we download the UID list.
acct.msglist.SetStore(store)
} else {
acct.msglist.SetStore(nil)
}
acct.worker.PostAction(&types.FetchDirectoryContents{},
func(msg types.WorkerMessage) {
store := acct.msgStores[acct.dirlist.selected]
acct.msglist.SetStore(store)
})
}
case *types.DirectoryInfo:
if store, ok := acct.msgStores[msg.Name]; ok {
store.Update(msg)
} else {
acct.msgStores[msg.Name] = NewMessageStore(acct.worker, msg)
}
case *types.DirectoryContents:
store := acct.msgStores[acct.dirlist.selected]
store.Update(msg)
case *types.MessageInfo:
store := acct.msgStores[acct.dirlist.selected]
store.Update(msg)
case *types.Error:
acct.logger.Printf("%v", msg.Error)
acct.statusline.Set(fmt.Sprintf("%v", msg.Error)).
Color(tcell.ColorRed, tcell.ColorDefault)
}
2019-03-11 02:15:24 +01:00
}