2020-08-22 03:44:03 +02:00
|
|
|
package gui
|
|
|
|
|
|
|
|
import (
|
2021-10-31 23:58:58 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/commands"
|
2021-07-27 15:00:37 +02:00
|
|
|
"github.com/jesseduffield/lazygit/pkg/gui/style"
|
2020-08-22 03:44:03 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type modeStatus struct {
|
|
|
|
isActive func() bool
|
|
|
|
description func() string
|
2020-08-23 01:23:59 +02:00
|
|
|
reset func() error
|
2020-08-22 03:44:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) modeStatuses() []modeStatus {
|
|
|
|
return []modeStatus{
|
|
|
|
{
|
|
|
|
isActive: gui.State.Modes.Diffing.Active,
|
|
|
|
description: func() string {
|
2021-07-27 15:00:37 +02:00
|
|
|
return style.FgMagenta.Sprintf(
|
|
|
|
"%s %s %s",
|
|
|
|
gui.Tr.LcShowingGitDiff,
|
|
|
|
"git diff "+gui.diffStr(),
|
|
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
2020-08-23 01:23:59 +02:00
|
|
|
)
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
2020-08-23 01:23:59 +02:00
|
|
|
reset: gui.exitDiffMode,
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
|
|
|
{
|
2021-04-06 01:50:09 +02:00
|
|
|
isActive: gui.GitCommand.PatchManager.Active,
|
2020-08-22 03:44:03 +02:00
|
|
|
description: func() string {
|
2021-07-31 04:54:28 +02:00
|
|
|
return style.FgYellow.SetBold().Sprintf(
|
2021-07-27 15:00:37 +02:00
|
|
|
"%s %s",
|
|
|
|
gui.Tr.LcBuildingPatch,
|
|
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
2020-08-23 01:23:59 +02:00
|
|
|
)
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
2021-04-06 01:50:09 +02:00
|
|
|
reset: gui.handleResetPatch,
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
|
|
|
{
|
2021-04-06 01:50:09 +02:00
|
|
|
isActive: gui.State.Modes.Filtering.Active,
|
2020-08-22 03:44:03 +02:00
|
|
|
description: func() string {
|
2021-07-31 04:54:28 +02:00
|
|
|
return style.FgRed.SetBold().Sprintf(
|
2021-07-27 15:00:37 +02:00
|
|
|
"%s '%s' %s",
|
|
|
|
gui.Tr.LcFilteringBy,
|
|
|
|
gui.State.Modes.Filtering.GetPath(),
|
|
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
2020-08-23 01:23:59 +02:00
|
|
|
)
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
2021-04-06 01:50:09 +02:00
|
|
|
reset: gui.exitFilterMode,
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
isActive: gui.State.Modes.CherryPicking.Active,
|
|
|
|
description: func() string {
|
2021-07-27 15:00:37 +02:00
|
|
|
return style.FgCyan.Sprintf(
|
|
|
|
"%d commits copied %s",
|
|
|
|
len(gui.State.Modes.CherryPicking.CherryPickedCommits),
|
|
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
2020-08-23 01:23:59 +02:00
|
|
|
)
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
2020-08-23 01:23:59 +02:00
|
|
|
reset: gui.exitCherryPickingMode,
|
2020-08-22 03:44:03 +02:00
|
|
|
},
|
2021-10-31 23:58:58 +02:00
|
|
|
{
|
|
|
|
isActive: func() bool {
|
|
|
|
return gui.GitCommand.WorkingTreeState() != commands.REBASE_MODE_NORMAL
|
|
|
|
},
|
|
|
|
description: func() string {
|
|
|
|
workingTreeState := gui.GitCommand.WorkingTreeState()
|
|
|
|
return style.FgYellow.Sprintf(
|
|
|
|
"%s %s",
|
|
|
|
workingTreeState,
|
|
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
|
|
|
)
|
|
|
|
},
|
|
|
|
reset: gui.abortMergeOrRebaseWithConfirm,
|
|
|
|
},
|
2020-08-22 03:44:03 +02:00
|
|
|
}
|
|
|
|
}
|