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
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-05-20 00:23:34 +02:00
|
|
|
register("next", NextPrevMessage)
|
2019-03-21 21:30:23 +01:00
|
|
|
register("next-message", NextPrevMessage)
|
2019-05-20 00:23:34 +02:00
|
|
|
register("prev", NextPrevMessage)
|
2019-03-21 21:30:23 +01:00
|
|
|
register("prev-message", NextPrevMessage)
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func nextPrevMessageUsage(cmd string) error {
|
2019-03-16 02:56:57 +01:00
|
|
|
return errors.New(fmt.Sprintf("Usage: %s [<n>[%%]]", cmd))
|
2019-03-15 04:41:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func NextPrevMessage(aerc *widgets.Aerc, args []string) error {
|
|
|
|
if len(args) > 2 {
|
|
|
|
return nextPrevMessageUsage(args[0])
|
|
|
|
}
|
|
|
|
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 {
|
|
|
|
return nextPrevMessageUsage(args[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
acct := aerc.SelectedAccount()
|
2019-03-17 19:57:05 +01:00
|
|
|
if acct == nil {
|
|
|
|
return errors.New("No account selected")
|
|
|
|
}
|
2019-03-16 02:41:18 +01:00
|
|
|
if pct {
|
|
|
|
n = int(float64(acct.Messages().Height()) * (float64(n) / 100.0))
|
|
|
|
}
|
2019-03-15 04:41:25 +01:00
|
|
|
for ; n > 0; n-- {
|
2019-05-20 00:23:34 +02:00
|
|
|
if args[0] == "prev-message" || args[0] == "prev" {
|
2019-03-15 04:41:25 +01:00
|
|
|
acct.Messages().Prev()
|
|
|
|
} else {
|
|
|
|
acct.Messages().Next()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|