2024-02-05 23:08:37 -08:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SourceGit.ViewModels {
|
|
|
|
|
public class Revert : Popup {
|
|
|
|
|
public Models.Commit Target {
|
|
|
|
|
get;
|
|
|
|
|
private set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool AutoCommit {
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Revert(Repository repo, Models.Commit target) {
|
|
|
|
|
_repo = repo;
|
|
|
|
|
Target = target;
|
|
|
|
|
AutoCommit = true;
|
|
|
|
|
View = new Views.Revert() { DataContext = this };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Task<bool> Sure() {
|
|
|
|
|
_repo.SetWatcherEnabled(false);
|
2024-02-25 19:29:57 -08:00
|
|
|
|
ProgressDescription = $"Revert commit '{Target.SHA}' ...";
|
|
|
|
|
|
2024-02-05 23:08:37 -08:00
|
|
|
|
return Task.Run(() => {
|
|
|
|
|
var succ = new Commands.Revert(_repo.FullPath, Target.SHA, AutoCommit).Exec();
|
|
|
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
|
|
|
return succ;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Repository _repo = null;
|
|
|
|
|
}
|
|
|
|
|
}
|