sourcegit/src/ViewModels/Reword.cs
leo 96d4150d26 project: reorganize the structure of the project.
* 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.
2024-04-02 20:00:33 +08:00

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;
}
}