using System.Threading.Tasks; namespace SourceGit.ViewModels { public class Checkout : Popup { public string Branch { get; private set; } public Models.DealWithLocalChanges PreAction { get => _repo.Settings.DealWithLocalChangesOnCheckoutBranch; set => _repo.Settings.DealWithLocalChangesOnCheckoutBranch = value; } public Checkout(Repository repo, string branch) { _repo = repo; Branch = branch; View = new Views.Checkout() { DataContext = this }; } public override Task Sure() { _repo.SetWatcherEnabled(false); ProgressDescription = $"Checkout '{Branch}' ..."; return Task.Run(() => { var changes = new Commands.CountLocalChangesWithoutUntracked(_repo.FullPath).Result(); var needPopStash = false; if (changes > 0) { if (PreAction == Models.DealWithLocalChanges.StashAndReaply) { SetProgressDescription("Stash local changes ..."); var succ = new Commands.Stash(_repo.FullPath).Push("CHECKOUT_AUTO_STASH"); if (!succ) { CallUIThread(() => _repo.SetWatcherEnabled(true)); return false; } needPopStash = true; } else if (PreAction == Models.DealWithLocalChanges.Discard) { SetProgressDescription("Discard local changes ..."); Commands.Discard.All(_repo.FullPath); } } SetProgressDescription("Checkout branch ..."); var rs = new Commands.Checkout(_repo.FullPath).Branch(Branch, SetProgressDescription); if (needPopStash) { SetProgressDescription("Re-apply local changes..."); rs = new Commands.Stash(_repo.FullPath).Pop("stash@{0}"); } CallUIThread(() => _repo.SetWatcherEnabled(true)); return rs; }); } private readonly Repository _repo = null; } }