2512c0403f
Implement a statusline state for each account. Keep the ex line and the push notifications global. Add account name prefix to push notifications. Prefix status line with account name when multiple accounts are available. Use account-specific status line for each tab where an account is defined. Handle threading, filter/search, viewer passthrough and connection status. Signed-off-by: Koni Marti <koni.marti@gmail.com> Acked-by: Robin Jarry <robin@jarry.cc>
41 lines
940 B
Go
41 lines
940 B
Go
package account
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~rjarry/aerc/lib/statusline"
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
|
"git.sr.ht/~rjarry/aerc/worker/types"
|
|
)
|
|
|
|
type Connection struct{}
|
|
|
|
func init() {
|
|
register(Connection{})
|
|
}
|
|
|
|
func (Connection) Aliases() []string {
|
|
return []string{"connect", "disconnect"}
|
|
}
|
|
|
|
func (Connection) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
return nil
|
|
}
|
|
|
|
func (Connection) Execute(aerc *widgets.Aerc, args []string) error {
|
|
acct := aerc.SelectedAccount()
|
|
if acct == nil {
|
|
return errors.New("No account selected")
|
|
}
|
|
cb := func(msg types.WorkerMessage) {
|
|
acct.SetStatus(statusline.ConnectionActivity(""))
|
|
}
|
|
if args[0] == "connect" {
|
|
acct.Worker().PostAction(&types.Connect{}, cb)
|
|
acct.SetStatus(statusline.ConnectionActivity("Connecting..."))
|
|
} else {
|
|
acct.Worker().PostAction(&types.Disconnect{}, cb)
|
|
acct.SetStatus(statusline.ConnectionActivity("Disconnecting..."))
|
|
}
|
|
return nil
|
|
}
|