diff options
author | Reto Brunner <reto@labrat.space> | 2019-12-21 16:21:25 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-12-21 11:20:11 -0500 |
commit | 2705d8460d7e974ee01ad41ce063ae3feeb30317 (patch) | |
tree | e09bec2089b49a6bee7a0cf31c1f2fe4e04da542 | |
parent | 709d4e1e5951e8bdf5cb4638f4d0995a8a053dc7 (diff) | |
download | aerc-2705d8460d7e974ee01ad41ce063ae3feeb30317.tar.gz |
add LabelList event
-rw-r--r-- | widgets/account.go | 7 | ||||
-rw-r--r-- | worker/types/messages.go | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/widgets/account.go b/widgets/account.go index bf3f617..404a9ea 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -23,6 +23,7 @@ type AccountView struct { aerc *Aerc conf *config.AercConfig dirlist *DirectoryList + labels []string grid *ui.Grid host TabHost logger *log.Logger @@ -169,6 +170,10 @@ func (acct *AccountView) Directories() *DirectoryList { return acct.dirlist } +func (acct *AccountView) Labels() []string { + return acct.labels +} + func (acct *AccountView) Messages() *MessageList { return acct.msglist } @@ -257,6 +262,8 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { if store, ok := acct.dirlist.SelectedMsgStore(); ok { store.Update(msg) } + case *types.LabelList: + acct.labels = msg.Labels case *types.Error: acct.logger.Printf("%v", msg.Error) acct.host.SetStatus(fmt.Sprintf("%v", msg.Error)). diff --git a/worker/types/messages.go b/worker/types/messages.go index 3539139..a38ff94 100644 --- a/worker/types/messages.go +++ b/worker/types/messages.go @@ -183,3 +183,8 @@ type ModifyLabels struct { Add []string Remove []string } + +type LabelList struct { + Message + Labels []string +} |