aboutsummaryrefslogtreecommitdiff
path: root/commands/account/clear.go
blob: dec6bcd2c40db1da31ca3fe0c5878d3104e4fe65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package account

import (
	"errors"

	"git.sr.ht/~rjarry/aerc/app"
	"git.sr.ht/~rjarry/aerc/lib/state"
)

type Clear struct {
	Selected bool `opt:"-s"`
}

func init() {
	register(Clear{})
}

func (Clear) Aliases() []string {
	return []string{"clear"}
}

func (c Clear) Execute(args []string) error {
	acct := app.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")
	}

	if c.Selected {
		defer store.Select(0)
	}
	store.ApplyClear()
	acct.SetStatus(state.SearchFilterClear())

	return nil
}