mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-31 02:25:35 +03:00 
			
		
		
		
	We will need a user config in the file tree in the next commit, and passing the entire common is the easiest way to do that while ensuring hot-reloading when users change the config while lazygit is running.
		
			
				
	
	
		
			194 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			194 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package filetree
 | |
| 
 | |
| import (
 | |
| 	"strings"
 | |
| 	"sync"
 | |
| 
 | |
| 	"github.com/jesseduffield/lazygit/pkg/commands/models"
 | |
| 	"github.com/jesseduffield/lazygit/pkg/common"
 | |
| 	"github.com/jesseduffield/lazygit/pkg/gui/context/traits"
 | |
| 	"github.com/jesseduffield/lazygit/pkg/gui/types"
 | |
| 	"github.com/samber/lo"
 | |
| )
 | |
| 
 | |
| type ICommitFileTreeViewModel interface {
 | |
| 	ICommitFileTree
 | |
| 	types.IListCursor
 | |
| 
 | |
| 	GetRef() types.Ref
 | |
| 	SetRef(types.Ref)
 | |
| 	GetRefRange() *types.RefRange // can be nil, in which case GetRef should be used
 | |
| 	SetRefRange(*types.RefRange)  // should be set to nil when selection is not a range
 | |
| 	GetCanRebase() bool
 | |
| 	SetCanRebase(bool)
 | |
| }
 | |
| 
 | |
| type CommitFileTreeViewModel struct {
 | |
| 	sync.RWMutex
 | |
| 	types.IListCursor
 | |
| 	ICommitFileTree
 | |
| 
 | |
| 	// this is e.g. the commit for which we're viewing the files, if there is no
 | |
| 	// range selection, or if the range selection can't be used for some reason
 | |
| 	ref types.Ref
 | |
| 
 | |
| 	// this is a commit range for which we're viewing the files. Can be nil, in
 | |
| 	// which case ref is used.
 | |
| 	refRange *types.RefRange
 | |
| 
 | |
| 	// we set this to true when you're viewing the files within the checked-out branch's commits.
 | |
| 	// If you're viewing the files of some random other branch we can't do any rebase stuff.
 | |
| 	canRebase bool
 | |
| }
 | |
| 
 | |
| var _ ICommitFileTreeViewModel = &CommitFileTreeViewModel{}
 | |
| 
 | |
| func NewCommitFileTreeViewModel(getFiles func() []*models.CommitFile, common *common.Common, showTree bool) *CommitFileTreeViewModel {
 | |
| 	fileTree := NewCommitFileTree(getFiles, common, showTree)
 | |
| 	listCursor := traits.NewListCursor(fileTree.Len)
 | |
| 	return &CommitFileTreeViewModel{
 | |
| 		ICommitFileTree: fileTree,
 | |
| 		IListCursor:     listCursor,
 | |
| 		ref:             nil,
 | |
| 		refRange:        nil,
 | |
| 		canRebase:       false,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetRef() types.Ref {
 | |
| 	return self.ref
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) SetRef(ref types.Ref) {
 | |
| 	self.ref = ref
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetRefRange() *types.RefRange {
 | |
| 	return self.refRange
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) SetRefRange(refsForRange *types.RefRange) {
 | |
| 	self.refRange = refsForRange
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetCanRebase() bool {
 | |
| 	return self.canRebase
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) SetCanRebase(canRebase bool) {
 | |
| 	self.canRebase = canRebase
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetSelected() *CommitFileNode {
 | |
| 	if self.Len() == 0 {
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	return self.Get(self.GetSelectedLineIdx())
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetSelectedItemId() string {
 | |
| 	item := self.GetSelected()
 | |
| 	if item == nil {
 | |
| 		return ""
 | |
| 	}
 | |
| 
 | |
| 	return item.ID()
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetSelectedItems() ([]*CommitFileNode, int, int) {
 | |
| 	if self.Len() == 0 {
 | |
| 		return nil, 0, 0
 | |
| 	}
 | |
| 
 | |
| 	startIdx, endIdx := self.GetSelectionRange()
 | |
| 
 | |
| 	nodes := []*CommitFileNode{}
 | |
| 	for i := startIdx; i <= endIdx; i++ {
 | |
| 		nodes = append(nodes, self.Get(i))
 | |
| 	}
 | |
| 
 | |
| 	return nodes, startIdx, endIdx
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetSelectedItemIds() ([]string, int, int) {
 | |
| 	selectedItems, startIdx, endIdx := self.GetSelectedItems()
 | |
| 
 | |
| 	ids := lo.Map(selectedItems, func(item *CommitFileNode, _ int) string {
 | |
| 		return item.ID()
 | |
| 	})
 | |
| 
 | |
| 	return ids, startIdx, endIdx
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetSelectedFile() *models.CommitFile {
 | |
| 	node := self.GetSelected()
 | |
| 	if node == nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	return node.File
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) GetSelectedPath() string {
 | |
| 	node := self.GetSelected()
 | |
| 	if node == nil {
 | |
| 		return ""
 | |
| 	}
 | |
| 
 | |
| 	return node.GetPath()
 | |
| }
 | |
| 
 | |
| // duplicated from file_tree_view_model.go. Generics will help here
 | |
| func (self *CommitFileTreeViewModel) ToggleShowTree() {
 | |
| 	selectedNode := self.GetSelected()
 | |
| 
 | |
| 	self.ICommitFileTree.ToggleShowTree()
 | |
| 
 | |
| 	if selectedNode == nil {
 | |
| 		return
 | |
| 	}
 | |
| 	path := selectedNode.path
 | |
| 
 | |
| 	if self.InTreeMode() {
 | |
| 		self.ExpandToPath(path)
 | |
| 	} else if len(selectedNode.Children) > 0 {
 | |
| 		path = selectedNode.GetLeaves()[0].path
 | |
| 	}
 | |
| 
 | |
| 	index, found := self.GetIndexForPath(path)
 | |
| 	if found {
 | |
| 		self.SetSelection(index)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) CollapseAll() {
 | |
| 	selectedNode := self.GetSelected()
 | |
| 
 | |
| 	self.ICommitFileTree.CollapseAll()
 | |
| 	if selectedNode == nil {
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	topLevelPath := strings.Split(selectedNode.path, "/")[0]
 | |
| 	index, found := self.GetIndexForPath(topLevelPath)
 | |
| 	if found {
 | |
| 		self.SetSelectedLineIdx(index)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (self *CommitFileTreeViewModel) ExpandAll() {
 | |
| 	selectedNode := self.GetSelected()
 | |
| 
 | |
| 	self.ICommitFileTree.ExpandAll()
 | |
| 
 | |
| 	if selectedNode == nil {
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	index, found := self.GetIndexForPath(selectedNode.path)
 | |
| 	if found {
 | |
| 		self.SetSelectedLineIdx(index)
 | |
| 	}
 | |
| }
 |