handle cache data and add force reload button on swagger#18
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR introduces an always-on mock data caching layer (MockDataStore) so that generated mock data remains stable across requests (instead of being regenerated each time), and adds a "Rebuild Data" button to the Swagger UI that allows users to clear the cached mock data and regenerate it on the next request.
Changes:
- Added
MockDataStoreclass incache.tsthat caches both single-object mocks and array pools, independent of theconfig.cachesetting. - Integrated
mockDataStoreinto the route handler (router.ts) to serve cached mock data on subsequent requests and regenerate only on first access. - Added a
/mock-resetPOST endpoint and a custom Swagger UI toolbar with a "Rebuild Data" button that triggers cache clearing.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
src/core/cache.ts |
New MockDataStore class with singles/pools Maps, get/set/clear/getStats methods, and a global mockDataStore singleton. |
src/core/router.ts |
Updated dynamic route handler to check mockDataStore before generating new mock data for both array and single-object endpoints. |
src/server.ts |
Added /swagger-rebuild.js endpoint serving custom JS for the toolbar button, /mock-reset POST endpoint, and wired custom JS into Swagger UI setup. |
src/core/swagger.ts |
Added OpenAPI spec entry for the /mock-reset endpoint. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
No description provided.