sourcegit/src/ViewModels/GitFlowStart.cs

68 lines
2.1 KiB
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class GitFlowStart : Popup
{
[Required(ErrorMessage = "Name is required!!!")]
[RegularExpression(@"^[\w\-/\.#]+$", ErrorMessage = "Bad branch name format!")]
[CustomValidation(typeof(GitFlowStart), nameof(ValidateBranchName))]
public string Name
{
get => _name;
set => SetProperty(ref _name, value, true);
}
public string Prefix
{
get => _prefix;
}
2024-06-14 21:44:35 -07:00
public bool IsFeature => _type == "feature";
public bool IsRelease => _type == "release";
public bool IsHotfix => _type == "hotfix";
2024-06-14 21:44:35 -07:00
public GitFlowStart(Repository repo, string type)
{
_repo = repo;
_type = type;
2024-07-14 09:30:31 -07:00
_prefix = Commands.GitFlow.GetPrefix(repo.FullPath, type);
View = new Views.GitFlowStart() { DataContext = this };
}
public static ValidationResult ValidateBranchName(string name, ValidationContext ctx)
{
if (ctx.ObjectInstance is GitFlowStart starter)
{
var check = $"{starter._prefix}{name}";
foreach (var b in starter._repo.Branches)
{
if (b.FriendlyName == check)
return new ValidationResult("A branch with same name already exists!");
}
}
return ValidationResult.Success;
}
public override Task<bool> Sure()
{
_repo.SetWatcherEnabled(false);
return Task.Run(() =>
{
2024-06-14 21:44:35 -07:00
SetProgressDescription($"Git Flow - starting {_type} {_name} ...");
var succ = Commands.GitFlow.Start(_repo.FullPath, _type, _name);
CallUIThread(() => _repo.SetWatcherEnabled(true));
return succ;
});
}
2024-07-14 09:30:31 -07:00
private readonly Repository _repo;
private readonly string _type;
private readonly string _prefix;
private string _name = null;
}
}