using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
namespace SourceGit.UI {
///
/// Create or edit remote dialog.
///
public partial class Remote : UserControl {
private Git.Repository repo = null;
private Git.Remote remote = null;
public string RemoteName { get; set; }
public string RemoteUri { get; set; }
///
/// Constructor.
///
/// Opened repository
/// Editing remote
public Remote(Git.Repository opened, Git.Remote editing) {
repo = opened;
remote = editing;
if (remote != null) {
RemoteName = remote.Name;
RemoteUri = remote.URL;
}
InitializeComponent();
nameValidator.Repo = repo;
if (remote != null) {
title.Content = "Edit Remote";
} else {
title.Content = "Add New Remote";
}
}
///
/// Display this dialog.
///
///
///
public static void Show(Git.Repository opened, Git.Remote editing = null) {
App.Launcher.GetPopupManager(opened)?.Show(new Remote(opened, editing));
}
///
/// Commit request.
///
///
///
private async void Sure(object sender, RoutedEventArgs e) {
txtName.GetBindingExpression(TextBox.TextProperty).UpdateSource();
if (Validation.GetHasError(txtName)) return;
txtUrl.GetBindingExpression(TextBox.TextProperty).UpdateSource();
if (Validation.GetHasError(txtUrl)) return;
var popup = App.Launcher.GetPopupManager(repo);
popup?.Lock();
await Task.Run(() => {
if (remote != null) {
remote.Edit(repo, RemoteName, RemoteUri);
} else {
Git.Remote.Add(repo, RemoteName, RemoteUri);
}
});
popup?.Close(true);
}
///
/// Cancel.
///
///
///
private void Cancel(object sender, RoutedEventArgs e) {
App.Launcher.GetPopupManager(repo)?.Close();
}
}
}