summaryrefslogtreecommitdiffstats
path: root/pkg/gui/status_tree.go
blob: 6ff48956608514a22c02b2c684511f35376b14ac (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
package gui

import (
	"os"
	"path/filepath"
	"strings"

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

func GetTreeFromStatusFiles(files []*models.File, log *logrus.Entry) *models.StatusLineNode {
	root := &models.StatusLineNode{}

	var curr *models.StatusLineNode
	for _, file := range files {
		split := strings.Split(file.Name, string(os.PathSeparator))
		curr = root
	outer:
		for i := range split {
			var setFile *models.File
			isFile := i == len(split)-1
			if isFile {
				setFile = file
			}

			path := filepath.Join(split[:i+1]...)

			for _, existingChild := range curr.Children {
				if existingChild.Path == path {
					curr = existingChild
					continue outer
				}
			}

			newChild := &models.StatusLineNode{
				Name: path, // TODO: Remove concept of name
				Path: path,
				File: setFile,
			}
			curr.Children = append(curr.Children, newChild)

			curr = newChild
		}
	}

	root.Sort()
	root.Compress()

	return root
}

func GetFlatTreeFromStatusFiles(files []*models.File) *models.StatusLineNode {
	root := &models.StatusLineNode{}
	for _, file := range files {
		root.Children = append(root.Children, &models.StatusLineNode{
			Name: file.Name,
			Path: file.GetPath(),
			File: file,
		})
	}

	return root
}