Closed
Conversation
- moved FileTreeProps into shared/types.ts - created backdrop of FileExplorer, taking FileTree function from OperationsPanel. TODO: reduce overhead of keeping other directories when clicked in FIleExplorer.
instead of dropdown, drills into hierarchy
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a “File Explorer” popout modal to reduce clutter in the OperationsPanel “Files” area by presenting file → assignment → conversation navigation via breadcrumbs.
Changes:
- Add
FileExplorermodal (portal + breadcrumb navigation) and wire it intoOperationsPanel. - Add UI styling for the new header button and modal layout.
- Introduce new shared interfaces (
FileTreeProps,PathStep) and add new icon assets for the explorer UI.
Reviewed changes
Copilot reviewed 5 out of 10 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| src/components/OperationsPanel.tsx | Adds “Directory” header button and renders the FileExplorer modal; exports FileTree using shared props type. |
| src/components/OperationsPanel.css | Adds layout/styles for the new files header + expand icon. |
| src/components/FileExplorer.tsx | New modal file explorer component using breadcrumbs and API calls to fetch assignments/conversations. |
| src/components/FileExplorer.css | New styling for the modal/backdrop and list rows. |
| shared/types.ts | Adds FileTreeProps and PathStep interfaces. |
| src/assets/message_bubble.png | New icon asset used by FileExplorer rows. |
| src/assets/expand_directory.png | New icon asset used for the “expand directory” button. |
| src/assets/exclamation.png | New icon asset used by FileExplorer assignment rows. |
| src/assets/close.png | New icon asset used by FileExplorer close button. |
| src/assets/back.png | New icon asset used by FileExplorer breadcrumb back button. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
added alt and aria-label to images
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.
addresses issue #14
add feature to expand directory by popping it out to front view of tool. intended to make it easier to see all files, assignments, and conversations in a more organized interface.
uses breadcrumbs instead of expanding dropdowns. also added new interface in shared/types.ts for future usage.