mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-21 12:16:54 +02:00
add reflog reset options
This commit is contained in:
parent
1b64ea3210
commit
d647a96ed5
@ -785,6 +785,14 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
|
|||||||
Handler: gui.handleCheckoutReflogCommit,
|
Handler: gui.handleCheckoutReflogCommit,
|
||||||
Description: gui.Tr.SLocalize("checkoutCommit"),
|
Description: gui.Tr.SLocalize("checkoutCommit"),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
ViewName: "commits",
|
||||||
|
Contexts: []string{"reflog-commits"},
|
||||||
|
Key: gui.getKey("commits.viewResetOptions"),
|
||||||
|
Modifier: gocui.ModNone,
|
||||||
|
Handler: gui.handleCreateReflogResetMenu,
|
||||||
|
Description: gui.Tr.SLocalize("viewResetOptions"),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
ViewName: "stash",
|
ViewName: "stash",
|
||||||
Key: gui.getKey("universal.select"),
|
Key: gui.getKey("universal.select"),
|
||||||
|
60
pkg/gui/reflog_reset_options_panel.go
Normal file
60
pkg/gui/reflog_reset_options_panel.go
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
package gui
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/fatih/color"
|
||||||
|
"github.com/jesseduffield/gocui"
|
||||||
|
)
|
||||||
|
|
||||||
|
type reflogResetOption struct {
|
||||||
|
handler func() error
|
||||||
|
description string
|
||||||
|
command string
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetDisplayStrings is a function.
|
||||||
|
func (r *reflogResetOption) GetDisplayStrings(isFocused bool) []string {
|
||||||
|
return []string{r.description, color.New(color.FgRed).Sprint(r.command)}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (gui *Gui) handleCreateReflogResetMenu(g *gocui.Gui, v *gocui.View) error {
|
||||||
|
commit := gui.getSelectedReflogCommit()
|
||||||
|
|
||||||
|
resetFunction := func(reset func(string) error) func() error {
|
||||||
|
return func() error {
|
||||||
|
if err := reset(commit.Sha); err != nil {
|
||||||
|
return gui.createErrorPanel(gui.g, err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
gui.State.Panels.ReflogCommits.SelectedLine = 0
|
||||||
|
|
||||||
|
return gui.refreshSidePanels(gui.g)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
options := []*reflogResetOption{
|
||||||
|
{
|
||||||
|
description: gui.Tr.SLocalize("hardReset"),
|
||||||
|
command: fmt.Sprintf("reset --hard %s", commit.Sha),
|
||||||
|
handler: resetFunction(gui.GitCommand.ResetHard),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: gui.Tr.SLocalize("softReset"),
|
||||||
|
command: fmt.Sprintf("reset --soft %s", commit.Sha),
|
||||||
|
handler: resetFunction(gui.GitCommand.ResetSoft),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: gui.Tr.SLocalize("cancel"),
|
||||||
|
handler: func() error {
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
handleMenuPress := func(index int) error {
|
||||||
|
return options[index].handler()
|
||||||
|
}
|
||||||
|
|
||||||
|
return gui.createMenu("", options, len(options), handleMenuPress)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user