mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
75 lines
1.9 KiB
C#
75 lines
1.9 KiB
C#
using System.Threading.Tasks;
|
|
|
|
using Avalonia.Collections;
|
|
using Avalonia.Threading;
|
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class LFSLocks : ObservableObject
|
|
{
|
|
public bool IsLoading
|
|
{
|
|
get => _isLoading;
|
|
private set => SetProperty(ref _isLoading, value);
|
|
}
|
|
|
|
public bool IsEmpty
|
|
{
|
|
get => _isEmpty;
|
|
private set => SetProperty(ref _isEmpty, value);
|
|
}
|
|
|
|
public AvaloniaList<Models.LFSLock> Locks
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public LFSLocks(string repo, string remote)
|
|
{
|
|
_repo = repo;
|
|
_remote = remote;
|
|
Locks = new AvaloniaList<Models.LFSLock>();
|
|
|
|
Task.Run(() =>
|
|
{
|
|
var collect = new Commands.LFS(_repo).Locks(_remote);
|
|
Dispatcher.UIThread.Invoke(() =>
|
|
{
|
|
if (collect.Count > 0)
|
|
Locks.AddRange(collect);
|
|
|
|
IsLoading = false;
|
|
IsEmpty = collect.Count == 0;
|
|
});
|
|
});
|
|
}
|
|
|
|
public void Unlock(Models.LFSLock lfsLock, bool force)
|
|
{
|
|
if (_isLoading)
|
|
return;
|
|
|
|
IsLoading = true;
|
|
Task.Run(() =>
|
|
{
|
|
var succ = new Commands.LFS(_repo).Unlock(_remote, lfsLock.ID, force);
|
|
Dispatcher.UIThread.Invoke(() =>
|
|
{
|
|
if (succ)
|
|
Locks.Remove(lfsLock);
|
|
|
|
IsLoading = false;
|
|
IsEmpty = Locks.Count == 0;
|
|
});
|
|
});
|
|
}
|
|
|
|
private string _repo;
|
|
private string _remote;
|
|
private bool _isLoading = true;
|
|
private bool _isEmpty = false;
|
|
}
|
|
}
|