summary refs log tree commit diff stats
path: root/tests/compilerapi
Commit message (Expand)AuthorAgeFilesLines
* compiler API: final cleanups; improve security by diabling 'gorge' and friendsAndreas Rumpf2018-05-292-1/+14
* rewrote nimeval.nim; added tcompilerapi example to show how the compiler can ...Andreas Rumpf2018-05-293-0/+46
-13 12:39:06 -0500 committer Drew DeVault <sir@cmpwn.com> 2019-01-13 12:39:06 -0500 Add basic account widget, populate real acct views' href='/akspecs/aerc/commit/widgets/account.go?h=0.2.0&id=648ca983f6b2ef29378c32d1ebb6d67798f4af6d'>648ca98 ^
0911cd5 ^

648ca98 ^




0911cd5 ^
648ca98 ^
0911cd5 ^
648ca98 ^


0911cd5 ^





648ca98 ^











0911cd5 ^





































648ca98 ^












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


               

             

                                          

                                                




                                          
                                
                                        
                                  


                                               





                                                                          











                                                             





































                                                                     












                                                                         
package widgets

import (
	"log"

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

type AccountView struct {
	conf         *config.AccountConfig
	grid         *ui.Grid
	logger       *log.Logger
	onInvalidate func(d ui.Drawable)
	worker       *types.Worker
}

func NewAccountView(conf *config.AccountConfig,
	logger *log.Logger, statusbar ui.Drawable) (*AccountView, error) {

	worker, err := worker.NewWorker(conf.Source, logger)
	if err != nil {
		return nil, err
	}

	grid := ui.NewGrid().Rows([]ui.GridSpec{
		{ui.SIZE_WEIGHT, 1},
		{ui.SIZE_EXACT, 1},
	}).Columns([]ui.GridSpec{
		{ui.SIZE_EXACT, 20},
		{ui.SIZE_WEIGHT, 1},
	})
	grid.AddChild(ui.NewBordered(
		ui.NewFill('s'), ui.BORDER_RIGHT)).Span(2, 1)
	grid.AddChild(ui.NewFill('.')).At(0, 1)
	grid.AddChild(statusbar).At(1, 1)

	acct := &AccountView{
		conf:   conf,
		grid:   grid,
		logger: logger,
		worker: worker,
	}

	go worker.Backend.Run()
	go func() {
		for {
			msg := <-worker.Messages
			msg = worker.ProcessMessage(msg)
			// TODO: dispatch to appropriate handlers
		}
	}()

	worker.PostAction(&types.Configure{Config: conf}, nil)
	worker.PostAction(&types.Connect{}, acct.connected)

	return acct, nil
}

func (acct *AccountView) connected(msg types.WorkerMessage) {
	switch msg := msg.(type) {
	case *types.Done:
		acct.logger.Println("Connected.")
		acct.worker.PostAction(&types.ListDirectories{}, nil)
	case *types.CertificateApprovalRequest:
		// TODO: Ask the user
		acct.logger.Println("Approving certificate")
		acct.worker.PostAction(&types.ApproveCertificate{
			Message:  types.RespondTo(msg),
			Approved: true,
		}, acct.connected)
	default:
		acct.logger.Println("Connection failed.")
	}
}

func (acct *AccountView) OnInvalidate(onInvalidate func(d ui.Drawable)) {
	acct.grid.OnInvalidate(onInvalidate)
}

func (acct *AccountView) Invalidate() {
	acct.grid.Invalidate()
}

func (acct *AccountView) Draw(ctx *ui.Context) {
	acct.grid.Draw(ctx)
}