-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessLogWindow.cs
45 lines (40 loc) · 1.52 KB
/
ProcessLogWindow.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
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Abuksigun.UnityGitUI
{
class ProcessLogWindow : DefaultWindow
{
[SerializeField] string guid;
[SerializeField] bool onlyErrors;
[SerializeField] string filter;
protected override void OnGUI()
{
var modules = Utils.GetSelectedModules().ToList();
if (!modules.Any())
return;
using (new GUILayout.HorizontalScope())
{
GUILayout.Label("Filter:", GUILayout.Width(100));
filter = GUILayout.TextField(filter, GUILayout.Width(200));
onlyErrors = GUILayout.Toggle(onlyErrors, "Only Errors");
}
List<int> processIds = null;
if (!string.IsNullOrEmpty(filter))
processIds = modules.SelectMany(x => x.ProcessLog).Where(x => x.Data.Contains(filter)).Select(x => x.LocalProcessId).Distinct().ToList();
GUIUtils.DrawProcessLogs(modules, ref guid, position.size - Vector2.up * 15, (x) => (processIds == null || processIds.Contains(x.LocalProcessId)) && (!onlyErrors || x.Error));
base.OnGUI();
}
}
public static class ProcessLog
{
[MenuItem("Window/Git UI/Process Log")]
public static void Invoke()
{
var window = ScriptableObject.CreateInstance<ProcessLogWindow>();
window.titleContent = new GUIContent("Process Log");
window.Show();
}
}
}