mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-04 22:34:39 +02:00
Add suggestionsPreset to custom commands system
This commit is contained in:
parent
8e6967c702
commit
16fa22a36e
@ -107,6 +107,7 @@ The permitted prompt fields are:
|
|||||||
| type | one of 'input', 'menu', or 'confirm' | yes |
|
| type | one of 'input', 'menu', or 'confirm' | yes |
|
||||||
| title | the title to display in the popup panel | no |
|
| title | the title to display in the popup panel | no |
|
||||||
| initialValue | (only applicable to 'input' prompts) the initial value to appear in the text box | no |
|
| initialValue | (only applicable to 'input' prompts) the initial value to appear in the text box | no |
|
||||||
|
| suggestionsPreset | (only applicable to 'input prompts'. Shows suggestions as the value is typed. One of 'files', 'branches', 'remotes', 'remoteBranches', refs'. | no |
|
||||||
| body | (only applicable to 'confirm' prompts) the immutable body text to appear in the text box | no |
|
| body | (only applicable to 'confirm' prompts) the immutable body text to appear in the text box | no |
|
||||||
| options | (only applicable to 'menu' prompts) the options to display in the menu | no |
|
| options | (only applicable to 'menu' prompts) the options to display in the menu | no |
|
||||||
| command | (only applicable to 'menuFromCommand' prompts) the command to run to generate | yes |
|
| command | (only applicable to 'menuFromCommand' prompts) the command to run to generate | yes |
|
||||||
|
@ -367,6 +367,7 @@ type CustomCommandPrompt struct {
|
|||||||
|
|
||||||
// this only apply to input prompts
|
// this only apply to input prompts
|
||||||
InitialValue string `yaml:"initialValue"`
|
InitialValue string `yaml:"initialValue"`
|
||||||
|
SuggestionsPreset string `yaml:"suggestionsPreset"`
|
||||||
|
|
||||||
// this only applies to confirm prompts
|
// this only applies to confirm prompts
|
||||||
Body string `yaml:"body"`
|
Body string `yaml:"body"`
|
||||||
|
@ -19,7 +19,7 @@ func NewClient(
|
|||||||
helpers *helpers.Helpers,
|
helpers *helpers.Helpers,
|
||||||
) *Client {
|
) *Client {
|
||||||
sessionStateLoader := NewSessionStateLoader(c, helpers.Refs)
|
sessionStateLoader := NewSessionStateLoader(c, helpers.Refs)
|
||||||
handlerCreator := NewHandlerCreator(c, sessionStateLoader)
|
handlerCreator := NewHandlerCreator(c, sessionStateLoader, helpers.Suggestions)
|
||||||
keybindingCreator := NewKeybindingCreator(c)
|
keybindingCreator := NewKeybindingCreator(c)
|
||||||
customCommands := c.UserConfig.CustomCommands
|
customCommands := c.UserConfig.CustomCommands
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package custom_commands
|
package custom_commands
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
@ -18,11 +19,13 @@ type HandlerCreator struct {
|
|||||||
sessionStateLoader *SessionStateLoader
|
sessionStateLoader *SessionStateLoader
|
||||||
resolver *Resolver
|
resolver *Resolver
|
||||||
menuGenerator *MenuGenerator
|
menuGenerator *MenuGenerator
|
||||||
|
suggestionsHelper *helpers.SuggestionsHelper
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewHandlerCreator(
|
func NewHandlerCreator(
|
||||||
c *helpers.HelperCommon,
|
c *helpers.HelperCommon,
|
||||||
sessionStateLoader *SessionStateLoader,
|
sessionStateLoader *SessionStateLoader,
|
||||||
|
suggestionsHelper *helpers.SuggestionsHelper,
|
||||||
) *HandlerCreator {
|
) *HandlerCreator {
|
||||||
resolver := NewResolver(c.Common)
|
resolver := NewResolver(c.Common)
|
||||||
menuGenerator := NewMenuGenerator(c.Common)
|
menuGenerator := NewMenuGenerator(c.Common)
|
||||||
@ -32,6 +35,7 @@ func NewHandlerCreator(
|
|||||||
sessionStateLoader: sessionStateLoader,
|
sessionStateLoader: sessionStateLoader,
|
||||||
resolver: resolver,
|
resolver: resolver,
|
||||||
menuGenerator: menuGenerator,
|
menuGenerator: menuGenerator,
|
||||||
|
suggestionsHelper: suggestionsHelper,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -104,15 +108,42 @@ func (self *HandlerCreator) call(customCommand config.CustomCommand) func() erro
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (self *HandlerCreator) inputPrompt(prompt *config.CustomCommandPrompt, wrappedF func(string) error) error {
|
func (self *HandlerCreator) inputPrompt(prompt *config.CustomCommandPrompt, wrappedF func(string) error) error {
|
||||||
|
var findSuggestionsFn func(string) []*types.Suggestion
|
||||||
|
if prompt.SuggestionsPreset != "" {
|
||||||
|
var err error
|
||||||
|
findSuggestionsFn, err = self.getPresetSuggestionsFn(prompt.SuggestionsPreset)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return self.c.Prompt(types.PromptOpts{
|
return self.c.Prompt(types.PromptOpts{
|
||||||
Title: prompt.Title,
|
Title: prompt.Title,
|
||||||
InitialContent: prompt.InitialValue,
|
InitialContent: prompt.InitialValue,
|
||||||
|
FindSuggestionsFunc: findSuggestionsFn,
|
||||||
HandleConfirm: func(str string) error {
|
HandleConfirm: func(str string) error {
|
||||||
return wrappedF(str)
|
return wrappedF(str)
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (self *HandlerCreator) getPresetSuggestionsFn(preset string) (func(string) []*types.Suggestion, error) {
|
||||||
|
switch preset {
|
||||||
|
case "files":
|
||||||
|
return self.suggestionsHelper.GetFilePathSuggestionsFunc(), nil
|
||||||
|
case "branches":
|
||||||
|
return self.suggestionsHelper.GetBranchNameSuggestionsFunc(), nil
|
||||||
|
case "remotes":
|
||||||
|
return self.suggestionsHelper.GetRemoteSuggestionsFunc(), nil
|
||||||
|
case "remoteBranches":
|
||||||
|
return self.suggestionsHelper.GetRemoteBranchesSuggestionsFunc("/"), nil
|
||||||
|
case "refs":
|
||||||
|
return self.suggestionsHelper.GetRefsSuggestionsFunc(), nil
|
||||||
|
default:
|
||||||
|
return nil, fmt.Errorf("Unknown value for suggestionsPreset in custom command: %s. Valid values: files, branches, remotes, remoteBranches, refs", preset)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (self *HandlerCreator) menuPrompt(prompt *config.CustomCommandPrompt, wrappedF func(string) error) error {
|
func (self *HandlerCreator) menuPrompt(prompt *config.CustomCommandPrompt, wrappedF func(string) error) error {
|
||||||
menuItems := slices.Map(prompt.Options, func(option config.CustomCommandMenuOption) *types.MenuItem {
|
menuItems := slices.Map(prompt.Options, func(option config.CustomCommandMenuOption) *types.MenuItem {
|
||||||
return &types.MenuItem{
|
return &types.MenuItem{
|
||||||
|
@ -34,6 +34,11 @@ func (self *Resolver) resolvePrompt(
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
result.SuggestionsPreset, err = resolveTemplate(prompt.SuggestionsPreset)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
result.Body, err = resolveTemplate(prompt.Body)
|
result.Body, err = resolveTemplate(prompt.Body)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
64
pkg/integration/tests/custom_commands/suggestions_preset.go
Normal file
64
pkg/integration/tests/custom_commands/suggestions_preset.go
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
package custom_commands
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/jesseduffield/lazygit/pkg/config"
|
||||||
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
||||||
|
)
|
||||||
|
|
||||||
|
var SuggestionsPreset = NewIntegrationTest(NewIntegrationTestArgs{
|
||||||
|
Description: "Using a custom command that uses a suggestions preset in a prompt step",
|
||||||
|
ExtraCmdArgs: []string{},
|
||||||
|
Skip: false,
|
||||||
|
SetupRepo: func(shell *Shell) {
|
||||||
|
shell.NewBranch("branch-one")
|
||||||
|
shell.EmptyCommit("blah")
|
||||||
|
shell.NewBranch("branch-two")
|
||||||
|
shell.EmptyCommit("blah")
|
||||||
|
shell.NewBranch("branch-three")
|
||||||
|
shell.EmptyCommit("blah")
|
||||||
|
shell.NewBranch("branch-four")
|
||||||
|
shell.EmptyCommit("blah")
|
||||||
|
},
|
||||||
|
SetupConfig: func(cfg *config.AppConfig) {
|
||||||
|
cfg.UserConfig.CustomCommands = []config.CustomCommand{
|
||||||
|
{
|
||||||
|
Key: "a",
|
||||||
|
Context: "localBranches",
|
||||||
|
Command: `git checkout {{.Form.Branch}}`,
|
||||||
|
Prompts: []config.CustomCommandPrompt{
|
||||||
|
{
|
||||||
|
Key: "Branch",
|
||||||
|
Type: "input",
|
||||||
|
Title: "Enter a branch name",
|
||||||
|
SuggestionsPreset: "branches",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
||||||
|
t.Views().Branches().
|
||||||
|
Focus().
|
||||||
|
Lines(
|
||||||
|
Contains("branch-four").IsSelected(),
|
||||||
|
Contains("branch-three"),
|
||||||
|
Contains("branch-two"),
|
||||||
|
Contains("branch-one"),
|
||||||
|
).
|
||||||
|
Press("a")
|
||||||
|
|
||||||
|
t.ExpectPopup().Prompt().
|
||||||
|
Title(Equals("Enter a branch name")).
|
||||||
|
Type("three").
|
||||||
|
SuggestionLines(Contains("branch-three")).
|
||||||
|
ConfirmFirstSuggestion()
|
||||||
|
|
||||||
|
t.Views().Branches().
|
||||||
|
Lines(
|
||||||
|
Contains("branch-three").IsSelected(),
|
||||||
|
Contains("branch-four"),
|
||||||
|
Contains("branch-two"),
|
||||||
|
Contains("branch-one"),
|
||||||
|
)
|
||||||
|
},
|
||||||
|
})
|
@ -77,6 +77,7 @@ var tests = []*components.IntegrationTest{
|
|||||||
custom_commands.MenuFromCommandsOutput,
|
custom_commands.MenuFromCommandsOutput,
|
||||||
custom_commands.MultiplePrompts,
|
custom_commands.MultiplePrompts,
|
||||||
custom_commands.OmitFromHistory,
|
custom_commands.OmitFromHistory,
|
||||||
|
custom_commands.SuggestionsPreset,
|
||||||
diff.Diff,
|
diff.Diff,
|
||||||
diff.DiffAndApplyPatch,
|
diff.DiffAndApplyPatch,
|
||||||
diff.DiffCommits,
|
diff.DiffCommits,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user