1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/gui/filetree/build_tree.go

141 lines
2.8 KiB
Go
Raw Normal View History

2021-03-21 06:25:29 +02:00
package filetree
import (
2021-03-21 00:57:13 +02:00
"sort"
"strings"
"github.com/jesseduffield/lazygit/pkg/commands/models"
)
func BuildTreeFromFiles(files []*models.File) *Node[models.File] {
root := &Node[models.File]{}
var curr *Node[models.File]
for _, file := range files {
2021-04-08 13:24:49 +02:00
splitPath := split(file.Name)
curr = root
outer:
2021-04-08 13:24:49 +02:00
for i := range splitPath {
var setFile *models.File
2021-04-08 13:24:49 +02:00
isFile := i == len(splitPath)-1
2021-03-20 23:41:06 +02:00
if isFile {
setFile = file
}
2021-03-20 23:41:06 +02:00
2021-04-08 13:24:49 +02:00
path := join(splitPath[:i+1])
for _, existingChild := range curr.Children {
2021-03-20 23:41:06 +02:00
if existingChild.Path == path {
curr = existingChild
continue outer
}
}
2021-03-20 23:41:06 +02:00
newChild := &Node[models.File]{
2021-03-20 23:41:06 +02:00
Path: path,
File: setFile,
}
curr.Children = append(curr.Children, newChild)
curr = newChild
}
}
root.Sort()
root.Compress()
return root
}
2021-03-20 23:41:06 +02:00
func BuildFlatTreeFromCommitFiles(files []*models.CommitFile) *Node[models.CommitFile] {
2021-03-31 13:08:55 +02:00
rootAux := BuildTreeFromCommitFiles(files)
sortedFiles := rootAux.GetLeaves()
return &Node[models.CommitFile]{Children: sortedFiles}
2021-03-31 13:08:55 +02:00
}
func BuildTreeFromCommitFiles(files []*models.CommitFile) *Node[models.CommitFile] {
root := &Node[models.CommitFile]{}
2021-03-31 13:08:55 +02:00
var curr *Node[models.CommitFile]
2021-03-31 13:08:55 +02:00
for _, file := range files {
2021-04-08 13:24:49 +02:00
splitPath := split(file.Name)
2021-03-31 13:08:55 +02:00
curr = root
outer:
2021-04-08 13:24:49 +02:00
for i := range splitPath {
2021-03-31 13:08:55 +02:00
var setFile *models.CommitFile
2021-04-08 13:24:49 +02:00
isFile := i == len(splitPath)-1
2021-03-31 13:08:55 +02:00
if isFile {
setFile = file
}
2021-04-08 13:24:49 +02:00
path := join(splitPath[:i+1])
2021-03-31 13:08:55 +02:00
for _, existingChild := range curr.Children {
if existingChild.Path == path {
curr = existingChild
continue outer
}
}
newChild := &Node[models.CommitFile]{
2021-03-31 13:08:55 +02:00
Path: path,
File: setFile,
}
curr.Children = append(curr.Children, newChild)
curr = newChild
}
}
root.Sort()
root.Compress()
return root
}
func BuildFlatTreeFromFiles(files []*models.File) *Node[models.File] {
2021-03-21 06:25:29 +02:00
rootAux := BuildTreeFromFiles(files)
2021-03-21 01:46:43 +02:00
sortedFiles := rootAux.GetLeaves()
2021-03-21 00:06:15 +02:00
// from top down we have merge conflict files, then tracked file, then untracked
// files. This is the one way in which sorting differs between flat mode and
// tree mode
2021-03-21 01:46:43 +02:00
sort.SliceStable(sortedFiles, func(i, j int) bool {
iFile := sortedFiles[i].File
jFile := sortedFiles[j].File
// never going to happen but just to be safe
if iFile == nil || jFile == nil {
return false
}
if iFile.HasMergeConflicts && !jFile.HasMergeConflicts {
return true
}
if jFile.HasMergeConflicts && !iFile.HasMergeConflicts {
return false
}
if iFile.Tracked && !jFile.Tracked {
return true
}
if jFile.Tracked && !iFile.Tracked {
return false
}
return false
2021-03-21 00:57:13 +02:00
})
return &Node[models.File]{Children: sortedFiles}
2021-03-20 23:41:06 +02:00
}
2021-04-08 13:24:49 +02:00
func split(str string) []string {
return strings.Split(str, "/")
}
func join(strs []string) string {
return strings.Join(strs, "/")
}