about summary refs log blame commit diff stats
path: root/commands/account/clear.go
blob: 392fdd0b19a5270ac608aa0bc565cedf9ef19a62 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                          
                                 


                                
                                                                   


                  
                                                               











                                                                                  
package account

import (
	"errors"
	"git.sr.ht/~sircmpwn/aerc/widgets"
)

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")
	}
	store.ApplyClear()
	aerc.SetStatus("Clear complete.")
	return nil
}