summary refs log tree commit diff stats
path: root/widgets/msglist.go
Commit message (Expand)AuthorAgeFilesLines
* Add new-email triggerJeffas2019-07-261-1/+4
* Implement :filter, :clearKevin Kuehler2019-07-191-13/+16
* Factor IMAP-specific structs out of UI modelsBen Burwell2019-07-081-2/+1
* Factor UI models out of the worker message packageBen Burwell2019-07-081-2/+2
* Fix jumping around in searchDrew DeVault2019-06-261-10/+5
* Implement :search, :next-result, :prev-resultDrew DeVault2019-06-261-0/+1
* Fix automatic scrolling when messages arrive/leaveDrew DeVault2019-06-111-2/+2
* Move select functionality from msglist to msgstoreKevin Kuehler2019-06-111-43/+20
* msglist: use distinct style for unread emailsYash Srivastav2019-06-081-0/+15
* Truncate long subject linesDrew DeVault2019-06-071-1/+5
* Message list: implement index-format optionYash Srivastav2019-06-071-1/+6
* Advance cursor after :delete and :moveDrew DeVault2019-05-191-4/+5
* Reset message list cursor when switching storesDrew DeVault2019-05-191-1/+1
* Advance message list cursor when messages arriveDrew DeVault2019-05-191-0/+13
* Update internal state and draw from the same goroutineSimon Ser2019-05-191-21/+3
* s/aerc2/aerc/gDrew DeVault2019-05-171-4/+4
* Remove unimplemented color configurationDrew DeVault2019-05-171-2/+2
* Implement ui.empty-message config optionDrew DeVault2019-05-171-1/+1
* Handle external message deletionsDrew DeVault2019-05-131-1/+0
* Handle incoming emails gracefullyDrew DeVault2019-05-131-0/+1
* lib/msgstore: protect with a mutexSimon Ser2019-04-291-0/+18
* widgets/msglist: fix MessageList.store raceSimon Ser2019-04-291-23/+32
* lib/ui: introduce InvalidatableSimon Ser2019-04-271-15/+9
* Fix segfault on :view-message for unloaded messageTom Lebreux2019-04-101-0/+4
* Fix infinite loop on empty DirectoryContentsTom Lebreux2019-04-051-2/+4
* Show (no messages) for empty foldersDrew DeVault2019-04-041-0/+6
* Use tcell.Style.Reverse instead of black on whiteDrew DeVault2019-03-301-2/+1
* Show deleted emails pending server ack in greyDrew DeVault2019-03-301-0/+3
* Add body fetching support codeDrew DeVault2019-03-291-1/+1
* Improve cursor handling in embedded terminalDrew DeVault2019-03-211-0/+3
* Implement :delete-messageDrew DeVault2019-03-201-0/+20
* Fix scrolling issues on :select-messageDrew DeVault2019-03-171-0/+7
* Implement :select-messageDrew DeVault2019-03-151-0/+9
* Implement scrolling in message listDrew DeVault2019-03-151-3/+14
* Implement :next-message n%Drew DeVault2019-03-151-0/+6
* Move MessageStore into its own fileDrew DeVault2019-03-151-83/+3
* Rig up key bindingsDrew DeVault2019-03-151-2/+2
* Implement :{next,prev}-messageDrew DeVault2019-03-141-0/+20
* Invalidate when UIDs finish downloadingDrew DeVault2019-03-141-4/+0
* Display message subjects in message listDrew DeVault2019-03-141-3/+22
* Implement message store side of message fetchingDrew DeVault2019-03-141-10/+52
* Lay out message list widget basic designDrew DeVault2019-03-141-0/+89
* Fetch valid UIDs from server after opening dirDrew DeVault2019-03-101-0/+36
13:33:43 -0500 Move ex line into account' href='/akspecs/aerc/commit/widgets/account.go?h=0.2.1&id=c286d3da6ba8636412db5c3b72fda739a06e7f6c'>c286d3d ^
589db74 ^



c286d3d ^
b76deea ^
0911cd5 ^
24dfc47 ^
589db74 ^
2349b7d ^
11f0a72 ^
0f8b7a1 ^

24dfc47 ^
589db74 ^








0911cd5 ^






24dfc47 ^
0911cd5 ^


24dfc47 ^

589db74 ^
0911cd5 ^
24dfc47 ^
0911cd5 ^

62946ff ^
24dfc47 ^
62946ff ^

607ece8 ^
1228448 ^


648ca98 ^
b76deea ^


648ca98 ^








c286d3d ^
589db74 ^

c286d3d ^
2349b7d ^



589db74 ^
cf66462 ^



77c76ba ^
cf66462 ^








589db74 ^
cf66462 ^
2349b7d ^

2349b7d ^



2349b7d ^

b60999c ^




24daef8 ^



b60999c ^
b389647 ^



4ec7f5d ^








b389647 ^

0f8b7a1 ^

b389647 ^





ef6178a ^
b389647 ^



0abafa6 ^
77ede6e ^

b389647 ^


312a53e ^


b389647 ^

589db74 ^
2958579 ^
b389647 ^
b60999c ^
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190


               
             
             

                                  
 
                                          
                                       
                                          

                                                


                         

                                          
                                   
                             
                            
                                
                                        
                                 
                                                 
                                  

 
                                                                        
                                                        


                                                
                                 
                                                      

                                    
 
                                                            
                       
                                                                     
                                    



                                       
                 
         
 
                                                         
                                                               
 
                                         

                                       
                             








                                                              






                                                        
                                           


                 

                                                              
                                       
 
                   

 
                                        
                             

 
                                                   


                                   
                                                                         


                                                    








                                                
 

                                            
 



                                                             
                                                           



                                                             
                                                              








                                                         
                                                         
                  

                                               



                                                                 

         




                                                       



                                                  
                                                             



                                                  








                                                                                               

                                                                               

                                                                                      





                                                              
                                                                                        



                                                              
                                

                                                              


                                                              


                                                              

                                                   
                                                                  
                                                                 
         
 
package widgets

