Files
sourcegit/src/ViewModels/CreateGroup.cs
leo 40765826ce code_review: PR #1492
- Remove all synchronous method in commands
- `Command.ReadToEndAsync` now is protected method
- Rename `ResultAsync` to `GetResultAsync`
- Call `ConfigureAwait(false)` when there's no context

Signed-off-by: leo <longshuang@msn.cn>
2025-07-03 17:30:06 +08:00

39 lines
975 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class CreateGroup : Popup
{
[Required(ErrorMessage = "Group name is required!")]
public string Name
{
get => _name;
set => SetProperty(ref _name, value, true);
}
public CreateGroup(RepositoryNode parent)
{
_parent = parent;
}
public override Task<bool> Sure()
{
Preferences.Instance.AddNode(new RepositoryNode()
{
Id = Guid.NewGuid().ToString(),
Name = _name,
IsRepository = false,
IsExpanded = false,
}, _parent, true);
Welcome.Instance.Refresh();
return Task.FromResult(true);
}
private readonly RepositoryNode _parent = null;
private string _name = string.Empty;
}
}