feat: dashboard file-input modal system for WRITE commands (#113)#124
Closed
feat: dashboard file-input modal system for WRITE commands (#113)#124
Conversation
Add file analysis capabilities to the web dashboard: Frontend: - analysis.js: modal component system with file upload, validation (size, format), progress indicator - File Analysis panel with gclog and gclogdiff buttons - Result rendering panels for GC analysis and diff output - CSS: modal styles, form groups, result grid, color-coded recommendation severity Server: - POST /api/analyze/gclog: multipart file upload endpoint, parses and analyzes GC log, returns JSON - POST /api/analyze/gclogdiff: dual file upload, compares two GC logs with regression detection - argus-cli dependency added to server for parser/analyzer Signed-off-by: rlaope <piyrw9754@gmail.com>
Owner
Author
|
Merged to master in 47b75d3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Frontend Changes
analysis.jsβ modal component with file upload, validation, progress bar, result renderingindex.htmlβ File Analysis panel + modal HTML + result panelstyle.cssβ modal styles, form groups, result grid, severity colorsapp.jsβ wired upinitAnalysis()moduleServer Changes
POST /api/analyze/gclogβ upload GC log β JSON analysisPOST /api/analyze/gclogdiffβ upload 2 files β comparison JSONbuild.gradle.ktsβ added argus-cli dependency for parser/analyzer accessUX Flow
Test plan
./gradlew :argus-server:compileJavapassesCloses #113