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.
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class Reword : Popup
|
|
{
|
|
public Models.Commit Head
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
[Required(ErrorMessage = "Commit message is required!!!")]
|
|
public string Message
|
|
{
|
|
get => _message;
|
|
set => SetProperty(ref _message, value, true);
|
|
}
|
|
|
|
public Reword(Repository repo, Models.Commit head)
|
|
{
|
|
_repo = repo;
|
|
Head = head;
|
|
Message = head.FullMessage;
|
|
View = new Views.Reword() { DataContext = this };
|
|
}
|
|
|
|
public override Task<bool> Sure()
|
|
{
|
|
if (_message == Head.FullMessage)
|
|
return null;
|
|
|
|
_repo.SetWatcherEnabled(false);
|
|
ProgressDescription = $"Editing head commit message ...";
|
|
|
|
return Task.Run(() =>
|
|
{
|
|
var succ = new Commands.Commit(_repo.FullPath, _message, true, true).Exec();
|
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
|
return succ;
|
|
});
|
|
}
|
|
|
|
private readonly Repository _repo = null;
|
|
private string _message = string.Empty;
|
|
}
|
|
}
|