aboutsummaryrefslogtreecommitdiff
path: root/commands/account/expand-folder.go
blob: 3eafaa0926a229fd89e45def85cfb4b7af0d7b88 (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
40
41
42
package account

import (
	"errors"
	"fmt"

	"git.sr.ht/~rjarry/aerc/widgets"
)

type ExpandCollapseFolder struct{}

func init() {
	register(ExpandCollapseFolder{})
}

func (ExpandCollapseFolder) Aliases() []string {
	return []string{"expand-folder", "collapse-folder"}
}

func (ExpandCollapseFolder) Complete(aerc *widgets.Aerc, args []string) []string {
	return nil
}

func (ExpandCollapseFolder) Execute(aerc *widgets.Aerc, args []string) error {
	if len(args) > 1 {
		return expandCollapseFolderUsage(args[0])
	}
	acct := aerc.SelectedAccount()
	if acct == nil {
		return errors.New("No account selected")
	}
	if args[0] == "expand-folder" {
		acct.Directories().ExpandFolder()
	} else {
		acct.Directories().CollapseFolder()
	}
	return nil
}

func expandCollapseFolderUsage(cmd string) error {
	return fmt.Errorf("Usage: %s", cmd)
}