feat(playground): add multi-file editor with file explorer#10353
Open
JoshLove-msft wants to merge 3 commits intomicrosoft:mainfrom
Open
feat(playground): add multi-file editor with file explorer#10353JoshLove-msft wants to merge 3 commits intomicrosoft:mainfrom
JoshLove-msft wants to merge 3 commits intomicrosoft:mainfrom
Conversation
Add files, selectedFile to PlaygroundState. Normalize single-file content into files Record. Update compile function to write all files to virtual FS. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Add useMonacoModels hook for managing multiple Monaco editor models - Add file tree explorer panel that shows when multiple input files exist - Update EditorPanel to accept inputFiles, selectedInputFile props - Wire multi-file compile: write all files to BrowserHost, clear stale ones - Add normalized multi-file accessors to playground state Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- 13 tests for usePlaygroundState multi-file support - Tests cover: files normalization, isMultiFile, selectedFile defaults, onSelectedFileChange, onFilesChange, onFileContentChange - Add changeset for @typespec/playground Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Multi-file editor support for the TypeSpec playground
Adds the ability to work with multiple input files in the playground editor.
Changes
files,selectedFile, and normalized accessors toPlaygroundStateuseMonacoModelshook: Manages Monaco editor model lifecycle per file (create/update/dispose)FileTreeExplorercomponentBrowserHostvirtual FS and clears stale.tspfiles before each compilationinputFiles,selectedInputFile,onSelectedInputFileChangefrom playground stateusePlaygroundStatemulti-file supportFollow-up work