You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
using Microsoft.JSInterop;
|
|
|
|
namespace Razor;
|
|
// This class provides an example of how JavaScript functionality can be wrapped
|
|
// in a .NET class for easy consumption. The associated JavaScript module is
|
|
// loaded on demand when first needed.
|
|
//
|
|
// This class can be registered as scoped DI service and then injected into Blazor
|
|
// components for use.
|
|
|
|
public class ExampleJsInterop : IAsyncDisposable
|
|
{
|
|
private readonly Lazy<Task<IJSObjectReference>> moduleTask;
|
|
|
|
public ExampleJsInterop(IJSRuntime jsRuntime)
|
|
{
|
|
moduleTask = new(() => jsRuntime.InvokeAsync<IJSObjectReference>(
|
|
"import", "./_content/Razor/exampleJsInterop.js").AsTask());
|
|
}
|
|
|
|
public async ValueTask<string> Prompt(string message)
|
|
{
|
|
var module = await moduleTask.Value;
|
|
return await module.InvokeAsync<string>("showPrompt", message);
|
|
}
|
|
|
|
public async ValueTask DisposeAsync()
|
|
{
|
|
if (moduleTask.IsValueCreated)
|
|
{
|
|
var module = await moduleTask.Value;
|
|
await module.DisposeAsync();
|
|
}
|
|
}
|
|
}
|
|
|