feat(challenges): show adventure cards in the All view#75
Merged
Conversation
The All state on the Challenges page now renders AdventureCard items (one per adventure) instead of a flat grid of every individual level, matching the ChallengesGrid pattern on the homepage. The heading changes from "All Challenges" to "All Adventures" and the count reads "X adventures, Y challenges". Tag-filtered views are unchanged. - Add AdventureCard and ADVENTURE_SUMMARIES imports - Replace flat FilteredLevelCard grid with ADVENTURE_SUMMARIES.map(AdventureCard) - Update heading copy and count format - Update screen-reader live region announcement for cleared filter - Add challenges.test.tsx with 15 tests covering the new behavior - Update README.md route description and styleguide.md filter behaviour note Signed-off-by: Sinduri Guntupalli <sinduri.guntupalli@dynatrace.com>
Contributor
|
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.
The All state on the Challenges page now renders AdventureCard items (one per adventure) instead of a flat grid of every individual level, matching the ChallengesGrid pattern on the homepage. The heading changes from "All Challenges" to "All Adventures" and the count reads "X adventures, Y challenges". Tag-filtered views are unchanged.