ant-design-blazor/components/core/JsInterop/DomEventService.cs

94 lines
2.9 KiB
C#
Raw Normal View History

using System;
2019-12-16 18:48:03 +08:00
using System.Collections.Generic;
using System.Text.Json;
2019-12-16 18:48:03 +08:00
using Microsoft.JSInterop;
namespace AntBlazor.JsInterop
{
public class DomEventService
{
private Dictionary<string, Func<object>> _domEventListeners = new Dictionary<string, Func<object>>();
2019-12-16 18:48:03 +08:00
private readonly IJSRuntime _jsRuntime;
public DomEventService(IJSRuntime jsRuntime)
{
_jsRuntime = jsRuntime;
}
private void AddEventListenerInternal<T>(object dom, string eventName, Action<T> callback)
2019-12-16 18:48:03 +08:00
{
if (!_domEventListeners.ContainsKey($"{dom}-{eventName}"))
2019-12-16 18:48:03 +08:00
{
2020-03-11 16:40:07 +08:00
_jsRuntime.InvokeAsync<string>(JSInteropConstants.addDomEventListener, dom, eventName, DotNetObjectReference.Create(new Invoker<T>((p) =>
{
callback?.Invoke(p);
})));
2019-12-16 18:48:03 +08:00
}
}
private void AddEventListenerToFirstChildInternal<T>(object dom, string eventName, Action<T> callback)
{
if (!_domEventListeners.ContainsKey($"{dom}-{eventName}"))
{
_jsRuntime.InvokeAsync<string>(JSInteropConstants.addDomEventListenerToFirstChild, dom, eventName, DotNetObjectReference.Create(new Invoker<T>((p) =>
{
callback?.Invoke(p);
})));
}
}
public void AddEventListener(object dom, string eventName, Action<JsonElement> callback)
{
AddEventListenerInternal<string>(dom, eventName, (e) =>
{
JsonElement jsonElement = JsonDocument.Parse(e).RootElement;
callback(jsonElement);
});
}
public void AddEventListener<T>(object dom, string eventName, Action<T> callback)
{
AddEventListenerInternal<string>(dom, eventName, (e) =>
{
T obj = JsonSerializer.Deserialize<T>(e);
callback(obj);
});
}
public void AddEventListenerToFirstChild(object dom, string eventName, Action<JsonElement> callback)
{
AddEventListenerToFirstChildInternal<string>(dom, eventName, (e) =>
{
JsonElement jsonElement = JsonDocument.Parse(e).RootElement;
callback(jsonElement);
});
}
public void AddEventListenerToFirstChild<T>(object dom, string eventName, Action<T> callback)
{
AddEventListenerToFirstChildInternal<string>(dom, eventName, (e) =>
{
T obj = JsonSerializer.Deserialize<T>(e);
callback(obj);
});
}
2019-12-16 18:48:03 +08:00
}
2020-03-11 16:40:07 +08:00
public class Invoker<T>
2019-12-16 18:48:03 +08:00
{
private Action<T> _action;
2019-12-16 18:48:03 +08:00
2020-03-11 16:40:07 +08:00
public Invoker(Action<T> invoker)
2019-12-16 18:48:03 +08:00
{
this._action = invoker;
2019-12-16 18:48:03 +08:00
}
[JSInvokable]
2020-03-11 16:40:07 +08:00
public void Invoke(T param)
2019-12-16 18:48:03 +08:00
{
_action.Invoke(param);
2019-12-16 18:48:03 +08:00
}
}
}