2019-03-21 21:30:23 +01:00
|
|
|
package account
|
2019-03-15 15:47:09 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2019-08-08 20:39:33 +02:00
|
|
|
"strings"
|
2019-03-15 15:47:09 +01:00
|
|
|
|
2019-07-03 18:54:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/commands"
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
2019-03-15 15:47:09 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
history map[string]string
|
|
|
|
)
|
|
|
|
|
2019-06-27 19:33:11 +02:00
|
|
|
type ChangeFolder struct{}
|
|
|
|
|
2019-03-15 15:47:09 +01:00
|
|
|
func init() {
|
|
|
|
history = make(map[string]string)
|
2019-06-27 19:33:11 +02:00
|
|
|
register(ChangeFolder{})
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (ChangeFolder) Aliases() []string {
|
2019-06-27 19:33:11 +02:00
|
|
|
return []string{"cf"}
|
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (ChangeFolder) Complete(aerc *widgets.Aerc, args []string) []string {
|
2019-07-03 18:54:10 +02:00
|
|
|
return commands.GetFolders(aerc, args)
|
2019-03-15 15:47:09 +01:00
|
|
|
}
|
|
|
|
|
2019-09-03 21:34:03 +02:00
|
|
|
func (ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error {
|
2019-09-20 18:16:29 +02:00
|
|
|
if len(args) == 1 {
|
2019-03-15 15:47:09 +01:00
|
|
|
return errors.New("Usage: cf <folder>")
|
|
|
|
}
|
|
|
|
acct := aerc.SelectedAccount()
|
2019-03-17 19:57:05 +01:00
|
|
|
if acct == nil {
|
|
|
|
return errors.New("No account selected")
|
|
|
|
}
|
2019-03-15 15:47:09 +01:00
|
|
|
previous := acct.Directories().Selected()
|
2019-09-20 18:16:29 +02:00
|
|
|
joinedArgs := strings.Join(args[1:], " ")
|
|
|
|
if joinedArgs == "-" {
|
2019-03-15 15:47:09 +01:00
|
|
|
if dir, ok := history[acct.Name()]; ok {
|
|
|
|
acct.Directories().Select(dir)
|
|
|
|
} else {
|
|
|
|
return errors.New("No previous folder to return to")
|
|
|
|
}
|
|
|
|
} else {
|
2019-09-20 18:16:29 +02:00
|
|
|
acct.Directories().Select(joinedArgs)
|
2019-03-15 15:47:09 +01:00
|
|
|
}
|
|
|
|
history[acct.Name()] = previous
|
2019-07-31 09:50:08 +02:00
|
|
|
|
|
|
|
// reset store filtering if we switched folders
|
|
|
|
store := acct.Store()
|
|
|
|
if store != nil {
|
|
|
|
store.ApplyClear()
|
|
|
|
}
|
2019-03-15 15:47:09 +01:00
|
|
|
return nil
|
|
|
|
}
|