29 lines
614 B
Plaintext
29 lines
614 B
Plaintext
@using GWMS.UI.Components
|
|
@using GWMS.Data.DatabaseModels
|
|
@using System.Security.Claims
|
|
@using Microsoft.AspNetCore.Components.Authorization
|
|
@using GWMS.UI.Data
|
|
@using Microsoft.Extensions.Configuration
|
|
@using Microsoft.JSInterop
|
|
|
|
@inject IJSRuntime JSRuntime
|
|
|
|
<div id="qrCodeImg"></div>
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
public string rawCode { get; set; } = "EmptyQr";
|
|
|
|
protected override async Task OnAfterRenderAsync(bool firstRender)
|
|
{
|
|
await InitDefault();
|
|
}
|
|
|
|
protected async Task InitDefault()
|
|
{
|
|
await JSRuntime.InvokeVoidAsync("displayQr", "qrCodeImg", rawCode);
|
|
}
|
|
|
|
}
|