fix: navbar active links, openapi error handling, memory leaks, and t… - #266
Open
AliceTenni wants to merge 1 commit into
Open
Conversation
…esting guide Fixes Pidoko257#205, Pidoko257#201, Pidoko257#207, and Pidoko257#198 Changes: - Add navbar active link highlighting with CSS styling (Pidoko257#205) * Active links now display with green color, font-weight 600, and bottom border * Docusaurus automatically applies navbar__link--active class - Handle missing openapi.yaml gracefully (Pidoko257#201) * Check for spec file existence before rendering * Show helpful error message with setup instructions instead of crashing * Prevents portal crash when spec is missing - Fix memory leaks in API testing widget (Pidoko257#207) * Add AbortController to cancel fetch requests on unmount * Implement DOM cleanup to remove Redoc event listeners * Add container ref for proper lifecycle management * Reduce memory overhead with optimized Redoc config options - Create comprehensive integration testing guide (Pidoko257#198) * Setup instructions with Jest configuration * Example test patterns: validation, errors, rate limiting, transactions * Best practices: test isolation, fixtures, helper functions, naming * Environment configuration and CI/CD examples * Troubleshooting section
|
@AliceTenni Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
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.
…esting guide
Fixes #205, #201, #207, and #198
Changes:
Add navbar active link highlighting with CSS styling (Fix Navbar Links Not Highlighting Active Page #205)
Handle missing openapi.yaml gracefully (Fix OpenAPI Spec Loading Errors When File is Missing #201)
Fix memory leaks in API testing widget (Fix Memory Leaks in API Testing Widget #207)
Create comprehensive integration testing guide (Create Integration Testing Setup Guide #198)
Closes #205
Closes #198
Closes #207
Closes #201