-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui.go
62 lines (53 loc) · 1.15 KB
/
ui.go
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
package kraaler
// func URLWidget(stream <-chan *url.URL) (ui.Drawable, chan *url.URL) {
// out := make(chan *url.URL)
// l := widgets.NewList()
// l.Rows = []string{
// "",
// "",
// "",
// "",
// "",
// "",
// "",
// "",
// "",
// "",
// }
// l.TextStyle = ui.NewStyle(ui.ColorYellow)
// l.WrapText = false
// l.SetRect(0, 0, 45, 8)
// go func() {
// defer close(out)
// var n int
// for u := range stream {
// l.Rows = append([]string{u.String()}, l.Rows[0:9]...)
// l.Title = fmt.Sprintf("URLs (total: %d)", n)
// out <- u
// n += 1
// }
// }()
// return l, out
// }
// func RenderUrlStore(render func(bs ...ui.Bufferer), us *urlStore) {
// table := ui.NewTable()
// table.FgColor = ui.ColorYellow
// table.BgColor = ui.ColorDefault
// table.Y = 0
// table.X = 0
// table.Width = 62
// table.Height = 7
// go func() {
// for {
// time.Sleep(time.Second)
// rows := [][]string{
// []string{"URL", "Since"},
// }
// for link, since := range us.Fetching() {
// rows = append(rows, []string{link, humanize.Time(since)})
// }
// table.Rows = rows
// render(table)
// }
// }()
// }