mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
- 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>
39 lines
975 B
C#
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;
|
|
}
|
|
}
|