mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
57 lines
1.8 KiB
C#
57 lines
1.8 KiB
C#
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace SourceGit.UI {
|
|
|
|
/// <summary>
|
|
/// Confirm to delete a remote
|
|
/// </summary>
|
|
public partial class DeleteRemote : UserControl {
|
|
private Git.Repository repo = null;
|
|
private string remote = null;
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="opened">Opened repository</param>
|
|
/// <param name="target">Remote to be deleted</param>
|
|
public DeleteRemote(Git.Repository opened, string target) {
|
|
InitializeComponent();
|
|
repo = opened;
|
|
remote = target;
|
|
remoteName.Content = target;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Show this dialog
|
|
/// </summary>
|
|
/// <param name="opened"></param>
|
|
/// <param name="remote"></param>
|
|
public static void Show(Git.Repository opened, string remote) {
|
|
var popup = App.Launcher.GetPopupManager(opened);
|
|
popup?.Show(new DeleteRemote(opened, remote));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delete
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private async void Sure(object sender, RoutedEventArgs e) {
|
|
var popup = App.Launcher.GetPopupManager(repo);
|
|
popup?.Lock();
|
|
await Task.Run(() => Git.Remote.Delete(repo, remote));
|
|
popup?.Close(true);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Cancel.
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void Cancel(object sender, RoutedEventArgs e) {
|
|
App.Launcher.GetPopupManager(repo)?.Close();
|
|
}
|
|
}
|
|
}
|