using System.Threading.Tasks; namespace SourceGit.ViewModels { public class Reset : Popup { public Models.Branch Current { get; private set; } public Models.Commit To { get; private set; } public Models.ResetMode SelectedMode { get; set; } public Reset(Repository repo, Models.Branch current, Models.Commit to) { _repo = repo; Current = current; To = to; SelectedMode = Models.ResetMode.Supported[0]; View = new Views.Reset() { DataContext = this }; } public override Task Sure() { _repo.SetWatcherEnabled(false); ProgressDescription = $"Reset current branch to {To.SHA} ..."; return Task.Run(() => { var succ = new Commands.Reset(_repo.FullPath, To.SHA, SelectedMode.Arg).Exec(); CallUIThread(() => _repo.SetWatcherEnabled(true)); return succ; }); } private readonly Repository _repo = null; } }