2019-06-27 02:50:27 +02:00
|
|
|
package account
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2022-03-18 22:35:33 +01:00
|
|
|
"strings"
|
2019-06-27 02:50:27 +02:00
|
|
|
|
2022-03-18 22:35:33 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/lib/statusline"
|
2022-07-19 22:31:51 +02:00
|
|
|
"git.sr.ht/~rjarry/aerc/logging"
|
2021-11-05 10:19:46 +01:00
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
2022-07-05 21:48:40 +02:00
|
|
|
"git.sr.ht/~rjarry/aerc/worker/types"
|
2019-06-27 02:50:27 +02:00
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type SearchFilter struct{}
|
|
|
|
|
2019-06-27 02:50:27 +02:00
|
|
|
func init() {
|
2019-06-27 19:33:11 +02:00
|
|
|
register(SearchFilter{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (SearchFilter) Aliases() []string {
|
2019-07-17 09:35:50 +02:00
|
|
|
return []string{"search", "filter"}
|
2019-06-27 19:33:11 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (SearchFilter) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return nil
|
2019-06-27 02:50:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (SearchFilter) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-06-27 02:50:27 +02:00
|
|
|
acct := aerc.SelectedAccount()
|
|
|
|
if acct == nil {
|
|
|
|
return errors.New("No account selected")
|
|
|
|
}
|
|
|
|
store := acct.Store()
|
2019-07-14 09:42:24 +02:00
|
|
|
if store == nil {
|
|
|
|
return errors.New("Cannot perform action. Messages still loading")
|
|
|
|
}
|
2019-07-17 09:35:50 +02:00
|
|
|
|
|
|
|
if args[0] == "filter" {
|
2022-04-18 16:21:54 +02:00
|
|
|
if len(args[1:]) == 0 {
|
|
|
|
return Clear{}.Execute(aerc, []string{"clear"})
|
|
|
|
}
|
2022-03-18 22:35:33 +01:00
|
|
|
acct.SetStatus(statusline.FilterActivity("Filtering..."), statusline.Search(""))
|
2022-07-05 21:48:40 +02:00
|
|
|
store.SetFilter(args[1:])
|
|
|
|
cb := func(msg types.WorkerMessage) {
|
|
|
|
if _, ok := msg.(*types.Done); ok {
|
|
|
|
acct.SetStatus(statusline.FilterResult(strings.Join(args, " ")))
|
2022-07-19 22:31:51 +02:00
|
|
|
logging.Infof("Filter results: %v", store.Uids())
|
2022-07-05 21:48:40 +02:00
|
|
|
}
|
2019-07-17 09:35:50 +02:00
|
|
|
}
|
2022-07-26 15:13:21 +02:00
|
|
|
store.Sort(store.GetCurrentSortCriteria(), cb)
|
2019-07-17 09:35:50 +02:00
|
|
|
} else {
|
2022-03-18 22:35:33 +01:00
|
|
|
acct.SetStatus(statusline.Search("Searching..."))
|
2022-07-05 21:48:40 +02:00
|
|
|
cb := func(uids []uint32) {
|
2022-03-18 22:35:33 +01:00
|
|
|
acct.SetStatus(statusline.Search(strings.Join(args, " ")))
|
2022-07-19 22:31:51 +02:00
|
|
|
logging.Infof("Search results: %v", uids)
|
2019-07-17 09:35:50 +02:00
|
|
|
store.ApplySearch(uids)
|
|
|
|
// TODO: Remove when stores have multiple OnUpdate handlers
|
2020-06-09 21:13:13 +02:00
|
|
|
acct.Messages().Invalidate()
|
2019-07-17 09:35:50 +02:00
|
|
|
}
|
2022-07-05 21:48:40 +02:00
|
|
|
store.Search(args, cb)
|
2019-07-17 09:35:50 +02:00
|
|
|
}
|
2019-06-27 02:50:27 +02:00
|
|
|
return nil
|
|
|
|
}
|