mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
96d4150d26
* remove dotnet-tool.json because the project does not rely on any dotnet tools. * remove Directory.Build.props because the solution has only one project. * move src/SourceGit to src. It's not needed to put all sources into a subfolder of src since there's only one project.
78 lines
2.2 KiB
C#
78 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class DiscardModeAll { }
|
|
public class DiscardModeSingle { public string File { get; set; } }
|
|
public class DiscardModeMulti { public int Count { get; set; } }
|
|
|
|
public class Discard : Popup
|
|
{
|
|
|
|
public object Mode
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public Discard(Repository repo)
|
|
{
|
|
_repo = repo;
|
|
|
|
Mode = new DiscardModeAll();
|
|
View = new Views.Discard { DataContext = this };
|
|
}
|
|
|
|
public Discard(Repository repo, List<Models.Change> changes, bool isUnstaged)
|
|
{
|
|
_repo = repo;
|
|
_changes = changes;
|
|
_isUnstaged = isUnstaged;
|
|
|
|
if (_changes == null)
|
|
{
|
|
Mode = new DiscardModeAll();
|
|
}
|
|
else if (_changes.Count == 1)
|
|
{
|
|
Mode = new DiscardModeSingle() { File = _changes[0].Path };
|
|
}
|
|
else
|
|
{
|
|
Mode = new DiscardModeMulti() { Count = _changes.Count };
|
|
}
|
|
|
|
View = new Views.Discard() { DataContext = this };
|
|
}
|
|
|
|
public override Task<bool> Sure()
|
|
{
|
|
_repo.SetWatcherEnabled(false);
|
|
ProgressDescription = _changes == null ? "Discard all local changes ..." : $"Discard total {_changes.Count} changes ...";
|
|
|
|
return Task.Run(() =>
|
|
{
|
|
if (_changes == null)
|
|
{
|
|
Commands.Discard.All(_repo.FullPath);
|
|
}
|
|
else if (_isUnstaged)
|
|
{
|
|
Commands.Discard.ChangesInWorkTree(_repo.FullPath, _changes);
|
|
}
|
|
else
|
|
{
|
|
Commands.Discard.ChangesInStaged(_repo.FullPath, _changes);
|
|
}
|
|
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return true;
|
|
});
|
|
}
|
|
|
|
private readonly Repository _repo = null;
|
|
private readonly List<Models.Change> _changes = null;
|
|
private readonly bool _isUnstaged = true;
|
|
}
|
|
}
|