import (
	"fmt"
	"log"

	"github.com/gdamore/tcell"

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

type AccountView struct {
	acct         *config.AccountConfig
	conf         *config.AercConfig
	dirlist      *DirectoryList
	grid         *ui.Grid
	host         TabHost
	logger       *log.Logger
	onInvalidate func(d ui.Drawable)
	msglist      *MessageList
	msgStores    map[string]*lib.MessageStore
	worker       *types.Worker
}

func NewAccountView(conf *config.AercConfig, acct *config.AccountConfig,
	logger *log.Logger, host TabHost) *AccountView {

	grid := ui.NewGrid().Rows([]ui.GridSpec{
		{ui.SIZE_WEIGHT, 1},
	}).Columns([]ui.GridSpec{
		{ui.SIZE_EXACT, conf.Ui.SidebarWidth},
		{ui.SIZE_WEIGHT, 1},
	})

	worker, err := worker.NewWorker(acct.Source, logger)
	if err != nil {
		host.SetStatus(fmt.Sprintf("%s: %s", acct.Name, err))
		return &AccountView{
			acct:   acct,
			grid:   grid,
			host:   host,
			logger: logger,
		}
	}

	dirlist := NewDirectoryList(acct, logger, worker)
	grid.AddChild(ui.NewBordered(dirlist, ui.BORDER_RIGHT))

	msglist := NewMessageList(logger)
	grid.AddChild(msglist).At(0, 1)

	view := &AccountView{
		acct:      acct,
		conf:      conf,
		dirlist:   dirlist,
		grid:      grid,
		host:      host,
		logger:    logger,
		msglist:   msglist,
		msgStores: make(map[string]*lib.MessageStore),
		worker:    worker,
	}

	go worker.Backend.Run()
	go func() {
		for {
			msg := <-worker.Messages
			msg = worker.ProcessMessage(msg)
			view.onMessage(msg)
		}
	}()

	worker.PostAction(&types.Configure{Config: acct}, nil)
	worker.PostAction(&types.Connect{}, view.connected)
	host.SetStatus("Connecting...")

	return view
}

func (acct *AccountView) Name() string {
	return acct.acct.Name
}

func (acct *AccountView) Children() []ui.Drawable {
	return acct.grid.Children()
}

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

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

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

func (acct *AccountView) Focus(focus bool) {
	// TODO: Unfocus children I guess
}

func (acct *AccountView) connected(msg types.WorkerMessage) {
	switch msg := msg.(type) {
	case *types.Done:
		acct.host.SetStatus("Listing mailboxes...")
		acct.logger.Println("Listing mailboxes...")
		acct.dirlist.UpdateList(func(dirs []string) {
			var dir string
			for _, _dir := range dirs {
				if _dir == acct.acct.Default {
					dir = _dir
					break
				}
			}
			if dir == "" {
				dir = dirs[0]
			}
			acct.dirlist.Select(dir)
			acct.logger.Println("Connected.")
			acct.host.SetStatus("Connected.")
		})
	case *types.CertificateApprovalRequest:
		// TODO: Ask the user
		acct.worker.PostAction(&types.ApproveCertificate{
			Message:  types.RespondTo(msg),
			Approved: true,
		}, acct.connected)
	}
}

func (acct *AccountView) Directories() *DirectoryList {
	return acct.dirlist
}

func (acct *AccountView) Messages() *MessageList {
	return acct.msglist
}

func (acct *AccountView) onMessage(msg types.WorkerMessage) {
	switch msg := msg.(type) {
	case *types.Done:
		switch msg.InResponseTo().(type) {
		case *types.OpenDirectory:
			if store, ok := acct.msgStores[acct.dirlist.selected]; ok {
				// If we've opened this dir before, we can re-render it from
				// memory while we wait for the update and the UI feels
				// snappier. If not, we'll unset the store and show the spinner
				// while we download the UID list.
				acct.msglist.SetStore(store)
			} else {
				acct.msglist.SetStore(nil)
			}
			acct.worker.PostAction(&types.FetchDirectoryContents{},
				func(msg types.WorkerMessage) {
					store := acct.msgStores[acct.dirlist.selected]
					acct.msglist.SetStore(store)
				})
		}
	case *types.DirectoryInfo:
		if store, ok := acct.msgStores[msg.Name]; ok {
			store.Update(msg)
		} else {
			acct.msgStores[msg.Name] = lib.NewMessageStore(acct.worker, msg)
		}
	case *types.DirectoryContents:
		store := acct.msgStores[acct.dirlist.selected]
		store.Update(msg)
	case *types.FullMessage:
		store := acct.msgStores[acct.dirlist.selected]
		store.Update(msg)
	case *types.MessageInfo:
		store := acct.msgStores[acct.dirlist.selected]
		store.Update(msg)
	case *types.MessagesDeleted:
		store := acct.msgStores[acct.dirlist.selected]
		store.Update(msg)
	case *types.Error:
		acct.logger.Printf("%v", msg.Error)
		acct.host.SetStatus(fmt.Sprintf("%v", msg.Error)).
			Color(tcell.ColorDefault, tcell.ColorRed)
	}
}