summary refs log tree commit diff stats
path: root/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'widgets')
-rw-r--r--widgets/directories.go71
1 files changed, 26 insertions, 45 deletions
diff --git a/widgets/directories.go b/widgets/directories.go
index ff2f6f5..16b0e5a 100644
--- a/widgets/directories.go
+++ b/widgets/directories.go
@@ -3,7 +3,6 @@ package widgets
 import (
 	"log"
 	"sort"
-	"strings"
 
 	"github.com/gdamore/tcell"
 
@@ -14,7 +13,7 @@ import (
 
 type DirectoryList struct {
 	conf         *config.AccountConfig
-	dirs         *ui.List
+	dirs         []string
 	logger       *log.Logger
 	onInvalidate func(d ui.Drawable)
 	worker       *types.Worker
@@ -23,68 +22,50 @@ type DirectoryList struct {
 func NewDirectoryList(conf *config.AccountConfig,
 	logger *log.Logger, worker *types.Worker) *DirectoryList {
 
-	return &DirectoryList{
-		conf:   conf,
-		dirs:   ui.NewList(),
-		logger: logger,
-		worker: worker,
-	}
+	return &DirectoryList{conf: conf, logger: logger, worker: worker}
 }
 
 func (dirlist *DirectoryList) UpdateList() {
-	var dirs []ui.Drawable
+	var dirs []string
 	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))
+				dirs = append(dirs, 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)
+				sort.Strings(dirs)
+				dirlist.dirs = dirs
+				dirlist.Invalidate()
 			}
 		})
 }
 
 func (dirlist *DirectoryList) OnInvalidate(onInvalidate func(d ui.Drawable)) {
-	dirlist.dirs.OnInvalidate(func(_ ui.Drawable) {
-		onInvalidate(dirlist)
-	})
+	dirlist.onInvalidate = onInvalidate
 }
 
 func (dirlist *DirectoryList) Invalidate() {
-	dirlist.dirs.Invalidate()
+	if dirlist.onInvalidate != nil {
+		dirlist.onInvalidate(dirlist)
+	}
 }
 
 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) {
-	// TODO: distinguish the selected item
 	ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', tcell.StyleDefault)
-	ctx.Printf(0, 0, tcell.StyleDefault, "%s", d)
+	row := 0
+	for _, name := range dirlist.dirs {
+		if row >= ctx.Height() {
+			break
+		}
+		if len(dirlist.conf.Folders) > 1 {
+			idx := sort.SearchStrings(dirlist.conf.Folders, name)
+			if idx == len(dirlist.conf.Folders) ||
+				dirlist.conf.Folders[idx] != name {
+				continue
+			}
+		}
+		ctx.Printf(0, row, tcell.StyleDefault, "%s", name)
+		row++
+	}
 }
Kartik Agaram <vc@akkartik.com> 2020-11-01 22:02:13 -0800 committer Kartik Agaram <vc@akkartik.com> 2020-11-01 22:02:13 -0800 7154' href='/akkartik/mu/commit/apps/factorial4.subx?h=hlt&id=17623a628aee2429a5a8d8b65bd84235f6be0e3f'>17623a62 ^
c83dca9c ^
17623a62 ^






c83dca9c ^
9428990b ^
c83dca9c ^








480fd995 ^















17623a62 ^
480fd995 ^
17623a62 ^
480fd995 ^
480fd995 ^





17623a62 ^
480fd995 ^
17623a62 ^
480fd995 ^
17623a62 ^

480fd995 ^
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