ReportSystemUI accessible via Dependency Injection #10

Merged
Kocoder merged 8 commits from ReportSystem into main 2026-02-24 10:17:49 +00:00
16 changed files with 237 additions and 123 deletions
Showing only changes of commit 71d8059ee7 - Show all commits

View File

@@ -49,7 +49,14 @@
{
_showReportModal = false;
}
public Dictionary<string, object> ConstructParameterList(IReportable reportableEntity, object RenderModeBoundary) {
Dictionary<string, object> _parameters = new Dictionary<string, object>();
_parameters["ReportableEntity"] = _blackBoard;
_parameters["RenderModeBoundary"] = RenderModeBoundary;
return _parameters;
}
private async Task ReportEntry()
{
// Basic null checks to avoid runtime NREs

View File

@@ -13,7 +13,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Interfaces" Version="0.0.0-11" />
<PackageReference Include="Interfaces" Version="0.0.0-12" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.1" />

View File

@@ -12,7 +12,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Interfaces" Version="0.0.0-11" />
<PackageReference Include="Interfaces" Version="0.0.0-12" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>