mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	Follow the JavaScript naming scheme for user interaction (alert, prompt, confirm) as discussed in #1832.
		
			
				
	
	
		
			41 lines
		
	
	
		
			898 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			898 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package helpers
 | |
| 
 | |
| import (
 | |
| 	"github.com/jesseduffield/lazygit/pkg/commands"
 | |
| 	"github.com/jesseduffield/lazygit/pkg/gui/types"
 | |
| )
 | |
| 
 | |
| type BisectHelper struct {
 | |
| 	c   *types.HelperCommon
 | |
| 	git *commands.GitCommand
 | |
| }
 | |
| 
 | |
| func NewBisectHelper(
 | |
| 	c *types.HelperCommon,
 | |
| 	git *commands.GitCommand,
 | |
| ) *BisectHelper {
 | |
| 	return &BisectHelper{
 | |
| 		c:   c,
 | |
| 		git: git,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (self *BisectHelper) Reset() error {
 | |
| 	return self.c.Confirm(types.ConfirmOpts{
 | |
| 		Title:  self.c.Tr.Bisect.ResetTitle,
 | |
| 		Prompt: self.c.Tr.Bisect.ResetPrompt,
 | |
| 		HandleConfirm: func() error {
 | |
| 			self.c.LogAction(self.c.Tr.Actions.ResetBisect)
 | |
| 			if err := self.git.Bisect.Reset(); err != nil {
 | |
| 				return self.c.Error(err)
 | |
| 			}
 | |
| 
 | |
| 			return self.PostBisectCommandRefresh()
 | |
| 		},
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func (self *BisectHelper) PostBisectCommandRefresh() error {
 | |
| 	return self.c.Refresh(types.RefreshOptions{Mode: types.ASYNC, Scope: []types.RefreshableView{}})
 | |
| }
 |