summaryrefslogtreecommitdiffstats
path: root/pkg/gui/gui.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-03-28 16:28:35 +1100
committerJesse Duffield <jessedduffield@gmail.com>2020-03-29 11:37:29 +1100
commit624ae45ebb3f54499a25c4eba0844fa971277c34 (patch)
treeca20f93742858b2b4231d083e5b6abdab61d69ba /pkg/gui/gui.go
parent2756b82f5733c2099c43279ebb1a962101411142 (diff)
allow scoped mode where the commits/reflog/stash panels are scoped to a file
WIP restrict certain actions in scoped mode WIP
Diffstat (limited to 'pkg/gui/gui.go')
-rw-r--r--pkg/gui/gui.go66
1 files changed, 53 insertions, 13 deletions
diff --git a/pkg/gui/gui.go b/pkg/gui/gui.go
index 969c8c942..a3f110427 100644
--- a/pkg/gui/gui.go
+++ b/pkg/gui/gui.go
@@ -50,6 +50,7 @@ type SentinelErrors struct {
ErrSubProcess error
ErrNoFiles error
ErrSwitchRepo error
+ ErrRestart error
}
// GenerateSentinelErrors makes the sentinel errors for the gui. We're defining it here
@@ -67,6 +68,7 @@ func (gui *Gui) GenerateSentinelErrors() {
ErrSubProcess: errors.New(gui.Tr.SLocalize("RunningSubprocess")),
ErrNoFiles: errors.New(gui.Tr.SLocalize("NoChangedFiles")),
ErrSwitchRepo: errors.New("switching repo"),
+ ErrRestart: errors.New("restarting"),
}
}
@@ -214,13 +216,13 @@ type guiState struct {
PrevMainWidth int
PrevMainHeight int
OldInformation string
- StartupStage int // one of INITIAL and COMPLETE. Allows us to not load everything at once
+ StartupStage int // one of INITIAL and COMPLETE. Allows us to not load everything at once
+ LogScope string // the filename that gets passed to git log
}
// for now the split view will always be on
-
// NewGui builds a new gui handler
-func NewGui(log *logrus.Entry, gitCommand *commands.GitCommand, oSCommand *commands.OSCommand, tr *i18n.Localizer, config config.AppConfigurer, updater *updates.Updater) (*Gui, error) {
+func NewGui(log *logrus.Entry, gitCommand *commands.GitCommand, oSCommand *commands.OSCommand, tr *i18n.Localizer, config config.AppConfigurer, updater *updates.Updater, logScope string) (*Gui, error) {
initialState := &guiState{
Files: make([]*commands.File, 0),
@@ -248,9 +250,9 @@ func NewGui(log *logrus.Entry, gitCommand *commands.GitCommand, oSCommand *comma
EditHistory: stack.New(),
},
},
- ScreenMode: SCREEN_NORMAL,
- SideView: nil,
- Ptmx: nil,
+ SideView: nil,
+ Ptmx: nil,
+ LogScope: logScope,
}
gui := &Gui{
@@ -509,7 +511,9 @@ func (gui *Gui) layout(g *gocui.Gui) error {
donate := color.New(color.FgMagenta, color.Underline).Sprint(gui.Tr.SLocalize("Donate"))
information = donate + " " + information
}
- if len(gui.State.CherryPickedCommits) > 0 {
+ if gui.inScopedMode() {
+ information = utils.ColoredString(fmt.Sprintf("%s '%s' %s", gui.Tr.SLocalize("scopingTo"), gui.State.LogScope, utils.ColoredString(gui.Tr.SLocalize("(reset)"), color.Underline)), color.FgRed, color.Bold)
+ } else if len(gui.State.CherryPickedCommits) > 0 {
information = utils.ColoredString(fmt.Sprintf("%d commits copied", len(gui.State.CherryPickedCommits)), color.FgCyan)
}
@@ -799,11 +803,15 @@ func (gui *Gui) layout(g *gocui.Gui) error {
}
if gui.g.CurrentView() == nil {
- if _, err := gui.g.SetCurrentView(gui.getFilesView().Name()); err != nil {
+ initialView := gui.getFilesView()
+ if gui.inScopedMode() {
+ initialView = gui.getCommitsView()
+ }
+ if _, err := gui.g.SetCurrentView(initialView.Name()); err != nil {
return err
}
- if err := gui.switchFocus(gui.g, nil, gui.getFilesView()); err != nil {
+ if err := gui.switchFocus(gui.g, nil, initialView); err != nil {
return err
}
}
@@ -985,6 +993,12 @@ func (gui *Gui) Run() error {
}
defer g.Close()
+ if gui.inScopedMode() {
+ gui.State.ScreenMode = SCREEN_HALF
+ } else {
+ gui.State.ScreenMode = SCREEN_NORMAL
+ }
+
g.OnSearchEscape = gui.onSearchEscape
g.SearchEscapeKey = gui.getKey("universal.return")
g.NextSearchMatchKey = gui.getKey("universal.nextMatch")
@@ -1061,6 +1075,8 @@ func (gui *Gui) RunWithSubprocesses() error {
break
} else if err == gui.Errors.ErrSwitchRepo {
continue
+ } else if err == gui.Errors.ErrRestart {
+ continue
} else if err == gui.Errors.ErrSubProcess {
if err := gui.runCommand(); err != nil {
return err
@@ -1097,16 +1113,29 @@ func (gui *Gui) runCommand() error {
return nil
}
-func (gui *Gui) handleDonate(g *gocui.Gui, v *gocui.View) error {
+func (gui *Gui) handleInfoClick(g *gocui.Gui, v *gocui.View) error {
if !gui.g.Mouse {
return nil
}
cx, _ := v.Cursor()
- if cx > len(gui.Tr.SLocalize("Donate")) {
- return nil
+ width, _ := v.Size()
+
+ // if we're in the normal context there will be a donate button here
+ // if we have ('reset') at the end then
+ if gui.inScopedMode() {
+ if width-cx <= len(gui.Tr.SLocalize("(reset)")) {
+ gui.State.LogScope = ""
+ return gui.Errors.ErrRestart
+ } else {
+ return nil
+ }
+ }
+
+ if cx <= len(gui.Tr.SLocalize("Donate")) {
+ return gui.OSCommand.OpenLink("https://github.com/sponsors/jesseduffield")
}
- return gui.OSCommand.OpenLink("https://github.com/sponsors/jesseduffield")
+ return nil
}
// setColorScheme sets the color scheme for the app based on the user config
@@ -1147,3 +1176,14 @@ func (gui *Gui) handleMouseDownSecondary(g *gocui.Gui, v *gocui.View) error {
return nil
}
+
+func (gui *Gui) inScopedMode() bool {
+ return gui.State.LogScope != ""
+}
+
+func (gui *Gui) validateNotInScopedMode() (bool, error) {
+ if gui.inScopedMode() {
+ return false, gui.createErrorPanel("command not available in scoped mode. Either exit scoped mode or restart lazygit")
+ }
+ return true, nil
+}