2024-02-05 23:08:37 -08:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SourceGit.ViewModels {
|
|
|
|
|
public class DeleteSubmodule : Popup {
|
|
|
|
|
|
|
|
|
|
public string Submodule {
|
|
|
|
|
get;
|
|
|
|
|
private set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DeleteSubmodule(Repository repo, string submodule) {
|
|
|
|
|
_repo = repo;
|
|
|
|
|
Submodule = submodule;
|
|
|
|
|
View = new Views.DeleteSubmodule() { DataContext = this };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Task<bool> Sure() {
|
|
|
|
|
_repo.SetWatcherEnabled(false);
|
2024-02-25 19:29:57 -08:00
|
|
|
|
ProgressDescription = "Deleting submodule ...";
|
|
|
|
|
|
2024-02-05 23:08:37 -08:00
|
|
|
|
return Task.Run(() => {
|
|
|
|
|
var succ = new Commands.Submodule(_repo.FullPath).Delete(Submodule);
|
|
|
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
|
|
|
return succ;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Repository _repo = null;
|
|
|
|
|
}
|
|
|
|
|
}
|