aboutsummaryrefslogblamecommitdiffstats
path: root/commands/account/align.go
blob: e4c1379a2b9598df9d7590e49c570d060b1eaa6d (plain) (tree)






































                                                                                                              
                                    



















                                                              
package account

import (
	"errors"

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

type Align struct {
	Pos app.AlignPosition `opt:"pos" metavar:"top|center|bottom" action:"ParsePos" complete:"CompletePos"`
}

func init() {
	commands.Register(Align{})
}

var posNames []string = []string{"top", "center", "bottom"}

func (a *Align) ParsePos(arg string) error {
	switch arg {
	case "top":
		a.Pos = app.AlignTop
	case "center":
		a.Pos = app.AlignCenter
	case "bottom":
		a.Pos = app.AlignBottom
	default:
		return errors.New("invalid alignment")
	}
	return nil
}

func (a *Align) CompletePos(arg string) []string {
	return commands.FilterList(posNames, arg, commands.QuoteSpace)
}

func (Align) Context() commands.CommandContext {
	return commands.MESSAGE_LIST
}

func (Align) Aliases() []string {
	return []string{"align"}
}

func (a Align) Execute(args []string) error {
	acct := app.SelectedAccount()
	if acct == nil {
		return errors.New("no account selected")
	}
	msgList := acct.Messages()
	if msgList == nil {
		return errors.New("no message list available")
	}
	msgList.AlignMessage(a.Pos)
	ui.Invalidate()

	return nil
}