mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
38 lines
No EOL
919 B
C#
38 lines
No EOL
919 B
C#
using System.Threading.Tasks;
|
|
|
|
using Avalonia.Collections;
|
|
using Avalonia.Threading;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class AssumeUnchangedManager
|
|
{
|
|
public AvaloniaList<string> Files { get; private set; }
|
|
|
|
public AssumeUnchangedManager(string repo)
|
|
{
|
|
_repo = repo;
|
|
Files = new AvaloniaList<string>();
|
|
|
|
Task.Run(() =>
|
|
{
|
|
var collect = new Commands.AssumeUnchanged(_repo).View();
|
|
Dispatcher.UIThread.Invoke(() =>
|
|
{
|
|
Files.AddRange(collect);
|
|
});
|
|
});
|
|
}
|
|
|
|
public void Remove(object param)
|
|
{
|
|
if (param is string file)
|
|
{
|
|
new Commands.AssumeUnchanged(_repo).Remove(file);
|
|
Files.Remove(file);
|
|
}
|
|
}
|
|
|
|
private readonly string _repo;
|
|
}
|
|
} |