2019-03-11 04:45:00 +01:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2019-03-15 02:37:00 +01:00
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/gdamore/tcell"
|
|
|
|
|
|
|
|
"git.sr.ht/~sircmpwn/aerc2/config"
|
2019-03-16 02:36:06 +01:00
|
|
|
"git.sr.ht/~sircmpwn/aerc2/lib"
|
2019-03-15 02:37:00 +01:00
|
|
|
"git.sr.ht/~sircmpwn/aerc2/lib/ui"
|
2019-03-21 04:23:38 +01:00
|
|
|
"git.sr.ht/~sircmpwn/aerc2/worker/types"
|
2019-03-11 04:45:00 +01:00
|
|
|
)
|
|
|
|
|
2019-03-15 02:37:00 +01:00
|
|
|
type MessageList struct {
|
|
|
|
conf *config.AercConfig
|
|
|
|
logger *log.Logger
|
2019-03-16 02:41:18 +01:00
|
|
|
height int
|
2019-03-15 02:37:00 +01:00
|
|
|
onInvalidate func(d ui.Drawable)
|
2019-03-16 02:49:40 +01:00
|
|
|
scroll int
|
2019-03-15 03:19:04 +01:00
|
|
|
selected int
|
2019-03-15 02:37:00 +01:00
|
|
|
spinner *Spinner
|
2019-03-16 02:36:06 +01:00
|
|
|
store *lib.MessageStore
|
2019-03-15 02:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: fish in config
|
2019-03-15 02:51:29 +01:00
|
|
|
func NewMessageList(logger *log.Logger) *MessageList {
|
2019-03-15 02:37:00 +01:00
|
|
|
ml := &MessageList{
|
2019-03-15 03:19:04 +01:00
|
|
|
logger: logger,
|
|
|
|
selected: 0,
|
|
|
|
spinner: NewSpinner(),
|
2019-03-15 02:37:00 +01:00
|
|
|
}
|
|
|
|
ml.spinner.OnInvalidate(func(_ ui.Drawable) {
|
|
|
|
ml.Invalidate()
|
|
|
|
})
|
|
|
|
// TODO: stop spinner, probably
|
|
|
|
ml.spinner.Start()
|
|
|
|
return ml
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) OnInvalidate(onInvalidate func(d ui.Drawable)) {
|
|
|
|
ml.onInvalidate = onInvalidate
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) Invalidate() {
|
|
|
|
if ml.onInvalidate != nil {
|
|
|
|
ml.onInvalidate(ml)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) Draw(ctx *ui.Context) {
|
2019-03-16 02:41:18 +01:00
|
|
|
ml.height = ctx.Height()
|
2019-03-15 02:37:00 +01:00
|
|
|
ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', tcell.StyleDefault)
|
|
|
|
|
|
|
|
if ml.store == nil {
|
|
|
|
ml.spinner.Draw(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2019-03-15 02:51:29 +01:00
|
|
|
needsHeaders []uint32
|
2019-03-15 02:37:00 +01:00
|
|
|
row int = 0
|
|
|
|
)
|
|
|
|
|
2019-03-16 02:49:40 +01:00
|
|
|
for i := len(ml.store.Uids) - 1 - ml.scroll; i >= 0; i-- {
|
2019-03-15 03:19:04 +01:00
|
|
|
uid := ml.store.Uids[i]
|
|
|
|
msg := ml.store.Messages[uid]
|
|
|
|
|
2019-03-15 02:37:00 +01:00
|
|
|
if row >= ctx.Height() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg == nil {
|
|
|
|
needsHeaders = append(needsHeaders, uid)
|
|
|
|
ml.spinner.Draw(ctx.Subcontext(0, row, ctx.Width(), 1))
|
2019-03-15 03:19:04 +01:00
|
|
|
row += 1
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
style := tcell.StyleDefault
|
2019-03-16 02:49:40 +01:00
|
|
|
if row == ml.selected-ml.scroll {
|
2019-03-30 17:59:18 +01:00
|
|
|
style = style.Reverse(true)
|
2019-03-15 02:37:00 +01:00
|
|
|
}
|
2019-03-30 15:40:55 +01:00
|
|
|
if _, ok := ml.store.Deleted[msg.Uid]; ok {
|
|
|
|
style = style.Foreground(tcell.ColorGray)
|
|
|
|
}
|
2019-03-15 03:19:04 +01:00
|
|
|
ctx.Fill(0, row, ctx.Width(), 1, ' ', style)
|
|
|
|
ctx.Printf(0, row, style, "%s", msg.Envelope.Subject)
|
2019-03-15 02:37:00 +01:00
|
|
|
|
|
|
|
row += 1
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:25:51 +02:00
|
|
|
if len(ml.store.Uids) == 0 {
|
|
|
|
msg := "(no messages)"
|
|
|
|
ctx.Printf((ctx.Width()/2)-(len(msg)/2), 0,
|
|
|
|
tcell.StyleDefault, "%s", msg)
|
|
|
|
}
|
|
|
|
|
2019-03-15 02:37:00 +01:00
|
|
|
if len(needsHeaders) != 0 {
|
2019-03-30 03:35:53 +01:00
|
|
|
ml.store.FetchHeaders(needsHeaders, nil)
|
2019-03-15 02:37:00 +01:00
|
|
|
ml.spinner.Start()
|
|
|
|
} else {
|
|
|
|
ml.spinner.Stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 02:41:18 +01:00
|
|
|
func (ml *MessageList) Height() int {
|
|
|
|
return ml.height
|
|
|
|
}
|
|
|
|
|
2019-03-21 04:23:38 +01:00
|
|
|
func (ml *MessageList) storeUpdate(store *lib.MessageStore) {
|
|
|
|
if ml.store != store {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for ml.selected >= len(ml.store.Uids) {
|
|
|
|
ml.Prev()
|
|
|
|
}
|
|
|
|
ml.Invalidate()
|
|
|
|
}
|
|
|
|
|
2019-03-16 02:36:06 +01:00
|
|
|
func (ml *MessageList) SetStore(store *lib.MessageStore) {
|
2019-03-16 02:49:40 +01:00
|
|
|
if ml.store == store {
|
|
|
|
ml.scroll = 0
|
|
|
|
ml.selected = 0
|
|
|
|
}
|
2019-03-15 02:37:00 +01:00
|
|
|
ml.store = store
|
|
|
|
if store != nil {
|
|
|
|
ml.spinner.Stop()
|
2019-03-21 04:23:38 +01:00
|
|
|
ml.store.OnUpdate(ml.storeUpdate)
|
2019-03-15 02:37:00 +01:00
|
|
|
} else {
|
|
|
|
ml.spinner.Start()
|
|
|
|
}
|
|
|
|
ml.Invalidate()
|
|
|
|
}
|
2019-03-15 04:41:25 +01:00
|
|
|
|
2019-03-21 04:23:38 +01:00
|
|
|
func (ml *MessageList) Store() *lib.MessageStore {
|
|
|
|
return ml.store
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) Selected() *types.MessageInfo {
|
|
|
|
return ml.store.Messages[ml.store.Uids[len(ml.store.Uids)-ml.selected-1]]
|
|
|
|
}
|
|
|
|
|
2019-03-16 03:01:20 +01:00
|
|
|
func (ml *MessageList) Select(index int) {
|
|
|
|
ml.selected = index
|
|
|
|
for ; ml.selected < 0; ml.selected = len(ml.store.Uids) + ml.selected {
|
|
|
|
}
|
|
|
|
if ml.selected > len(ml.store.Uids) {
|
|
|
|
ml.selected = len(ml.store.Uids)
|
|
|
|
}
|
2019-03-17 22:51:14 +01:00
|
|
|
// I'm too lazy to do the math right now
|
|
|
|
for ml.selected-ml.scroll >= ml.Height() {
|
|
|
|
ml.scroll += 1
|
|
|
|
}
|
|
|
|
for ml.selected-ml.scroll < 0 {
|
|
|
|
ml.scroll -= 1
|
|
|
|
}
|
2019-03-16 03:01:20 +01:00
|
|
|
}
|
|
|
|
|
2019-03-15 04:41:25 +01:00
|
|
|
func (ml *MessageList) nextPrev(delta int) {
|
2019-03-22 02:00:03 +01:00
|
|
|
if ml.store == nil || len(ml.store.Uids) == 0 {
|
|
|
|
return
|
|
|
|
}
|
2019-03-15 04:41:25 +01:00
|
|
|
ml.selected += delta
|
|
|
|
if ml.selected < 0 {
|
2019-03-15 06:46:14 +01:00
|
|
|
ml.selected = 0
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
if ml.selected >= len(ml.store.Uids) {
|
2019-03-15 06:46:14 +01:00
|
|
|
ml.selected = len(ml.store.Uids) - 1
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
2019-03-16 02:49:40 +01:00
|
|
|
if ml.Height() != 0 {
|
|
|
|
if ml.selected-ml.scroll >= ml.Height() {
|
|
|
|
ml.scroll += 1
|
|
|
|
} else if ml.selected-ml.scroll < 0 {
|
|
|
|
ml.scroll -= 1
|
|
|
|
}
|
|
|
|
}
|
2019-03-15 04:41:25 +01:00
|
|
|
ml.Invalidate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) Next() {
|
|
|
|
ml.nextPrev(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) Prev() {
|
|
|
|
ml.nextPrev(-1)
|
|
|
|
}
|