feat(playground): canonical /playgrounds/:id URL for One-linked playgrounds - #839
Merged
Merged
Conversation
…rounds Implements canonical URL routing for Vuetify One playgrounds: - Add pages/playgrounds/[id].vue for the canonical /playgrounds/:id route - Update useOnePlaygrounds to use vue-router for URL sync - Navigate to /playgrounds/:id when opening One playgrounds via push - Use replace for save operations (create/update) - Add redirect from legacy /?playground=<id> to /playgrounds/<id> - Preserve hash in all URL transitions Local/untitled playgrounds remain on / with hash-only share links. Fixes #838
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.
Summary
Implements canonical URL routing for Vuetify One playgrounds, making
/playgrounds/:idthe canonical URL for One-linked playgrounds (parity with play.vuetifyjs.com).Changes
New Route:
/playgrounds/:idpages/playgrounds/[id].vuefor the canonical playground route using vue-router/auto-routes file-based routingprovidePlaygroundRoutefor consumption byusePlaygroundFilesURL Navigation
useOnePlaygroundsto use vue-router for URL synchronization instead ofhistory.replaceStaterouter.pushfor explicit navigation (creates history entry)router.replacefor seamless URL updatesBackwards Compatibility
/?playground=<id>URLs redirect to/playgrounds/<id>with hash preserved/with hash-only share links unchangedDocumentation
intro.mdAcceptance Criteria
/playgrounds/:idloads that One playgroundrouter.push/replaceto/playgrounds/:id, preserving hash/(existing hash-only share links unchanged)/?playground=<id>→/playgrounds/<id>(preserve hash)Fixes #838