25a8a00c55
Clear filter when called with no arguments. Fixes: https://todo.sr.ht/~rjarry/aerc/35 Signed-off-by: Koni Marti <koni.marti@gmail.com> Acked-by: Robin Jarry <robin@jarry.cc>
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
package account
|
|
|
|
import (
|
|
"errors"
|
|
"strings"
|
|
|
|
"git.sr.ht/~rjarry/aerc/lib/statusline"
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
|
)
|
|
|
|
type SearchFilter struct{}
|
|
|
|
func init() {
|
|
register(SearchFilter{})
|
|
}
|
|
|
|
func (SearchFilter) Aliases() []string {
|
|
return []string{"search", "filter"}
|
|
}
|
|
|
|
func (SearchFilter) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
return nil
|
|
}
|
|
|
|
func (SearchFilter) Execute(aerc *widgets.Aerc, args []string) error {
|
|
acct := aerc.SelectedAccount()
|
|
if acct == nil {
|
|
return errors.New("No account selected")
|
|
}
|
|
store := acct.Store()
|
|
if store == nil {
|
|
return errors.New("Cannot perform action. Messages still loading")
|
|
}
|
|
|
|
var cb func([]uint32)
|
|
if args[0] == "filter" {
|
|
if len(args[1:]) == 0 {
|
|
return Clear{}.Execute(aerc, []string{"clear"})
|
|
}
|
|
acct.SetStatus(statusline.FilterActivity("Filtering..."), statusline.Search(""))
|
|
cb = func(uids []uint32) {
|
|
acct.SetStatus(statusline.FilterResult(strings.Join(args, " ")))
|
|
acct.Logger().Printf("Filter results: %v", uids)
|
|
store.ApplyFilter(uids)
|
|
}
|
|
} else {
|
|
acct.SetStatus(statusline.Search("Searching..."))
|
|
cb = func(uids []uint32) {
|
|
acct.SetStatus(statusline.Search(strings.Join(args, " ")))
|
|
acct.Logger().Printf("Search results: %v", uids)
|
|
store.ApplySearch(uids)
|
|
// TODO: Remove when stores have multiple OnUpdate handlers
|
|
acct.Messages().Invalidate()
|
|
}
|
|
}
|
|
store.Search(args, cb)
|
|
return nil
|
|
}
|