2019-03-21 21:30:23 +01:00
|
|
|
package account
|
2019-03-15 04:41:25 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
2019-03-16 02:41:18 +01:00
|
|
|
"strings"
|
2019-03-15 04:41:25 +01:00
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
2019-03-15 04:41:25 +01:00
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type NextPrevMsg struct{}
|
|
|
|
|
2019-03-15 04:41:25 +01:00
|
|
|
func init() {
|
2019-06-27 19:33:11 +02:00
|
|
|
register(NextPrevMsg{})
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (NextPrevMsg) Aliases() []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return []string{"next", "next-message", "prev", "prev-message"}
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (NextPrevMsg) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return nil
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (NextPrevMsg) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-09-03 21:34:06 +02:00
|
|
|
n, pct, err := ParseNextPrevMessage(args)
|
2019-08-04 16:09:48 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
acct := aerc.SelectedAccount()
|
|
|
|
if acct == nil {
|
|
|
|
return errors.New("No account selected")
|
|
|
|
}
|
|
|
|
return ExecuteNextPrevMessage(args, acct, pct, n)
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:06 +02:00
|
|
|
func ParseNextPrevMessage(args []string) (int, bool, error) {
|
2019-03-15 04:41:25 +01:00
|
|
|
if len(args) > 2 {
|
2019-09-03 21:34:06 +02:00
|
|
|
return 0, false, nextPrevMessageUsage(args[0])
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
var (
|
|
|
|
n int = 1
|
|
|
|
err error
|
2019-03-16 02:41:18 +01:00
|
|
|
pct bool
|
2019-03-15 04:41:25 +01:00
|
|
|
)
|
|
|
|
if len(args) > 1 {
|
2019-03-16 02:41:18 +01:00
|
|
|
if strings.HasSuffix(args[1], "%") {
|
|
|
|
pct = true
|
|
|
|
args[1] = args[1][:len(args[1])-1]
|
|
|
|
}
|
2019-03-15 04:41:25 +01:00
|
|
|
n, err = strconv.Atoi(args[1])
|
|
|
|
if err != nil {
|
2019-09-03 21:34:06 +02:00
|
|
|
return 0, false, nextPrevMessageUsage(args[0])
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
}
|
2019-09-03 21:34:06 +02:00
|
|
|
return n, pct, nil
|
2019-08-04 16:09:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func ExecuteNextPrevMessage(args []string, acct *widgets.AccountView, pct bool, n int) error {
|
2019-03-16 02:41:18 +01:00
|
|
|
if pct {
|
|
|
|
n = int(float64(acct.Messages().Height()) * (float64(n) / 100.0))
|
|
|
|
}
|
2019-08-04 16:09:48 +02:00
|
|
|
if args[0] == "prev-message" || args[0] == "prev" {
|
|
|
|
store := acct.Store()
|
|
|
|
if store != nil {
|
|
|
|
store.NextPrev(-n)
|
2020-06-09 21:13:13 +02:00
|
|
|
acct.Messages().Invalidate()
|
2019-08-04 16:09:48 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
store := acct.Store()
|
|
|
|
if store != nil {
|
|
|
|
store.NextPrev(n)
|
2020-06-09 21:13:13 +02:00
|
|
|
acct.Messages().Invalidate()
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2019-06-27 19:33:11 +02:00
|
|
|
|
|
|
|
func nextPrevMessageUsage(cmd string) error {
|
2019-09-03 21:34:04 +02:00
|
|
|
return fmt.Errorf("Usage: %s [<n>[%%]]", cmd)
|
2019-06-27 19:33:11 +02:00
|
|
|
}
|