aerc/widgets/directories.go

88 lines
2.0 KiB
Go
Raw Normal View History

2019-01-13 20:25:46 +01:00
package widgets
import (
"log"
"sort"
"github.com/gdamore/tcell"
"git.sr.ht/~sircmpwn/aerc2/config"
2019-01-13 20:25:46 +01:00
"git.sr.ht/~sircmpwn/aerc2/lib/ui"
"git.sr.ht/~sircmpwn/aerc2/worker/types"
)
type DirectoryList struct {
conf *config.AccountConfig
dirs []string
2019-01-13 20:25:46 +01:00
logger *log.Logger
onInvalidate func(d ui.Drawable)
selected string
2019-01-13 20:25:46 +01:00
worker *types.Worker
}
func NewDirectoryList(conf *config.AccountConfig,
logger *log.Logger, worker *types.Worker) *DirectoryList {
return &DirectoryList{conf: conf, logger: logger, worker: worker}
2019-01-13 20:25:46 +01:00
}
func (dirlist *DirectoryList) UpdateList(done func(dirs []string)) {
var dirs []string
2019-01-13 20:25:46 +01:00
dirlist.worker.PostAction(
&types.ListDirectories{}, func(msg types.WorkerMessage) {
switch msg := msg.(type) {
case *types.Directory:
dirs = append(dirs, msg.Name)
2019-01-13 20:25:46 +01:00
case *types.Done:
sort.Strings(dirs)
dirlist.dirs = dirs
dirlist.Invalidate()
if done != nil {
done(dirs)
}
2019-01-13 20:25:46 +01:00
}
})
}
func (dirlist *DirectoryList) Select(name string) {
dirlist.selected = name
2019-01-13 22:18:10 +01:00
dirlist.worker.PostAction(&types.OpenDirectory{Directory: name}, nil)
dirlist.Invalidate()
}
2019-01-13 20:25:46 +01:00
func (dirlist *DirectoryList) OnInvalidate(onInvalidate func(d ui.Drawable)) {
dirlist.onInvalidate = onInvalidate
2019-01-13 20:25:46 +01:00
}
func (dirlist *DirectoryList) Invalidate() {
if dirlist.onInvalidate != nil {
dirlist.onInvalidate(dirlist)
}
2019-01-13 20:25:46 +01:00
}
func (dirlist *DirectoryList) Draw(ctx *ui.Context) {
ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', tcell.StyleDefault)
row := 0
for _, name := range dirlist.dirs {
if row >= ctx.Height() {
break
}
if len(dirlist.conf.Folders) > 1 && name != dirlist.selected {
idx := sort.SearchStrings(dirlist.conf.Folders, name)
if idx == len(dirlist.conf.Folders) ||
dirlist.conf.Folders[idx] != name {
continue
}
}
style := tcell.StyleDefault
if name == dirlist.selected {
style = style.Background(tcell.ColorWhite).
Foreground(tcell.ColorBlack)
}
ctx.Fill(0, row, ctx.Width(), 1, ' ', style)
ctx.Printf(0, row, style, "%s", name)
row++
}
2019-01-13 20:25:46 +01:00
}