mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
f20d863bc3
* Add TestDomEventService to TestBase * chore(tests): update to net5 * feat(testdomeventservice): override eventdomservice to null * fix(AddEventListener): make AddEventListener virtual * feat(test): add basic overlay test * fix(name): make name .cs
117 lines
4.3 KiB
C#
117 lines
4.3 KiB
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text.Json;
|
|
using Microsoft.JSInterop;
|
|
|
|
namespace AntDesign.JsInterop
|
|
{
|
|
public class DomEventService
|
|
{
|
|
private ConcurrentDictionary<string, List<DomEventSubscription>> _domEventListeners = new ConcurrentDictionary<string, List<DomEventSubscription>>();
|
|
|
|
private readonly IJSRuntime _jsRuntime;
|
|
|
|
public DomEventService(IJSRuntime jsRuntime)
|
|
{
|
|
_jsRuntime = jsRuntime;
|
|
}
|
|
|
|
private void AddEventListenerToFirstChildInternal<T>(object dom, string eventName, bool preventDefault, Action<T> callback)
|
|
{
|
|
if (!_domEventListeners.ContainsKey(FormatKey(dom, eventName)))
|
|
{
|
|
_jsRuntime.InvokeAsync<string>(JSInteropConstants.AddDomEventListenerToFirstChild, dom, eventName, preventDefault, DotNetObjectReference.Create(new Invoker<T>((p) =>
|
|
{
|
|
callback?.Invoke(p);
|
|
})));
|
|
}
|
|
}
|
|
|
|
public void AddEventListener(object dom, string eventName, Action<JsonElement> callback, bool exclusive = true, bool preventDefault = false)
|
|
{
|
|
AddEventListener<JsonElement>(dom, eventName, callback, exclusive, preventDefault);
|
|
}
|
|
|
|
public virtual void AddEventListener<T>(object dom, string eventName, Action<T> callback, bool exclusive = true, bool preventDefault = false)
|
|
{
|
|
if (exclusive)
|
|
{
|
|
_jsRuntime.InvokeAsync<string>(JSInteropConstants.AddDomEventListener, dom, eventName, preventDefault, DotNetObjectReference.Create(new Invoker<T>((p) =>
|
|
{
|
|
callback(p);
|
|
})));
|
|
}
|
|
else
|
|
{
|
|
string key = FormatKey(dom, eventName);
|
|
if (!_domEventListeners.ContainsKey(key))
|
|
{
|
|
_domEventListeners[key] = new List<DomEventSubscription>();
|
|
|
|
_jsRuntime.InvokeAsync<string>(JSInteropConstants.AddDomEventListener, dom, eventName, preventDefault, DotNetObjectReference.Create(new Invoker<string>((p) =>
|
|
{
|
|
for (var i = 0; i < _domEventListeners[key].Count; i++)
|
|
{
|
|
var subscription = _domEventListeners[key][i];
|
|
object tP = JsonSerializer.Deserialize(p, subscription.Type);
|
|
subscription.Delegate.DynamicInvoke(tP);
|
|
}
|
|
})));
|
|
}
|
|
_domEventListeners[key].Add(new DomEventSubscription(callback, typeof(T)));
|
|
}
|
|
}
|
|
|
|
public void AddEventListenerToFirstChild(object dom, string eventName, Action<JsonElement> callback, bool preventDefault = false)
|
|
{
|
|
AddEventListenerToFirstChildInternal<string>(dom, eventName, preventDefault, (e) =>
|
|
{
|
|
JsonElement jsonElement = JsonDocument.Parse(e).RootElement;
|
|
callback(jsonElement);
|
|
});
|
|
}
|
|
|
|
public void AddEventListenerToFirstChild<T>(object dom, string eventName, Action<T> callback, bool preventDefault = false)
|
|
{
|
|
AddEventListenerToFirstChildInternal<string>(dom, eventName, preventDefault, (e) =>
|
|
{
|
|
T obj = JsonSerializer.Deserialize<T>(e);
|
|
callback(obj);
|
|
});
|
|
}
|
|
|
|
private static string FormatKey(object dom, string eventName) => $"{dom}-{eventName}";
|
|
|
|
public void RemoveEventListerner<T>(object dom, string eventName, Action<T> callback)
|
|
{
|
|
string key = FormatKey(dom, eventName);
|
|
if (_domEventListeners.ContainsKey(key))
|
|
{
|
|
var subscription = _domEventListeners[key].SingleOrDefault(s => s.Delegate == (Delegate)callback);
|
|
if (subscription != null)
|
|
{
|
|
_domEventListeners[key].Remove(subscription);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public class Invoker<T>
|
|
{
|
|
private Action<T> _action;
|
|
|
|
public Invoker(Action<T> invoker)
|
|
{
|
|
this._action = invoker;
|
|
}
|
|
|
|
[JSInvokable]
|
|
public void Invoke(T param)
|
|
{
|
|
_action.Invoke(param);
|
|
}
|
|
}
|
|
}
|