aerc/commands/account/clear.go
Koni Marti 8f7695fde5 msgstore: implement a uid-based architecture
Change the message store architecture from an index-based to a uid-based
one. Key advantage of this design approach is that no reselect mechanism
is required anymore since it comes with the design for free.

Fixes: https://todo.sr.ht/~rjarry/aerc/43
Signed-off-by: Koni Marti <koni.marti@gmail.com>
Tested-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
2022-07-26 11:34:19 +02:00

60 lines
1 KiB
Go

package account
import (
"errors"
"git.sr.ht/~rjarry/aerc/lib/statusline"
"git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/getopt"
)
type Clear struct{}
func init() {
register(Clear{})
}
func (Clear) Aliases() []string {
return []string{"clear"}
}
func (Clear) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
func (Clear) 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")
}
clearSelected := false
opts, optind, err := getopt.Getopts(args, "s")
if err != nil {
return err
}
for _, opt := range opts {
switch opt.Option {
case 's':
clearSelected = true
}
}
if len(args) != optind {
return errors.New("Usage: clear [-s]")
}
if clearSelected {
defer store.Select(0)
}
store.ApplyClear()
acct.SetStatus(statusline.SearchFilterClear())
return nil
}