[Website] Remove obsolete Site Manager UI scaffolding - #4078
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Removes unreachable/obsolete Site Manager UI components and legacy full-screen overlay scaffolding, leaving only OverlaySection for the website’s remaining overlay usage.
Changes:
- Deleted
BlueprintsPanel,TemporarySiteNotice, andStorageTypecomponents (and their CSS modules). - Simplified
components/overlayto only exportOverlaySectionand trimmed overlay CSS accordingly. - Removed the stale
TemporarySiteNoticetest mock.
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| packages/playground/website/src/components/site-manager/temporary-site-notice/style.module.css | Deletes CSS for removed TemporarySiteNotice. |
| packages/playground/website/src/components/site-manager/temporary-site-notice/index.tsx | Deletes removed TemporarySiteNotice component implementation. |
| packages/playground/website/src/components/site-manager/storage-type/style.module.css | Deletes CSS for removed StorageType UI. |
| packages/playground/website/src/components/site-manager/storage-type/index.tsx | Deletes removed StorageType component implementation. |
| packages/playground/website/src/components/site-manager/site-info-panel/site-tool-panels.spec.tsx | Removes mock for deleted TemporarySiteNotice. |
| packages/playground/website/src/components/site-manager/blueprints-panel/style.module.css | Deletes CSS for removed BlueprintsPanel. |
| packages/playground/website/src/components/site-manager/blueprints-panel/index.tsx | Deletes obsolete BlueprintsPanel implementation. |
| packages/playground/website/src/components/overlay/style.module.css | Removes full-screen overlay styles, keeps only section-related styles. |
| packages/playground/website/src/components/overlay/index.tsx | Removes full Overlay* exports; keeps OverlaySection. |
💡 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.
This removes Site Manager UI code that no production import path can reach. Keeping it around makes the Dock code look broader than it is and leaves dead full-screen overlay pieces next to the one overlay helper the website still uses.
The branch deletes the old blueprints panel, temporary-site notice, and storage-type components. It also removes the stale
TemporarySiteNoticetest mock. The full-screenOverlay,OverlayHeader,OverlayBody,PlaygroundLogo, andoverlayStylesexports are gone, whileOverlaySectionstays becauseSavedPlaygroundsPanelstill imports it.This intentionally does not rename
SiteManager, change Dock behavior, alter the open-by-default experiment, or touch the publicoverlayquery parameter.Verified with:
I also opened the local website and checked the New Playground and Playgrounds panes at desktop and narrow viewport sizes. The pane structure, spacing, empty/current states, and gallery cards matched the expected Dock layouts. The deleted components were not mounted.