2019-03-11 04:45:00 +01:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
2019-06-07 22:22:04 +02:00
|
|
|
"fmt"
|
2019-03-15 02:37:00 +01:00
|
|
|
"log"
|
2020-06-09 21:13:14 +02:00
|
|
|
"math"
|
2019-03-15 02:37:00 +01:00
|
|
|
|
|
|
|
"github.com/gdamore/tcell"
|
2019-06-07 22:22:04 +02:00
|
|
|
"github.com/mattn/go-runewidth"
|
2019-03-15 02:37:00 +01:00
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/config"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib"
|
2019-07-21 22:01:51 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/format"
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/lib/ui"
|
2019-07-08 04:43:56 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/models"
|
2019-03-11 04:45:00 +01:00
|
|
|
)
|
|
|
|
|
2019-03-15 02:37:00 +01:00
|
|
|
type MessageList struct {
|
2019-04-27 18:47:59 +02:00
|
|
|
ui.Invalidatable
|
2019-07-31 09:50:07 +02:00
|
|
|
conf *config.AercConfig
|
|
|
|
logger *log.Logger
|
|
|
|
height int
|
|
|
|
scroll int
|
|
|
|
nmsgs int
|
|
|
|
spinner *Spinner
|
|
|
|
store *lib.MessageStore
|
|
|
|
isInitalizing bool
|
2019-09-06 00:32:36 +02:00
|
|
|
aerc *Aerc
|
2019-03-15 02:37:00 +01:00
|
|
|
}
|
|
|
|
|
2019-09-06 00:32:36 +02:00
|
|
|
func NewMessageList(conf *config.AercConfig, logger *log.Logger, aerc *Aerc) *MessageList {
|
2019-03-15 02:37:00 +01:00
|
|
|
ml := &MessageList{
|
2019-07-31 09:50:07 +02:00
|
|
|
conf: conf,
|
|
|
|
logger: logger,
|
2019-08-30 03:30:35 +02:00
|
|
|
spinner: NewSpinner(&conf.Ui),
|
2019-07-31 09:50:07 +02:00
|
|
|
isInitalizing: true,
|
2019-09-06 00:32:36 +02:00
|
|
|
aerc: aerc,
|
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) Invalidate() {
|
2019-04-27 18:47:59 +02:00
|
|
|
ml.DoInvalidate(ml)
|
2019-03-15 02:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) Draw(ctx *ui.Context) {
|
2019-03-16 02:41:18 +01:00
|
|
|
ml.height = ctx.Height()
|
2020-05-28 16:32:42 +02:00
|
|
|
ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', tcell.StyleDefault)
|
2019-03-15 02:37:00 +01:00
|
|
|
|
2019-04-28 15:26:22 +02:00
|
|
|
store := ml.Store()
|
|
|
|
if store == nil {
|
2019-07-31 09:50:07 +02:00
|
|
|
if ml.isInitalizing {
|
|
|
|
ml.spinner.Draw(ctx)
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
ml.spinner.Stop()
|
|
|
|
ml.drawEmptyMessage(ctx)
|
|
|
|
return
|
|
|
|
}
|
2019-03-15 02:37:00 +01:00
|
|
|
}
|
|
|
|
|
2020-06-09 21:13:13 +02:00
|
|
|
ml.ensureScroll()
|
|
|
|
|
2020-06-09 21:13:14 +02:00
|
|
|
needScrollbar := true
|
|
|
|
percentVisible := float64(ctx.Height()) / float64(len(store.Uids()))
|
|
|
|
if percentVisible >= 1.0 {
|
|
|
|
needScrollbar = false
|
|
|
|
}
|
|
|
|
|
|
|
|
textWidth := ctx.Width()
|
|
|
|
if needScrollbar {
|
|
|
|
textWidth -= 1
|
|
|
|
}
|
|
|
|
if textWidth < 0 {
|
|
|
|
textWidth = 0
|
|
|
|
}
|
|
|
|
|
2019-03-15 02:37:00 +01:00
|
|
|
var (
|
2019-03-15 02:51:29 +01:00
|
|
|
needsHeaders []uint32
|
2019-03-15 02:37:00 +01:00
|
|
|
row int = 0
|
|
|
|
)
|
2019-07-17 09:35:50 +02:00
|
|
|
uids := store.Uids()
|
2019-03-15 02:37:00 +01:00
|
|
|
|
2019-07-17 09:35:50 +02:00
|
|
|
for i := len(uids) - 1 - ml.scroll; i >= 0; i-- {
|
|
|
|
uid := uids[i]
|
2019-04-28 15:26:22 +02:00
|
|
|
msg := store.Messages[uid]
|
2019-03-15 03:19:04 +01:00
|
|
|
|
2019-03-15 02:37:00 +01:00
|
|
|
if row >= ctx.Height() {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if msg == nil {
|
|
|
|
needsHeaders = append(needsHeaders, uid)
|
2020-06-09 21:13:14 +02:00
|
|
|
ml.spinner.Draw(ctx.Subcontext(0, row, textWidth, 1))
|
2019-03-15 03:19:04 +01:00
|
|
|
row += 1
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-05-28 16:32:42 +02:00
|
|
|
style := tcell.StyleDefault
|
2019-06-08 15:10:14 +02:00
|
|
|
|
2020-05-28 16:32:42 +02:00
|
|
|
// current row
|
|
|
|
if row == ml.store.SelectedIndex()-ml.scroll {
|
|
|
|
style = style.Reverse(true)
|
|
|
|
}
|
2019-06-08 15:10:14 +02:00
|
|
|
// deleted message
|
2019-04-28 15:26:22 +02:00
|
|
|
if _, ok := store.Deleted[msg.Uid]; ok {
|
2020-05-28 16:32:42 +02:00
|
|
|
style = style.Foreground(tcell.ColorGray)
|
2019-03-30 15:40:55 +01:00
|
|
|
}
|
2019-06-08 15:10:14 +02:00
|
|
|
// unread message
|
|
|
|
seen := false
|
|
|
|
for _, flag := range msg.Flags {
|
2020-05-28 16:32:42 +02:00
|
|
|
if flag == models.SeenFlag {
|
2019-06-08 15:10:14 +02:00
|
|
|
seen = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !seen {
|
2020-05-28 16:32:42 +02:00
|
|
|
style = style.Bold(true)
|
2020-05-27 07:37:02 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 21:13:14 +02:00
|
|
|
ctx.Fill(0, row, textWidth, 1, ' ', style)
|
2020-05-28 16:32:42 +02:00
|
|
|
uiConfig := ml.conf.GetUiConfig(map[config.ContextType]string{
|
|
|
|
config.UI_CONTEXT_ACCOUNT: ml.aerc.SelectedAccount().AccountConfig().Name,
|
|
|
|
config.UI_CONTEXT_FOLDER: ml.aerc.SelectedAccount().Directories().Selected(),
|
|
|
|
config.UI_CONTEXT_SUBJECT: msg.Envelope.Subject,
|
|
|
|
})
|
|
|
|
|
2019-07-21 22:01:51 +02:00
|
|
|
fmtStr, args, err := format.ParseMessageFormat(
|
2019-11-12 12:50:00 +01:00
|
|
|
ml.aerc.SelectedAccount().acct.From,
|
2020-01-23 13:56:48 +01:00
|
|
|
uiConfig.IndexFormat,
|
|
|
|
uiConfig.TimestampFormat, "", i, msg, store.IsMarked(uid))
|
2019-06-07 21:35:23 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.Printf(0, row, style, "%v", err)
|
|
|
|
} else {
|
2019-06-07 22:22:04 +02:00
|
|
|
line := fmt.Sprintf(fmtStr, args...)
|
2020-06-09 21:13:14 +02:00
|
|
|
line = runewidth.Truncate(line, textWidth, "…")
|
2019-06-07 22:22:04 +02:00
|
|
|
ctx.Printf(0, row, style, "%s", line)
|
2019-06-07 21:35:23 +02:00
|
|
|
}
|
2019-03-15 02:37:00 +01:00
|
|
|
|
|
|
|
row += 1
|
|
|
|
}
|
|
|
|
|
2020-06-09 21:13:14 +02:00
|
|
|
if needScrollbar {
|
|
|
|
scrollbarCtx := ctx.Subcontext(ctx.Width()-1, 0, 1, ctx.Height())
|
|
|
|
ml.drawScrollbar(scrollbarCtx, percentVisible)
|
|
|
|
}
|
|
|
|
|
2019-07-17 09:35:50 +02:00
|
|
|
if len(uids) == 0 {
|
2020-02-29 05:03:09 +01:00
|
|
|
if store.Sorting {
|
|
|
|
ml.spinner.Start()
|
|
|
|
ml.spinner.Draw(ctx)
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
ml.drawEmptyMessage(ctx)
|
|
|
|
}
|
2019-04-04 20:25:51 +02:00
|
|
|
}
|
|
|
|
|
2019-03-15 02:37:00 +01:00
|
|
|
if len(needsHeaders) != 0 {
|
2019-04-28 15:26:22 +02:00
|
|
|
store.FetchHeaders(needsHeaders, nil)
|
2019-03-15 02:37:00 +01:00
|
|
|
ml.spinner.Start()
|
|
|
|
} else {
|
|
|
|
ml.spinner.Stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-09 21:13:14 +02:00
|
|
|
func (ml *MessageList) drawScrollbar(ctx *ui.Context, percentVisible float64) {
|
|
|
|
gutterStyle := tcell.StyleDefault
|
|
|
|
pillStyle := tcell.StyleDefault.Reverse(true)
|
|
|
|
|
|
|
|
// gutter
|
|
|
|
ctx.Fill(0, 0, 1, ctx.Height(), ' ', gutterStyle)
|
|
|
|
|
|
|
|
// pill
|
|
|
|
pillSize := int(math.Ceil(float64(ctx.Height()) * percentVisible))
|
|
|
|
percentScrolled := float64(ml.scroll) / float64(len(ml.Store().Uids()))
|
|
|
|
pillOffset := int(math.Floor(float64(ctx.Height()) * percentScrolled))
|
|
|
|
ctx.Fill(0, pillOffset, 1, pillSize, ' ', pillStyle)
|
|
|
|
}
|
|
|
|
|
2019-09-06 00:32:36 +02:00
|
|
|
func (ml *MessageList) MouseEvent(localX int, localY int, event tcell.Event) {
|
|
|
|
switch event := event.(type) {
|
|
|
|
case *tcell.EventMouse:
|
|
|
|
switch event.Buttons() {
|
|
|
|
case tcell.Button1:
|
|
|
|
if ml.aerc == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
selectedMsg, ok := ml.Clicked(localX, localY)
|
|
|
|
if ok {
|
|
|
|
ml.Select(selectedMsg)
|
|
|
|
acct := ml.aerc.SelectedAccount()
|
|
|
|
if acct.Messages().Empty() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
store := acct.Messages().Store()
|
|
|
|
msg := acct.Messages().Selected()
|
|
|
|
if msg == nil {
|
|
|
|
return
|
|
|
|
}
|
2020-03-03 22:20:07 +01:00
|
|
|
lib.NewMessageStoreView(msg, store, ml.aerc.DecryptKeys,
|
2020-05-19 13:06:46 +02:00
|
|
|
func(view lib.MessageView, err error) {
|
|
|
|
if err != nil {
|
2020-05-28 16:32:42 +02:00
|
|
|
ml.aerc.PushError(err.Error())
|
2020-05-19 13:06:46 +02:00
|
|
|
return
|
|
|
|
}
|
2020-03-03 22:20:07 +01:00
|
|
|
viewer := NewMessageViewer(acct, ml.aerc.Config(), view)
|
|
|
|
ml.aerc.NewTab(viewer, msg.Envelope.Subject)
|
|
|
|
})
|
2019-09-06 00:32:36 +02:00
|
|
|
}
|
|
|
|
case tcell.WheelDown:
|
2020-02-22 17:05:46 +01:00
|
|
|
if ml.store != nil {
|
|
|
|
ml.store.Next()
|
|
|
|
}
|
2020-06-09 21:13:13 +02:00
|
|
|
ml.Invalidate()
|
2019-09-06 00:32:36 +02:00
|
|
|
case tcell.WheelUp:
|
2020-02-22 17:05:46 +01:00
|
|
|
if ml.store != nil {
|
|
|
|
ml.store.Prev()
|
|
|
|
}
|
2020-06-09 21:13:13 +02:00
|
|
|
ml.Invalidate()
|
2019-09-06 00:32:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *MessageList) Clicked(x, y int) (int, bool) {
|
|
|
|
store := ml.Store()
|
|
|
|
if store == nil || ml.nmsgs == 0 || y >= ml.nmsgs {
|
|
|
|
return 0, false
|
|
|
|
}
|
|
|
|
return y + ml.scroll, true
|
|
|
|
}
|
|
|
|
|
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) {
|
2019-04-28 15:26:22 +02:00
|
|
|
if ml.Store() != store {
|
2019-03-21 04:23:38 +01:00
|
|
|
return
|
|
|
|
}
|
2019-07-17 09:35:50 +02:00
|
|
|
uids := store.Uids()
|
2019-04-28 15:26:22 +02:00
|
|
|
|
2019-07-17 09:35:50 +02:00
|
|
|
if len(uids) > 0 {
|
2019-05-20 00:08:41 +02:00
|
|
|
// When new messages come in, advance the cursor accordingly
|
|
|
|
// Note that this assumes new messages are appended to the top, which
|
|
|
|
// isn't necessarily true once we implement SORT... ideally we'd look
|
|
|
|
// for the previously selected UID.
|
2019-07-17 09:35:50 +02:00
|
|
|
if len(uids) > ml.nmsgs && ml.nmsgs != 0 {
|
|
|
|
for i := 0; i < len(uids)-ml.nmsgs; i++ {
|
2019-06-11 16:08:44 +02:00
|
|
|
ml.Store().Next()
|
2019-05-20 00:08:41 +02:00
|
|
|
}
|
|
|
|
}
|
2019-07-17 09:35:50 +02:00
|
|
|
if len(uids) < ml.nmsgs && ml.nmsgs != 0 {
|
|
|
|
for i := 0; i < ml.nmsgs-len(uids); i++ {
|
2019-06-11 16:08:44 +02:00
|
|
|
ml.Store().Prev()
|
2019-05-20 00:21:02 +02:00
|
|
|
}
|
|
|
|
}
|
2019-07-17 09:35:50 +02:00
|
|
|
ml.nmsgs = len(uids)
|
2019-03-21 04:23:38 +01:00
|
|
|
}
|
2019-04-28 15:26:22 +02:00
|
|
|
|
2019-03-21 04:23:38 +01:00
|
|
|
ml.Invalidate()
|
|
|
|
}
|
|
|
|
|
2019-03-16 02:36:06 +01:00
|
|
|
func (ml *MessageList) SetStore(store *lib.MessageStore) {
|
2019-05-20 00:09:16 +02:00
|
|
|
if ml.Store() != store {
|
2019-03-16 02:49:40 +01:00
|
|
|
ml.scroll = 0
|
|
|
|
}
|
2019-05-19 11:49:57 +02:00
|
|
|
ml.store = store
|
2019-03-15 02:37:00 +01:00
|
|
|
if store != nil {
|
|
|
|
ml.spinner.Stop()
|
2019-07-17 09:35:50 +02:00
|
|
|
ml.nmsgs = len(store.Uids())
|
2019-04-28 15:26:22 +02:00
|
|
|
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-07-31 09:50:07 +02:00
|
|
|
func (ml *MessageList) SetInitDone() {
|
|
|
|
ml.isInitalizing = false
|
|
|
|
}
|
|
|
|
|
2019-03-21 04:23:38 +01:00
|
|
|
func (ml *MessageList) Store() *lib.MessageStore {
|
2019-05-19 11:49:57 +02:00
|
|
|
return ml.store
|
2019-03-21 04:23:38 +01:00
|
|
|
}
|
|
|
|
|
2019-04-09 05:14:14 +02:00
|
|
|
func (ml *MessageList) Empty() bool {
|
2019-04-28 15:26:22 +02:00
|
|
|
store := ml.Store()
|
2019-07-17 09:35:50 +02:00
|
|
|
return store == nil || len(store.Uids()) == 0
|
2019-04-09 05:14:14 +02:00
|
|
|
}
|
|
|
|
|
2019-07-08 04:43:56 +02:00
|
|
|
func (ml *MessageList) Selected() *models.MessageInfo {
|
2019-04-28 15:26:22 +02:00
|
|
|
store := ml.Store()
|
2019-07-17 09:35:50 +02:00
|
|
|
uids := store.Uids()
|
|
|
|
return store.Messages[uids[len(uids)-ml.store.SelectedIndex()-1]]
|
2019-03-21 04:23:38 +01:00
|
|
|
}
|
|
|
|
|
2019-03-16 03:01:20 +01:00
|
|
|
func (ml *MessageList) Select(index int) {
|
2019-04-28 15:26:22 +02:00
|
|
|
store := ml.Store()
|
2019-06-11 07:05:55 +02:00
|
|
|
store.Select(index)
|
2020-06-09 21:13:13 +02:00
|
|
|
ml.Invalidate()
|
2019-03-16 03:01:20 +01:00
|
|
|
}
|
|
|
|
|
2020-06-09 21:13:13 +02:00
|
|
|
func (ml *MessageList) ensureScroll() {
|
2019-04-28 15:26:22 +02:00
|
|
|
store := ml.Store()
|
2019-07-17 09:35:50 +02:00
|
|
|
if store == nil || len(store.Uids()) == 0 {
|
2019-03-22 02:00:03 +01:00
|
|
|
return
|
|
|
|
}
|
2020-06-09 21:13:13 +02:00
|
|
|
|
|
|
|
h := ml.Height()
|
|
|
|
|
|
|
|
maxScroll := len(store.Uids()) - h
|
|
|
|
if maxScroll < 0 {
|
|
|
|
maxScroll = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
selectedIndex := store.SelectedIndex()
|
|
|
|
|
|
|
|
if selectedIndex >= ml.scroll && selectedIndex < ml.scroll+h {
|
|
|
|
if ml.scroll > maxScroll {
|
|
|
|
ml.scroll = maxScroll
|
2019-03-16 02:49:40 +01:00
|
|
|
}
|
2020-06-09 21:13:13 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if selectedIndex >= ml.scroll+h {
|
|
|
|
ml.scroll = selectedIndex - h + 1
|
|
|
|
} else if selectedIndex < ml.scroll {
|
|
|
|
ml.scroll = selectedIndex
|
|
|
|
}
|
|
|
|
|
|
|
|
if ml.scroll > maxScroll {
|
|
|
|
ml.scroll = maxScroll
|
2019-03-16 02:49:40 +01:00
|
|
|
}
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
2019-07-31 09:50:07 +02:00
|
|
|
|
|
|
|
func (ml *MessageList) drawEmptyMessage(ctx *ui.Context) {
|
2020-05-28 16:32:42 +02:00
|
|
|
msg := ml.aerc.SelectedAccount().UiConfig().EmptyMessage
|
2019-07-31 09:50:07 +02:00
|
|
|
ctx.Printf((ctx.Width()/2)-(len(msg)/2), 0,
|
2020-05-28 16:32:42 +02:00
|
|
|
tcell.StyleDefault, "%s", msg)
|
2019-07-31 09:50:07 +02:00
|
|
|
}
|