diff options
author | kt programs <ktprograms@gmail.com> | 2022-04-20 20:21:06 +0800 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-04-25 12:31:13 +0200 |
commit | 5e5d5a0d1f2d8ba6b7224a665248b0d22176d3a9 (patch) | |
tree | 728fea8f09688e0fd579327aa192e84e312d741d /widgets | |
parent | 8db09d2c73e5110064c4862e041021f552609018 (diff) | |
download | aerc-5e5d5a0d1f2d8ba6b7224a665248b0d22176d3a9.tar.gz |
msgviewer: show available bindings when filter not configured
Show what command can be used to achieve the described effect so users
can add it as a binding.
Fixes: https://todo.sr.ht/~rjarry/aerc/40
Signed-off-by: kt programs <ktprograms@gmail.com>
Tested-by: Koni Marti <koni.marti@gmail.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/msgviewer.go | 86 |
1 files changed, 59 insertions, 27 deletions
diff --git a/widgets/msgviewer.go b/widgets/msgviewer.go index f92957e5..89cbc2cc 100644 --- a/widgets/msgviewer.go +++ b/widgets/msgviewer.go @@ -482,6 +482,7 @@ func (mv *MessageViewer) Focus(focus bool) { type PartViewer struct { ui.Invalidatable conf *config.AercConfig + acctConfig *config.AccountConfig err error fetched bool filter *exec.Cmd @@ -494,7 +495,6 @@ type PartViewer struct { sink io.WriteCloser source io.Reader term *Terminal - selector *Selector grid *ui.Grid uiConfig config.UIConfig } @@ -562,27 +562,14 @@ func NewPartViewer(acct *AccountView, conf *config.AercConfig, grid := ui.NewGrid().Rows([]ui.GridSpec{ {Strategy: ui.SIZE_EXACT, Size: ui.Const(3)}, // Message - {Strategy: ui.SIZE_EXACT, Size: ui.Const(1)}, // Selector {Strategy: ui.SIZE_WEIGHT, Size: ui.Const(1)}, }).Columns([]ui.GridSpec{ {Strategy: ui.SIZE_WEIGHT, Size: ui.Const(1)}, }) - selector := NewSelector([]string{"Save message", "Pipe to command"}, - 0, acct.UiConfig()). - OnChoose(func(option string) { - switch option { - case "Save message": - acct.aerc.BeginExCommand("save ") - case "Pipe to command": - acct.aerc.BeginExCommand("pipe ") - } - }) - - grid.AddChild(selector).At(2, 0) - pv := &PartViewer{ conf: conf, + acctConfig: acct.AccountConfig(), filter: filter, index: index, msg: msg, @@ -592,7 +579,6 @@ func NewPartViewer(acct *AccountView, conf *config.AercConfig, showHeaders: conf.Viewer.ShowHeaders, sink: pipe, term: term, - selector: selector, grid: grid, uiConfig: acct.UiConfig(), } @@ -716,24 +702,70 @@ func (pv *PartViewer) copySourceToSinkStripAnsi() { } } +var noFilterConfiguredCommands = [][]string{ + {":open<enter>", "Open using the system handler"}, + {":save<space>", "Save to file"}, + {":pipe<space>", "Pipe to shell command"}, +} + +func newNoFilterConfigured(pv *PartViewer) *ui.Grid { + bindings := pv.conf.MergeContextualBinds( + pv.conf.Bindings.MessageView, + config.BIND_CONTEXT_ACCOUNT, + pv.acctConfig.Name, + "view", + ) + + var actions []string + + for _, command := range noFilterConfiguredCommands { + cmd := command[0] + name := command[1] + strokes, _ := config.ParseKeyStrokes(cmd) + var inputs []string + for _, input := range bindings.GetReverseBindings(strokes) { + inputs = append(inputs, config.FormatKeyStrokes(input)) + } + actions = append(actions, fmt.Sprintf(" %-6s %-29s %s", + strings.Join(inputs[:], ", "), name, cmd)) + } + + spec := []ui.GridSpec{ + {Strategy: ui.SIZE_EXACT, Size: ui.Const(2)}, + } + for i := 0; i < len(actions)-1; i++ { + spec = append(spec, ui.GridSpec{Strategy: ui.SIZE_EXACT, Size: ui.Const(1)}) + } + // make the last element fill remaining space + spec = append(spec, ui.GridSpec{Strategy: ui.SIZE_WEIGHT, Size: ui.Const(1)}) + + grid := ui.NewGrid().Rows(spec).Columns([]ui.GridSpec{ + {Strategy: ui.SIZE_WEIGHT, Size: ui.Const(1)}, + }) + + uiConfig := pv.conf.Ui + + noFilter := fmt.Sprintf(`No filter configured for this mimetype ('%s/%s') +What would you like to do?`, pv.part.MIMEType, pv.part.MIMESubType) + grid.AddChild(ui.NewText(noFilter, + uiConfig.GetStyle(config.STYLE_TITLE))).At(0, 0) + for i, action := range actions { + grid.AddChild(ui.NewText(action, + uiConfig.GetStyle(config.STYLE_DEFAULT))).At(i+1, 0) + } + + return grid +} + func (pv *PartViewer) Invalidate() { pv.DoInvalidate(pv) } func (pv *PartViewer) Draw(ctx *ui.Context) { style := pv.uiConfig.GetStyle(config.STYLE_DEFAULT) - styleError := pv.uiConfig.GetStyle(config.STYLE_ERROR) if pv.filter == nil { - // TODO: Let them download it directly or something ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', style) - ctx.Printf(0, 0, styleError, - "No filter configured for this mimetype ('%s/%s')", - pv.part.MIMEType, pv.part.MIMESubType, - ) - ctx.Printf(0, 2, style, - "You can still :save the message or :pipe it to an external command") - pv.selector.Focus(true) - pv.grid.Draw(ctx) + newNoFilterConfigured(pv).Draw(ctx) return } if !pv.fetched { @@ -759,7 +791,7 @@ func (pv *PartViewer) Event(event tcell.Event) bool { if pv.term != nil { return pv.term.Event(event) } - return pv.selector.Event(event) + return false } type HeaderView struct { |