-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitConfigWindow.cs
81 lines (72 loc) · 3.25 KB
/
GitConfigWindow.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
using System;
using System.Linq;
using System.Threading.Tasks;
using UnityEditor;
using UnityEngine;
namespace Abuksigun.UnityGitUI
{
public static class GitConfigWindow
{
record Setting(string Name);
static Setting[] settingsList = { new("user.name"), new("user.email") };
[MenuItem("Assets/Git/Config", true)]
public static bool Check() => Utils.GetSelectedGitModules().Count() == 1;
[MenuItem("Assets/Git/Config")]
public static async Task Invoke()
{
var module = Utils.GetSelectedGitModules().FirstOrDefault();
if (module == null)
return;
var columnWidth = GUILayout.Width(200);
var valueWidth = GUILayout.Width(160);
var buttonWidth = GUILayout.Width(20);
await GUIUtils.ShowModalWindow("Git Config", new Vector2Int(1000, 700), window => {
using (new EditorGUILayout.HorizontalScope())
{
EditorGUILayout.SelectableLabel("Name", columnWidth);
foreach (var scope in Enum.GetValues(typeof(ConfigScope)).Cast<ConfigScope>())
EditorGUILayout.LabelField(scope.ToString(), columnWidth);
}
foreach (var setting in settingsList)
{
using (new EditorGUILayout.HorizontalScope())
{
EditorGUILayout.SelectableLabel(setting.Name, columnWidth);
foreach (var scope in Enum.GetValues(typeof(ConfigScope)).Cast<ConfigScope>())
{
var config = module.ConfigValue(setting.Name, scope).GetResultOrDefault();
if (scope != ConfigScope.None)
{
if (!string.IsNullOrEmpty(config) && GUILayout.Button("X", buttonWidth))
_ = module.UnsetConfig(setting.Name, scope);
if (string.IsNullOrEmpty(config) ? GUILayout.Button("Set value", columnWidth) : GUILayout.Button("E", buttonWidth))
_ = ShowChangeSettingWindow(module, setting, scope);
}
if (!string.IsNullOrEmpty(config))
EditorGUILayout.SelectableLabel(config, valueWidth);
}
}
}
});
}
static async Task ShowChangeSettingWindow(Module module, Setting setting, ConfigScope scope)
{
string newValue = await module.ConfigValue(setting.Name, scope);
await GUIUtils.ShowModalWindow("Set Value", new Vector2Int(300, 180), window => {
newValue = GUILayout.TextField(newValue);
using (new GUILayout.HorizontalScope())
{
if (GUILayout.Button("Close"))
{
window.Close();
}
if (GUILayout.Button("Apply"))
{
_ = module.SetConfig(setting.Name, scope, newValue);
window.Close();
}
}
});
}
}
}