2024-03-17 18:37:06 -07:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
using Avalonia.Collections;
|
|
|
|
|
|
2024-02-05 23:08:37 -08:00
|
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
namespace SourceGit.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class RepositoryNode : ObservableObject
|
|
|
|
|
{
|
|
|
|
|
public string Id
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
get => _id;
|
2024-03-17 18:37:06 -07:00
|
|
|
|
set
|
|
|
|
|
{
|
2024-02-29 21:40:12 -08:00
|
|
|
|
var normalized = value.Replace('\\', '/');
|
|
|
|
|
SetProperty(ref _id, normalized);
|
|
|
|
|
}
|
2024-02-05 23:08:37 -08:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public string Name
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
get => _name;
|
|
|
|
|
set => SetProperty(ref _name, value);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public int Bookmark
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
get => _bookmark;
|
|
|
|
|
set => SetProperty(ref _bookmark, value);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public bool IsRepository
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
get => _isRepository;
|
|
|
|
|
set => SetProperty(ref _isRepository, value);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public bool IsExpanded
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
get => _isExpanded;
|
|
|
|
|
set => SetProperty(ref _isExpanded, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public bool IsVisible
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
get => _isVisible;
|
|
|
|
|
set => SetProperty(ref _isVisible, value);
|
|
|
|
|
}
|
2024-03-17 18:37:06 -07:00
|
|
|
|
|
|
|
|
|
public AvaloniaList<RepositoryNode> SubNodes
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
get => _subNodes;
|
|
|
|
|
set => SetProperty(ref _subNodes, value);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public void Edit()
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new EditRepositoryNode(this));
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public void AddSubFolder()
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
if (PopupHost.CanCreatePopup()) PopupHost.ShowPopup(new CreateGroup(this));
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public void OpenInFileManager()
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
if (!IsRepository) return;
|
|
|
|
|
Native.OS.OpenInFileManager(_id);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public void OpenTerminal()
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
if (!IsRepository) return;
|
|
|
|
|
Native.OS.OpenTerminal(_id);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 18:37:06 -07:00
|
|
|
|
public void Delete()
|
|
|
|
|
{
|
2024-02-05 23:08:37 -08:00
|
|
|
|
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;
|
|
|
|
|
private AvaloniaList<RepositoryNode> _subNodes = new AvaloniaList<RepositoryNode>();
|
|
|
|
|
}
|
2024-03-17 18:37:06 -07:00
|
|
|
|
}
|