-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathEditRepositoryNode.cs
63 lines (54 loc) · 1.53 KB
/
EditRepositoryNode.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
using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class EditRepositoryNode : Popup
{
public string Id
{
get => _id;
set => SetProperty(ref _id, value);
}
[Required(ErrorMessage = "Name is required!")]
public string Name
{
get => _name;
set => SetProperty(ref _name, value, true);
}
public int Bookmark
{
get => _bookmark;
set => SetProperty(ref _bookmark, value);
}
public bool IsRepository
{
get => _isRepository;
set => SetProperty(ref _isRepository, value);
}
public EditRepositoryNode(RepositoryNode node)
{
_node = node;
_id = node.Id;
_name = node.Name;
_isRepository = node.IsRepository;
_bookmark = node.Bookmark;
}
public override Task<bool> Sure()
{
bool needSort = _node.Name != _name;
_node.Name = _name;
_node.Bookmark = _bookmark;
if (needSort)
{
Preferences.Instance.SortByRenamedNode(_node);
Welcome.Instance.Refresh();
}
return null;
}
private RepositoryNode _node = null;
private string _id = null;
private string _name = null;
private bool _isRepository = false;
private int _bookmark = 0;
}
}