forked from sourcegit-scm/sourcegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepositoryNode.cs
More file actions
132 lines (113 loc) · 3.24 KB
/
Copy pathRepositoryNode.cs
File metadata and controls
132 lines (113 loc) · 3.24 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
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('\\', '/').TrimEnd('/');
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 Open()
{
if (IsRepository)
{
App.GetLauncher().OpenRepositoryInTab(this, null);
return;
}
foreach (var subNode in SubNodes)
subNode.Open();
}
public void Edit()
{
var activePage = App.GetLauncher().ActivePage;
if (activePage != null && activePage.CanCreatePopup())
activePage.Popup = new EditRepositoryNode(this);
}
public void AddSubFolder()
{
var activePage = App.GetLauncher().ActivePage;
if (activePage != null && activePage.CanCreatePopup())
activePage.Popup = new CreateGroup(this);
}
public void Move()
{
var activePage = App.GetLauncher().ActivePage;
if (activePage != null && activePage.CanCreatePopup())
activePage.Popup = new MoveRepositoryNode(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.GetLauncher().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;
}
}