mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 09:21:24 +08:00
035e418072
* chore: update js addEventListener & stringify event args * two blanks indent
64 lines
1.8 KiB
C#
64 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json;
|
|
using Microsoft.JSInterop;
|
|
|
|
namespace AntBlazor.JsInterop
|
|
{
|
|
public class DomEventService
|
|
{
|
|
private Dictionary<string, Func<object>> domEventListeners = new Dictionary<string, Func<object>>();
|
|
|
|
private readonly IJSRuntime _jsRuntime;
|
|
|
|
public DomEventService(IJSRuntime jsRuntime)
|
|
{
|
|
_jsRuntime = jsRuntime;
|
|
}
|
|
|
|
private void AddEventListenerInternal<T>(string dom, string eventName, Action<T> callback)
|
|
{
|
|
if (!domEventListeners.ContainsKey($"{dom}-{eventName}"))
|
|
{
|
|
_jsRuntime.InvokeAsync<string>(JSInteropConstants.addDomEventListener, dom, eventName, DotNetObjectReference.Create(new Invoker<T>((p) =>
|
|
{
|
|
callback?.Invoke(p);
|
|
})));
|
|
}
|
|
}
|
|
|
|
public void AddEventListener(string dom, string eventName, Action<JsonElement> callback)
|
|
{
|
|
AddEventListenerInternal<string>(dom, eventName, (e) =>
|
|
{
|
|
JsonElement jsonElement = JsonDocument.Parse(e).RootElement;
|
|
callback(jsonElement);
|
|
});
|
|
}
|
|
|
|
public void AddEventListener<T>(string dom, string eventName, Action<T> callback)
|
|
{
|
|
AddEventListenerInternal<string>(dom, eventName, (e) =>
|
|
{
|
|
T obj = JsonSerializer.Deserialize<T>(e);
|
|
callback(obj);
|
|
});
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
} |