summaryrefslogtreecommitdiffstats
path: root/pkg/gui/file_change_manager.go
blob: 1af1fb74877f66ee660e41205de904b1c8de1f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package gui

import (
	"fmt"
	"strings"

	"github.com/jesseduffield/lazygit/pkg/commands/models"
	"github.com/jesseduffield/lazygit/pkg/gui/presentation"
	"github.com/sirupsen/logrus"
)

const EXPANDED_ARROW = "▼"
const COLLAPSED_ARROW = "►"

type FileChangeManager struct {
	Files          []*models.File
	Tree           *models.FileChangeNode
	ShowTree       bool
	Log            *logrus.Entry
	CollapsedPaths map[string]bool
}

func NewFileChangeManager(files []*models.File, log *logrus.Entry, showTree bool) *FileChangeManager {
	return &FileChangeManager{
		Files:          files,
		Log:            log,
		ShowTree:       showTree,
		CollapsedPaths: map[string]bool{},
	}
}

func (m *FileChangeManager) GetItemAtIndex(index int) *models.FileChangeNode {
	// need to traverse the three depth first until we get to the index.
	return m.Tree.GetNodeAtIndex(index+1, m.CollapsedPaths) // ignoring root
}

func (m *FileChangeManager) GetIndexForPath(path string) (int, bool) {
	index, found := m.Tree.GetIndexForPath(path, m.CollapsedPaths)
	return index - 1, found
}

func (m *FileChangeManager) GetAllItems() []*models.FileChangeNode {
	if m.Tree == nil {
		return nil
	}

	return m.Tree.Flatten(m.CollapsedPaths)[1:] // ignoring root
}

func (m *FileChangeManager) GetItemsLength() int {
	return m.Tree.Size(m.CollapsedPaths) - 1 // ignoring root
}

func (m *FileChangeManager) GetAllFiles() []*models.File {
	return m.Files
}

func (m *FileChangeManager) SetFiles(files []*models.File) {
	m.Files = files

	m.SetTree()
}

func (m *FileChangeManager) SetTree() {
	if m.ShowTree {
		m.Tree = GetTreeFromFiles(m.Files)
	} else {
		m.Tree = GetFlatTreeFromFiles(m.Files)
	}
}

func (m *FileChangeManager) Render(diffName string, submoduleConfigs []*models.SubmoduleConfig) []string {
	return m.renderAux(m.Tree, "", -1, diffName, submoduleConfigs)
}

const INNER_ITEM = "├─ "
const LAST_ITEM = "└─ "
const NESTED = "│  "
const NOTHING = "   "

func (m *FileChangeManager) IsCollapsed(s *models.FileChangeNode) bool {
	return m.CollapsedPaths[s.GetPath()]
}

func (m *FileChangeManager) ToggleCollapsed(s *models.FileChangeNode) {
	m.CollapsedPaths[s.GetPath()] = !m.CollapsedPaths[s.GetPath()]
}

func (m *FileChangeManager) renderAux(s *models.FileChangeNode, prefix string, depth int, diffName string, submoduleConfigs []*models.SubmoduleConfig) []string {
	isRoot := depth == -1
	if s == nil {
		return []string{}
	}

	getLine := func() string {
		return prefix + presentation.GetFileLine(s.GetHasUnstagedChanges(), s.GetHasStagedChanges(), s.NameAtDepth(depth), diffName, submoduleConfigs, s.File)
	}

	if s.IsLeaf() {
		if isRoot {
			return []string{}
		}
		return []string{getLine()}
	}

	if m.IsCollapsed(s) {
		return []string{fmt.Sprintf("%s %s", getLine(), COLLAPSED_ARROW)}
	}

	arr := []string{}
	if !isRoot {
		arr = append(arr, fmt.Sprintf("%s %s", getLine(), EXPANDED_ARROW))
	}

	newPrefix := prefix
	if strings.HasSuffix(prefix, LAST_ITEM) {
		newPrefix = strings.TrimSuffix(prefix, LAST_ITEM) + NOTHING
	} else if strings.HasSuffix(prefix, INNER_ITEM) {
		newPrefix = strings.TrimSuffix(prefix, INNER_ITEM) + NESTED
	}

	for i, child := range s.Children {
		isLast := i == len(s.Children)-1

		var childPrefix string
		if isRoot {
			childPrefix = newPrefix
		} else if isLast {
			childPrefix = newPrefix + LAST_ITEM
		} else {
			childPrefix = newPrefix + INNER_ITEM
		}

		arr = append(arr, m.renderAux(child, childPrefix, depth+1+s.CompressionLevel, diffName, submoduleConfigs)...)
	}

	return arr
}