mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
103 lines
2.3 KiB
C#
103 lines
2.3 KiB
C#
using System.Collections.Generic;
|
|
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 int Depth
|
|
{
|
|
get;
|
|
set;
|
|
} = 0;
|
|
|
|
public List<RepositoryNode> SubNodes
|
|
{
|
|
get;
|
|
set;
|
|
} = [];
|
|
|
|
public void Edit()
|
|
{
|
|
if (PopupHost.CanCreatePopup())
|
|
PopupHost.ShowPopup(new EditRepositoryNode(this));
|
|
}
|
|
|
|
public void AddSubFolder()
|
|
{
|
|
if (PopupHost.CanCreatePopup())
|
|
PopupHost.ShowPopup(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()
|
|
{
|
|
if (PopupHost.CanCreatePopup())
|
|
PopupHost.ShowPopup(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;
|
|
}
|
|
}
|