-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitReflogWindow.cs
115 lines (105 loc) · 4.67 KB
/
GitReflogWindow.cs
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
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using UnityEditor;
using UnityEditor.IMGUI.Controls;
using UnityEngine;
namespace Abuksigun.UnityGitUI
{
public class GitReflogWindow : EditorWindow
{
private string guid;
private LazyTreeView<ReflogEntry> treeView;
[MenuItem("Window/Git UI/Reflog")]
public static void Invoke()
{
if (EditorWindow.GetWindow<GitReflogWindow>() is { } window && window)
{
window.titleContent = new GUIContent("Git Reflog", EditorGUIUtility.IconContent("d_UnityEditor.ConsoleWindow").image);
window.InitializeTreeView();
window.Show();
}
}
private LazyTreeView<ReflogEntry> InitializeTreeView()
{
var state = new TreeViewState();
var columns = new MultiColumnHeaderState.Column[]
{
new MultiColumnHeaderState.Column { width = 100, headerContent = new GUIContent("Hash") },
new MultiColumnHeaderState.Column { width = 100, headerContent = new GUIContent("Date") },
new MultiColumnHeaderState.Column { width = 200, headerContent = new GUIContent("Type") },
new MultiColumnHeaderState.Column { width = 400, headerContent = new GUIContent("Message"), autoResize = true },
};
var multiColumnHeader = new MultiColumnHeader(new MultiColumnHeaderState(columns));
return new LazyTreeView<ReflogEntry>(GenerateReflogItems, state, false, multiColumnHeader, DrawCell);
}
private void OnGUI()
{
Repaint();
var module = GUIUtils.ModuleGuidToolbar(Utils.GetSelectedGitModules().ToList(), guid);
if (module == null)
return;
guid = module?.Guid ?? guid;
var refLogEntries = module.RefLogEntries.GetResultOrDefault();
if (refLogEntries != null)
{
treeView ??= InitializeTreeView();
treeView.Draw(position.size, refLogEntries,
contextMenuCallback: id => ShowContextMenu(module, refLogEntries.FirstOrDefault(x => x.GetHashCode() == id)),
doubleClickCallback: id => GitLogWindow.SelectHash(module, refLogEntries.FirstOrDefault(x => x.GetHashCode() == id)?.Hash));
}
}
private List<TreeViewItem> GenerateReflogItems(IEnumerable<ReflogEntry> reflogEntries)
{
return reflogEntries.Select(entry => new LazyTreeView<ReflogEntry>.CustomViewItem { id = entry.GetHashCode(), data = entry } as TreeViewItem).ToList();
}
private void DrawCell(TreeViewItem item, int column, Rect cellRect)
{
var entry = (item as LazyTreeView<ReflogEntry>.CustomViewItem).data;
switch (column)
{
case 0:
EditorGUI.LabelField(cellRect, entry.Hash.Substring(0, 7));
break;
case 1:
EditorGUI.LabelField(cellRect, entry.Time);
break;
case 2:
EditorGUI.LabelField(cellRect, entry.EntryType);
break;
case 3:
EditorGUI.LabelField(cellRect, entry.Comment);
break;
}
}
private void ShowContextMenu(Module module, ReflogEntry entry)
{
var menu = new GenericMenu();
menu.AddItem(new GUIContent("Checkout"), false, () => Checkout(module, entry.Hash));
menu.AddItem(new GUIContent("Create branch"), false, () => CreateBranchFrom(module, entry));
menu.ShowAsContext();
}
private void Checkout(Module module, string hash)
{
module.Checkout(hash);
}
private void CreateBranchFrom(Module module, ReflogEntry entry)
{
bool checkout = false;
string branchName = $"reflog-branch-{entry.Hash}";
_ = GUIUtils.ShowModalWindow("Create Branch", new Vector2Int(300, 150), (window) =>
{
GUILayout.Label("New Branch Name: ");
branchName = EditorGUILayout.TextField(branchName);
checkout = GUILayout.Toggle(checkout, "Checkout to this branch");
GUILayout.Space(40);
if (GUILayout.Button("Ok", GUILayout.Width(200)))
{
var modules = Utils.GetSelectedGitModules();
_ = Task.WhenAll(modules.Select(module => module.CreateBranchFrom(entry.Hash, branchName)));
window.Close();
}
});
}
}
}