2019-01-13 18:39:06 +01:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2019-01-13 19:33:43 +01:00
|
|
|
"fmt"
|
2019-01-13 19:03:28 +01:00
|
|
|
"log"
|
2019-01-13 19:25:56 +01:00
|
|
|
|
|
|
|
"github.com/gdamore/tcell"
|
2019-01-13 19:03:28 +01:00
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/config"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/ui"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/worker"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/worker/types"
|
2019-01-13 18:39:06 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type AccountView struct {
|
2019-04-27 18:47:59 +02:00
|
|
|
acct *config.AccountConfig
|
|
|
|
conf *config.AercConfig
|
|
|
|
dirlist *DirectoryList
|
|
|
|
grid *ui.Grid
|
|
|
|
host TabHost
|
|
|
|
logger *log.Logger
|
|
|
|
msglist *MessageList
|
|
|
|
msgStores map[string]*lib.MessageStore
|
|
|
|
worker *types.Worker
|
2019-01-13 18:39:06 +01:00
|
|
|
}
|
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
func NewAccountView(conf *config.AercConfig, acct *config.AccountConfig,
|
2019-03-17 21:19:15 +01:00
|
|
|
logger *log.Logger, host TabHost) *AccountView {
|
2019-01-13 18:39:06 +01:00
|
|
|
|
|
|
|
grid := ui.NewGrid().Rows([]ui.GridSpec{
|
|
|
|
{ui.SIZE_WEIGHT, 1},
|
|
|
|
}).Columns([]ui.GridSpec{
|
2019-03-16 01:40:28 +01:00
|
|
|
{ui.SIZE_EXACT, conf.Ui.SidebarWidth},
|
2019-01-13 18:39:06 +01:00
|
|
|
{ui.SIZE_WEIGHT, 1},
|
|
|
|
})
|
2019-01-13 19:25:56 +01:00
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
worker, err := worker.NewWorker(acct.Source, logger)
|
2019-01-13 19:25:56 +01:00
|
|
|
if err != nil {
|
2019-05-21 01:20:20 +02:00
|
|
|
host.SetStatus(fmt.Sprintf("%s: %s", acct.Name, err)).
|
|
|
|
Color(tcell.ColorDefault, tcell.ColorRed)
|
2019-01-13 19:33:43 +01:00
|
|
|
return &AccountView{
|
2019-03-17 21:19:15 +01:00
|
|
|
acct: acct,
|
|
|
|
grid: grid,
|
|
|
|
host: host,
|
|
|
|
logger: logger,
|
2019-01-13 19:33:43 +01:00
|
|
|
}
|
2019-01-13 19:25:56 +01:00
|
|
|
}
|
2019-01-13 19:03:28 +01:00
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
dirlist := NewDirectoryList(acct, logger, worker)
|
2019-06-07 16:08:09 +02:00
|
|
|
if conf.Ui.SidebarWidth > 0 {
|
2019-06-05 23:20:27 +02:00
|
|
|
grid.AddChild(ui.NewBordered(dirlist, ui.BORDER_RIGHT))
|
|
|
|
}
|
2019-01-13 20:25:46 +01:00
|
|
|
|
2019-05-17 17:52:38 +02:00
|
|
|
msglist := NewMessageList(conf, logger)
|
2019-03-15 02:37:00 +01:00
|
|
|
grid.AddChild(msglist).At(0, 1)
|
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
view := &AccountView{
|
2019-03-17 21:19:15 +01:00
|
|
|
acct: acct,
|
|
|
|
conf: conf,
|
|
|
|
dirlist: dirlist,
|
|
|
|
grid: grid,
|
|
|
|
host: host,
|
|
|
|
logger: logger,
|
|
|
|
msglist: msglist,
|
|
|
|
msgStores: make(map[string]*lib.MessageStore),
|
|
|
|
worker: worker,
|
2019-01-13 19:03:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
go worker.Backend.Run()
|
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
worker.PostAction(&types.Configure{Config: acct}, nil)
|
|
|
|
worker.PostAction(&types.Connect{}, view.connected)
|
2019-03-17 21:19:15 +01:00
|
|
|
host.SetStatus("Connecting...")
|
2019-01-13 19:03:28 +01:00
|
|
|
|
2019-03-15 06:46:14 +01:00
|
|
|
return view
|
2019-01-13 19:03:28 +01:00
|
|
|
}
|
|
|
|
|
2019-05-19 11:49:57 +02:00
|
|
|
func (acct *AccountView) Tick() bool {
|
2019-05-21 01:20:20 +02:00
|
|
|
if acct.worker == nil {
|
|
|
|
return false
|
|
|
|
}
|
2019-05-19 11:49:57 +02:00
|
|
|
select {
|
|
|
|
case msg := <-acct.worker.Messages:
|
|
|
|
msg = acct.worker.ProcessMessage(msg)
|
|
|
|
acct.onMessage(msg)
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 22:04:01 +02:00
|
|
|
func (acct *AccountView) AccountConfig() *config.AccountConfig {
|
|
|
|
return acct.acct
|
|
|
|
}
|
|
|
|
|
2019-05-16 18:15:34 +02:00
|
|
|
func (acct *AccountView) Worker() *types.Worker {
|
|
|
|
return acct.worker
|
|
|
|
}
|
|
|
|
|
|
|
|
func (acct *AccountView) Logger() *log.Logger {
|
|
|
|
return acct.logger
|
|
|
|
}
|
|
|
|
|
2019-03-15 03:34:34 +01:00
|
|
|
func (acct *AccountView) Name() string {
|
2019-03-15 06:46:14 +01:00
|
|
|
return acct.acct.Name
|
2019-03-15 03:34:34 +01:00
|
|
|
}
|
|
|
|
|
2019-02-10 22:46:13 +01:00
|
|
|
func (acct *AccountView) Children() []ui.Drawable {
|
2019-01-20 21:08:30 +01:00
|
|
|
return acct.grid.Children()
|
|
|
|
}
|
|
|
|
|
2019-01-13 18:39:06 +01:00
|
|
|
func (acct *AccountView) OnInvalidate(onInvalidate func(d ui.Drawable)) {
|
2019-01-13 19:25:56 +01:00
|
|
|
acct.grid.OnInvalidate(func(_ ui.Drawable) {
|
|
|
|
onInvalidate(acct)
|
|
|
|
})
|
2019-01-13 18:39:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2019-03-17 21:19:15 +01:00
|
|
|
func (acct *AccountView) Focus(focus bool) {
|
|
|
|
// TODO: Unfocus children I guess
|
2019-01-13 19:33:43 +01:00
|
|
|
}
|
2019-01-13 20:25:46 +01:00
|
|
|
|
|
|
|
func (acct *AccountView) connected(msg types.WorkerMessage) {
|
2019-05-20 20:03:00 +02:00
|
|
|
switch msg.(type) {
|
2019-01-13 20:25:46 +01:00
|
|
|
case *types.Done:
|
2019-03-17 21:19:15 +01:00
|
|
|
acct.host.SetStatus("Listing mailboxes...")
|
2019-01-13 21:32:52 +01:00
|
|
|
acct.logger.Println("Listing mailboxes...")
|
|
|
|
acct.dirlist.UpdateList(func(dirs []string) {
|
|
|
|
var dir string
|
|
|
|
for _, _dir := range dirs {
|
2019-03-16 02:33:08 +01:00
|
|
|
if _dir == acct.acct.Default {
|
2019-01-13 21:32:52 +01:00
|
|
|
dir = _dir
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if dir == "" {
|
|
|
|
dir = dirs[0]
|
|
|
|
}
|
|
|
|
acct.dirlist.Select(dir)
|
|
|
|
acct.logger.Println("Connected.")
|
2019-03-17 21:19:15 +01:00
|
|
|
acct.host.SetStatus("Connected.")
|
2019-01-13 21:32:52 +01:00
|
|
|
})
|
2019-01-13 20:25:46 +01:00
|
|
|
}
|
|
|
|
}
|
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-06-02 07:15:04 +02:00
|
|
|
func (acct *AccountView) Store() *lib.MessageStore {
|
|
|
|
return acct.msglist.Store()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (acct *AccountView) SelectedMessage() *types.MessageInfo {
|
|
|
|
return acct.msglist.Selected()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (acct *AccountView) SelectedAccount() *AccountView {
|
|
|
|
return acct
|
|
|
|
}
|
|
|
|
|
2019-03-11 02:15:24 +01:00
|
|
|
func (acct *AccountView) onMessage(msg types.WorkerMessage) {
|
2019-03-11 04:45:00 +01:00
|
|
|
switch msg := msg.(type) {
|
|
|
|
case *types.Done:
|
|
|
|
switch msg.InResponseTo().(type) {
|
|
|
|
case *types.OpenDirectory:
|
2019-03-15 03:41:43 +01:00
|
|
|
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)
|
|
|
|
}
|
2019-03-11 04:45:00 +01:00
|
|
|
}
|
|
|
|
case *types.DirectoryInfo:
|
|
|
|
if store, ok := acct.msgStores[msg.Name]; ok {
|
|
|
|
store.Update(msg)
|
|
|
|
} else {
|
2019-05-14 02:16:55 +02:00
|
|
|
store = lib.NewMessageStore(acct.worker, msg)
|
|
|
|
acct.msgStores[msg.Name] = store
|
|
|
|
store.OnUpdate(func(_ *lib.MessageStore) {
|
|
|
|
store.OnUpdate(nil)
|
|
|
|
acct.msglist.SetStore(store)
|
|
|
|
})
|
2019-03-11 04:45:00 +01:00
|
|
|
}
|
|
|
|
case *types.DirectoryContents:
|
2019-06-02 10:48:03 +02:00
|
|
|
if store, ok := acct.msgStores[acct.dirlist.selected]; ok {
|
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-03-31 18:35:51 +02:00
|
|
|
case *types.FullMessage:
|
2019-06-02 10:48:03 +02:00
|
|
|
if store, ok := acct.msgStores[acct.dirlist.selected]; ok {
|
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-03-11 04:45:00 +01:00
|
|
|
case *types.MessageInfo:
|
2019-06-02 10:48:03 +02:00
|
|
|
if store, ok := acct.msgStores[acct.dirlist.selected]; ok {
|
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-03-21 04:23:38 +01:00
|
|
|
case *types.MessagesDeleted:
|
2019-06-02 10:48:03 +02:00
|
|
|
if store, ok := acct.msgStores[acct.dirlist.selected]; ok {
|
|
|
|
store.Update(msg)
|
|
|
|
}
|
2019-03-11 04:45:00 +01:00
|
|
|
case *types.Error:
|
|
|
|
acct.logger.Printf("%v", msg.Error)
|
2019-03-17 21:19:15 +01:00
|
|
|
acct.host.SetStatus(fmt.Sprintf("%v", msg.Error)).
|
2019-03-30 18:05:00 +01:00
|
|
|
Color(tcell.ColorDefault, tcell.ColorRed)
|
2019-03-11 04:45:00 +01:00
|
|
|
}
|
2019-03-11 02:15:24 +01:00
|
|
|
}
|