-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLadeForm.cs
83 lines (71 loc) · 1.83 KB
/
LadeForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using Timer = System.Timers.Timer;
namespace coIT.Toolkit.QuickActions;
public partial class LadeForm : Form
{
private Task _laufendeAktion;
private readonly Timer _timer;
public LadeForm(string ladeText, Func<Task> funktion, TimeSpan timeout)
{
InitializeComponent();
LadeText = ladeText;
Funktion = funktion;
_timer = new Timer(timeout);
_timer.Elapsed += OnTimeout;
_timer.Enabled = true;
}
public string LadeText { get; }
public Func<Task> Funktion { get; }
public int Timeout { get; }
private void OnTimeout(object sender, EventArgs e)
{
try
{
if (_laufendeAktion is not null && !_laufendeAktion.IsCompleted)
_laufendeAktion.Dispose();
}
finally
{
_timer.Dispose();
DialogResult = DialogResult.Abort;
Close();
}
}
private async void LadeForm_Load(object sender, EventArgs e)
{
lblStatus.Text = Text;
await FunktionAusführen();
Close();
}
public async Task FunktionAusführen()
{
try
{
_laufendeAktion = Funktion();
await _laufendeAktion;
DialogResult = DialogResult.OK;
}
catch (OperationCanceledException)
{
MessageBox.Show(
"Die Abfrage hat die maximal zulässige Dauer überschritten. Kontaktiere Jannes oder versuche es erneut.",
"Abfrage fehlgeschlagen",
MessageBoxButtons.OK,
MessageBoxIcon.Error
);
DialogResult = DialogResult.Abort;
}
catch (Exception ex)
{
//TODO: Workaround => Solange es kein CancellationToken gibt, läuft die Aktion weiter
if (IsDisposed)
return;
MessageBox.Show(
$"Kontaktiere Jannes bezüglich '{ex.Message}'",
"Abfrage fehlgeschlagen",
MessageBoxButtons.OK,
MessageBoxIcon.Error
);
DialogResult = DialogResult.Cancel;
}
}
}