-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blazor GUI Interface #2
Comments
It's true with a large source to scan the output.html may become quite large -have only seen once but it is bound to happen for some users. We'll be prioritizing this alongside other goals for our General Audience release -TBD. |
Consider a rewrite using Blazor. You could do what ASA does and have an |
If we rewrite this in blazor we will could also host a live webassembly version |
We should create a new blazor UX that allows the user to load/save a JSON report and view it either via running the command line via "appinspector gui" or by visiting our hosted WASM on github pages. The GUI should have the ability to: |
.net 6.0 now allows using a blazor interface with maui. Maybe worth checking that out - create a blazor report viewer that can be distributed as a standalone app with maui. |
Is your feature request related to a problem? Please describe.
The local HTML file can get very large; architecturally, embedding everything in it may not be the best solution.
Describe the solution you'd like
Instead of generating a static HTML file, use a local web-server that serves the content. The advantage of this is that for large reports, we don't need to create a large HTML file, and can instead stream the results as needed, and potentially perform operations on the "server" instead of within the browser.
Describe alternatives you've considered
n/a
Additional context
n/a
The text was updated successfully, but these errors were encountered: