-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathRepositoryNode.cs
113 lines (97 loc) · 2.72 KB
/
RepositoryNode.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
using System.Collections.Generic;
using System.IO;
using System.Text.Json.Serialization;
using CommunityToolkit.Mvvm.ComponentModel;
namespace SourceGit.ViewModels
{
public class RepositoryNode : ObservableObject
{
public string Id
{
get => _id;
set
{
var normalized = value.Replace('\\', '/');
SetProperty(ref _id, normalized);
}
}
public string Name
{
get => _name;
set => SetProperty(ref _name, value);
}
public int Bookmark
{
get => _bookmark;
set => SetProperty(ref _bookmark, value);
}
public bool IsRepository
{
get => _isRepository;
set => SetProperty(ref _isRepository, value);
}
public bool IsExpanded
{
get => _isExpanded;
set => SetProperty(ref _isExpanded, value);
}
[JsonIgnore]
public bool IsVisible
{
get => _isVisible;
set => SetProperty(ref _isVisible, value);
}
[JsonIgnore]
public bool IsInvalid
{
get => _isRepository && !Directory.Exists(_id);
}
[JsonIgnore]
public int Depth
{
get;
set;
} = 0;
public List<RepositoryNode> SubNodes
{
get;
set;
} = [];
public void Edit()
{
var activePage = App.GetLauncer().ActivePage;
if (activePage != null && activePage.CanCreatePopup())
activePage.Popup = new EditRepositoryNode(this);
}
public void AddSubFolder()
{
var activePage = App.GetLauncer().ActivePage;
if (activePage != null && activePage.CanCreatePopup())
activePage.Popup = new CreateGroup(this);
}
public void OpenInFileManager()
{
if (!IsRepository)
return;
Native.OS.OpenInFileManager(_id);
}
public void OpenTerminal()
{
if (!IsRepository)
return;
Native.OS.OpenTerminal(_id);
}
public void Delete()
{
var activePage = App.GetLauncer().ActivePage;
if (activePage != null && activePage.CanCreatePopup())
activePage.Popup = new DeleteRepositoryNode(this);
}
private string _id = string.Empty;
private string _name = string.Empty;
private bool _isRepository = false;
private int _bookmark = 0;
private bool _isExpanded = false;
private bool _isVisible = true;
}
}