mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
42 lines
1 KiB
C#
42 lines
1 KiB
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SourceGit.ViewModels
|
|||
|
{
|
|||
|
public class RemoveWorktree : Popup
|
|||
|
{
|
|||
|
public Models.Worktree Target
|
|||
|
{
|
|||
|
get;
|
|||
|
private set;
|
|||
|
} = null;
|
|||
|
|
|||
|
public bool Force
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
} = false;
|
|||
|
|
|||
|
public RemoveWorktree(Repository repo, Models.Worktree target)
|
|||
|
{
|
|||
|
_repo = repo;
|
|||
|
Target = target;
|
|||
|
View = new Views.RemoveWorktree() { DataContext = this };
|
|||
|
}
|
|||
|
|
|||
|
public override Task<bool> Sure()
|
|||
|
{
|
|||
|
_repo.SetWatcherEnabled(false);
|
|||
|
ProgressDescription = "Remove worktrees ...";
|
|||
|
|
|||
|
return Task.Run(() =>
|
|||
|
{
|
|||
|
var succ = new Commands.Worktree(_repo.FullPath).Remove(Target.FullPath, Force, SetProgressDescription);
|
|||
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|||
|
return succ;
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
private Repository _repo = null;
|
|||
|
}
|
|||
|
}
|