forked from bUnit-dev/bUnit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneralEventDispatchExtensions.cs
240 lines (208 loc) · 13.4 KB
/
GeneralEventDispatchExtensions.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
using AngleSharp;
using AngleSharp.Dom;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.RenderTree;
using Microsoft.AspNetCore.Components.Web;
using System;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Threading.Tasks;
namespace Egil.RazorComponents.Testing.EventDispatchExtensions
{
/// <summary>
/// General event dispatch helper extension methods.
/// </summary>
public static class GeneralEventDispatchExtensions
{
/// <summary>
/// Raises the event <paramref name="eventName"/> on the element <paramref name="element"/>
/// passing the <paramref name="eventArgs"/> to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <param name="eventName">The name of the event to raise (using on-form, e.g. <c>onclick</c>).</param>
/// <param name="eventArgs">The event arguments to pass to the event handler</param>
/// <returns></returns>
[SuppressMessage("Usage", "BL0006:Do not use RenderTree types", Justification = "<Pending>")]
public static Task TriggerEventAsync(this IElement element, string eventName, EventArgs eventArgs)
{
if (element is null) throw new ArgumentNullException(nameof(element));
var eventHandlerIdString = element.GetAttribute(Htmlizer.ToBlazorAttribute(eventName));
if (string.IsNullOrEmpty(eventHandlerIdString))
throw new ArgumentException($"The element does not have an event handler for the event '{eventName}'.");
var eventHandlerId = ulong.Parse(eventHandlerIdString, CultureInfo.InvariantCulture);
var renderer = element.Owner.Context.GetService<TestRenderer>();
if (renderer is null)
throw new InvalidOperationException($"Blazor events can only be raised on elements rendered with the Blazor test renderer '{nameof(TestRenderer)}'.");
return renderer.DispatchEventAsync(eventHandlerId, new EventFieldInfo(), eventArgs);
}
/// <summary>
/// Raises the <c>@onactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void Activate(this IElement element) => ActivateAsync(element);
/// <summary>
/// Raises the <c>@onactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task ActivateAsync(this IElement element) => TriggerEventAsync(element, "onactivate", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onbeforeactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void BeforeActivate(this IElement element) => BeforeActivateAsync(element);
/// <summary>
/// Raises the <c>@onbeforeactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task BeforeActivateAsync(this IElement element) => TriggerEventAsync(element, "onbeforeactivate", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onbeforedeactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void BeforeDeactivate(this IElement element) => BeforeDeactivateAsync(element);
/// <summary>
/// Raises the <c>@onbeforedeactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task BeforeDeactivateAsync(this IElement element) => TriggerEventAsync(element, "onbeforedeactivate", EventArgs.Empty);
/// <summary>
/// Raises the <c>@ondeactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void Deactivate(this IElement element) => DeactivateAsync(element);
/// <summary>
/// Raises the <c>@ondeactivate</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task DeactivateAsync(this IElement element) => TriggerEventAsync(element, "ondeactivate", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onended</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void Ended(this IElement element) => EndedAsync(element);
/// <summary>
/// Raises the <c>@onended</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task EndedAsync(this IElement element) => TriggerEventAsync(element, "onended", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onfullscreenchange</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void FullscreenChange(this IElement element) => FullscreenChangeAsync(element);
/// <summary>
/// Raises the <c>@onfullscreenchange</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task FullscreenChangeAsync(this IElement element) => TriggerEventAsync(element, "onfullscreenchange", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onfullscreenerror</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void FullscreenError(this IElement element) => FullscreenErrorAsync(element);
/// <summary>
/// Raises the <c>@onfullscreenerror</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task FullscreenErrorAsync(this IElement element) => TriggerEventAsync(element, "onfullscreenerror", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onloadeddata</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void LoadedData(this IElement element) => LoadedDataAsync(element);
/// <summary>
/// Raises the <c>@onloadeddata</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task LoadedDataAsync(this IElement element) => TriggerEventAsync(element, "onloadeddata", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onloadedmetadata</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void LoadedMetadata(this IElement element) => LoadedMetadataAsync(element);
/// <summary>
/// Raises the <c>@onloadedmetadata</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task LoadedMetadataAsync(this IElement element) => TriggerEventAsync(element, "onloadedmetadata", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onpointerlockchange</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void PointerlockChange(this IElement element) => PointerlockChangeAsync(element);
/// <summary>
/// Raises the <c>@onpointerlockchange</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task PointerlockChangeAsync(this IElement element) => TriggerEventAsync(element, "onpointerlockchange", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onpointerlockerror</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void PointerlockError(this IElement element) => PointerlockErrorAsync(element);
/// <summary>
/// Raises the <c>@onpointerlockerror</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task PointerlockErrorAsync(this IElement element) => TriggerEventAsync(element, "onpointerlockerror", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onreadystatechange</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void ReadystateChange(this IElement element) => ReadystateChangeAsync(element);
/// <summary>
/// Raises the <c>@onreadystatechange</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task ReadystateChangeAsync(this IElement element) => TriggerEventAsync(element, "onreadystatechange", EventArgs.Empty);
/// <summary>
/// Raises the <c>@onscroll</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
public static void Scroll(this IElement element) => ScrollAsync(element);
/// <summary>
/// Raises the <c>@onscroll</c> event on <paramref name="element"/>, passing an empty (<see cref="EventArgs.Empty"/>)
/// to the event handler.
/// </summary>
/// <param name="element">The element to raise the event on.</param>
/// <returns>A task that completes when the event handler is done.</returns>
public static Task ScrollAsync(this IElement element) => TriggerEventAsync(element, "onscroll", EventArgs.Empty);
}
}