aerc/widgets/aerc.go

97 lines
2.1 KiB
Go
Raw Normal View History

2018-02-28 03:17:26 +01:00
package widgets
import (
2018-02-28 03:29:50 +01:00
"fmt"
2018-02-28 03:17:26 +01:00
"log"
"time"
"github.com/gdamore/tcell"
2018-02-28 03:17:26 +01:00
"git.sr.ht/~sircmpwn/aerc2/config"
2018-02-28 03:17:26 +01:00
libui "git.sr.ht/~sircmpwn/aerc2/lib/ui"
)
type Aerc struct {
grid *libui.Grid
tabs *libui.Tabs
statusbar *libui.Stack
statusline *StatusLine
interactive libui.Interactive
}
func NewAerc(conf *config.AercConfig, logger *log.Logger) *Aerc {
2018-02-28 03:17:26 +01:00
tabs := libui.NewTabs()
mainGrid := libui.NewGrid().Rows([]libui.GridSpec{
2018-06-12 15:50:46 +02:00
{libui.SIZE_EXACT, 1},
{libui.SIZE_WEIGHT, 1},
2018-02-28 03:17:26 +01:00
}).Columns([]libui.GridSpec{
2018-06-12 15:50:46 +02:00
{libui.SIZE_EXACT, 20},
{libui.SIZE_WEIGHT, 1},
2018-02-28 03:17:26 +01:00
})
statusbar := libui.NewStack()
statusline := NewStatusLine()
statusbar.Push(statusline)
// TODO: Grab sidebar size from config and via :set command
mainGrid.AddChild(libui.NewText("aerc").
2018-02-28 03:17:26 +01:00
Strategy(libui.TEXT_CENTER).
Color(tcell.ColorBlack, tcell.ColorWhite))
mainGrid.AddChild(tabs.TabStrip).At(0, 1)
mainGrid.AddChild(tabs.TabContent).At(1, 0).Span(1, 2)
2018-02-28 03:17:26 +01:00
for _, acct := range conf.Accounts {
2019-01-13 19:03:28 +01:00
view, err := NewAccountView(&acct, logger, statusbar)
if err != nil {
// TODO: something useful (update statusline?)
panic(err)
}
tabs.Add(view, acct.Name)
}
2018-02-28 03:17:26 +01:00
return &Aerc{
2018-06-12 02:04:21 +02:00
grid: mainGrid,
statusbar: statusbar,
statusline: statusline,
tabs: tabs,
2018-02-28 03:17:26 +01:00
}
}
func (aerc *Aerc) OnInvalidate(onInvalidate func(d libui.Drawable)) {
aerc.grid.OnInvalidate(onInvalidate)
}
func (aerc *Aerc) Invalidate() {
aerc.grid.Invalidate()
}
func (aerc *Aerc) Draw(ctx *libui.Context) {
aerc.grid.Draw(ctx)
}
func (aerc *Aerc) Event(event tcell.Event) bool {
switch event := event.(type) {
case *tcell.EventKey:
if event.Rune() == ':' {
2018-02-28 03:33:47 +01:00
exline := NewExLine(func(command string) {
aerc.statusline.Push(fmt.Sprintf("TODO: execute %s", command),
2018-06-12 02:04:21 +02:00
3*time.Second)
2018-02-28 03:33:47 +01:00
aerc.statusbar.Pop()
aerc.interactive = nil
}, func() {
aerc.statusbar.Pop()
aerc.interactive = nil
})
aerc.interactive = exline
aerc.statusbar.Push(exline)
return true
}
}
if aerc.interactive != nil {
return aerc.interactive.Event(event)
} else {
return false
2018-02-28 03:33:47 +01:00
}
2018-02-28 03:17:26 +01:00
}