aboutsummaryrefslogtreecommitdiff
path: root/widgets/directories.go
blob: d765ac21020d1d6a13596bbd081182645a04c951 (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package widgets

import (
	"log"
	"sort"
	"strings"

	"github.com/gdamore/tcell"

	"git.sr.ht/~sircmpwn/aerc2/config"
	"git.sr.ht/~sircmpwn/aerc2/lib/ui"
	"git.sr.ht/~sircmpwn/aerc2/worker/types"
)

type DirectoryList struct {
	conf         *config.AccountConfig
	dirs         *ui.List
	logger       *log.Logger
	onInvalidate func(d ui.Drawable)
	worker       *types.Worker
}

func NewDirectoryList(conf *config.AccountConfig,
	logger *log.Logger, worker *types.Worker) *DirectoryList {

	return &DirectoryList{
		conf:   conf,
		dirs:   ui.NewList(),
		logger: logger,
		worker: worker,
	}
}

func (dirlist *DirectoryList) UpdateList() {
	var dirs []ui.Drawable
	dirlist.worker.PostAction(
		&types.ListDirectories{}, func(msg types.WorkerMessage) {

			switch msg := msg.(type) {
			case *types.Directory:
				if len(dirlist.conf.Folders) > 1 {
					idx := sort.SearchStrings(dirlist.conf.Folders, msg.Name)
					if idx == len(dirlist.conf.Folders) ||
						dirlist.conf.Folders[idx] != msg.Name {
						break
					}
				}
				dirs = append(dirs, directoryEntry(msg.Name))
			case *types.Done:
				sort.Slice(dirs, func(_a, _b int) bool {
					a, _ := dirs[_a].(directoryEntry)
					b, _ := dirs[_b].(directoryEntry)
					return strings.Compare(string(a), string(b)) > 0
				})
				dirlist.dirs.Set(dirs)
				dirlist.dirs.Select(0)
			}
		})
}

func (dirlist *DirectoryList) OnInvalidate(onInvalidate func(d ui.Drawable)) {
	dirlist.dirs.OnInvalidate(func(_ ui.Drawable) {
		onInvalidate(dirlist)
	})
}

func (dirlist *DirectoryList) Invalidate() {
	dirlist.dirs.Invalidate()
}

func (dirlist *DirectoryList) Draw(ctx *ui.Context) {
	dirlist.dirs.Draw(ctx)
}

type directoryEntry string

func (d directoryEntry) OnInvalidate(_ func(_ ui.Drawable)) {
}

func (d directoryEntry) Invalidate() {
}

func (d directoryEntry) Draw(ctx *ui.Context) {
	d.DrawWithSelected(ctx, false)
}

func (d directoryEntry) DrawWithSelected(ctx *ui.Context, selected bool) {
	style := tcell.StyleDefault
	if selected {
		style = style.Background(tcell.ColorWhite).Foreground(tcell.ColorBlack)
	}
	ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', style)
	ctx.Printf(0, 0, style, "%s", d)
}