Simplify analyzer UI to single-input, core-result flow#54
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 08090f8718
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| <h3>드릴다운(근거 데이터)</h3> | ||
| <pre id="insightDrilldown">인사이트를 선택하면 근거 데이터가 표시됩니다.</pre> | ||
|
|
||
| <section class="advanced-only" hidden> |
There was a problem hiding this comment.
Remove permanent hidden flag from advanced controls section
The new <section class="advanced-only" hidden> makes all advanced controls permanently non-rendered, because setMode in app.js only toggles style.display for .advanced-only elements and never clears the hidden attribute. In this commit, that hidden section now contains both mode-toggle buttons and the multi/dashboard/geo inputs, so users cannot enter advanced mode or supply inputs required by multi/visualize flows from the UI.
Useful? React with 👍 / 👎.
Motivation
코드도 보여줘).Description
bitnet_tools/ui/index.htmlto present a single primarytextarea#question, a single#quickAnalyzeBtnand a focused result card (#summary), moved file/csv controls into a collapsed<details>section, and placed advanced debug outputs inside collapsed details.bitnet_tools/ui/app.jsto addUI.rawJsonandUI.codeDetailsreferences, addedCODE_REQUEST_PATTERN,shouldShowCodeBlock,formatCoreSummary, andrenderPrimaryResulthelpers, and wired analyze flow to render only the concise core result by default while showing the prompt block conditionally.bitnet_tools/ui/styles.cssto style the simplified panel and result card (.simple-panel,.result-card) and slightly widen the container for the new layout.advanced-onlysection so existing APIs and tests keep working.Testing
pytest -q tests/test_ui_contract.py tests/test_web.pyand all tests passed (17 passed).artifacts/simple-ui.png), which ran successfully.Codex Task