feat(missioncontrol): add board column descriptions#3
Merged
Conversation
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.
This pull request significantly enhances the Mission Control board UI by introducing a rich metadata model for board columns, updating the rendering logic to display detailed descriptions and visual cues, and adding comprehensive tests to ensure correctness and prevent regressions. The changes improve both the user experience and maintainability of the codebase.
Mission Control column metadata and UI improvements:
MISSION_CONTROL_COLUMNSinui.ts, defining 14 columns with detailed metadata such as summaries, details, outcomes, skills, and a flag for core workflow steps. This enables richer display and logic for each column.generateBoardHTMLto useMISSION_CONTROL_COLUMNS, displaying summaries, outcomes, "Core" workflow pills, and expandable details for each column. Visual cues (e.g., colored headers for core columns) and accessibility improvements (native<details>for descriptions) were added. [1] [2] [3]Testing and reliability:
missioncontrol-column-descriptions.test.tsto verify that all columns have complete metadata and that the generated HTML includes the new summary, outcome, and details markup, as well as correct text for various columns.missioncontrol-inline-script-syntax.regression-1.test.ts) to ensure the inline JavaScript in the generated HTML parses correctly, preventing script boot failures.Rendering and update logic:
<details>elements is retained across polling updates.