mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
63 lines
1.4 KiB
Go
63 lines
1.4 KiB
Go
package gui
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/gui/style"
|
|
)
|
|
|
|
type modeStatus struct {
|
|
isActive func() bool
|
|
description func() string
|
|
reset func() error
|
|
}
|
|
|
|
func (gui *Gui) modeStatuses() []modeStatus {
|
|
return []modeStatus{
|
|
{
|
|
isActive: gui.State.Modes.Diffing.Active,
|
|
description: func() string {
|
|
return style.FgMagenta.Sprintf(
|
|
"%s %s %s",
|
|
gui.Tr.LcShowingGitDiff,
|
|
"git diff "+gui.diffStr(),
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
|
)
|
|
},
|
|
reset: gui.exitDiffMode,
|
|
},
|
|
{
|
|
isActive: gui.GitCommand.PatchManager.Active,
|
|
description: func() string {
|
|
return style.FgYellow.SetBold().Sprintf(
|
|
"%s %s",
|
|
gui.Tr.LcBuildingPatch,
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
|
)
|
|
},
|
|
reset: gui.handleResetPatch,
|
|
},
|
|
{
|
|
isActive: gui.State.Modes.Filtering.Active,
|
|
description: func() string {
|
|
return style.FgRed.SetBold().Sprintf(
|
|
"%s '%s' %s",
|
|
gui.Tr.LcFilteringBy,
|
|
gui.State.Modes.Filtering.GetPath(),
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
|
)
|
|
},
|
|
reset: gui.exitFilterMode,
|
|
},
|
|
{
|
|
isActive: gui.State.Modes.CherryPicking.Active,
|
|
description: func() string {
|
|
return style.FgCyan.Sprintf(
|
|
"%d commits copied %s",
|
|
len(gui.State.Modes.CherryPicking.CherryPickedCommits),
|
|
style.AttrUnderline.Sprint(gui.Tr.ResetInParentheses),
|
|
)
|
|
},
|
|
reset: gui.exitCherryPickingMode,
|
|
},
|
|
}
|
|
}
|