about summary refs log tree commit diff stats
path: root/horizon
Commit message (Expand)AuthorAgeFilesLines
* 576 - helper for printing integersKartik K. Agaram2015-01-171-0/+4
* 507 - time to focus on testing I/OKartik K. Agaram2015-01-061-0/+6
* 154 - current stretch goal is to parse the horizon fileKartik K. Agaram2014-10-241-0/+19
Add :read and :unread commands' href='/akspecs/aerc/commit/commands/msg/read.go?h=0.4.0&id=6271d455eb7d72ca2942e3721721be54fed27779'>6271d45 ^
2a09617 ^








6271d45 ^

2a09617 ^
6271d45 ^



















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47











                                               

                  
             








                                                                    

 
                                                                



















                                                                               
package msg

import (
	"errors"
	"time"

	"github.com/gdamore/tcell"

	"git.sr.ht/~sircmpwn/aerc/widgets"
	"git.sr.ht/~sircmpwn/aerc/worker/types"
)

type Read struct{}

func init() {
	register(Read{})
}

func (_ Read) Aliases() []string {
	return []string{"read", "unread"}
}

func (_ Read) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (_ Read) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) != 1 {
		return errors.New("Usage: " + args[0])
	}

	widget := aerc.SelectedTab().(widgets.ProvidesMessage)
	msg := widget.SelectedMessage()
	store := widget.Store()
	store.Read([]uint32{msg.Uid}, args[0] == "read", func(
		msg types.WorkerMessage) {

		switch msg := msg.(type) {
		case *types.Done:
			aerc.PushStatus("Messages updated.", 10*time.Second)
		case *types.Error:
			aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second).
				Color(tcell.ColorDefault, tcell.ColorRed)
		}
	})
	return nil
}