refactor(ui,desktop,web): extract shared explorer tree utilities to @…#100
Merged
andrewmelchor merged 2 commits intomainfrom Mar 1, 2026
Merged
refactor(ui,desktop,web): extract shared explorer tree utilities to @…#100andrewmelchor merged 2 commits intomainfrom
andrewmelchor merged 2 commits intomainfrom
Conversation
…t-req/ui Consolidate duplicate explorer tree logic from desktop and web packages into a new shared @t-req/ui/explorer submodule. This eliminates code duplication and centralizes tree building, flattening, and file utilities. - Create packages/ui/src/explorer/ with shared types and utilities - Refactor desktop explorer to re-export from shared module - Refactor web workspace store to use shared explorer utilities - Add ./explorer export to packages/ui/package.json
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d7642363d6
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Greptile SummaryConsolidates duplicate explorer tree logic from desktop and web packages into a shared
Confidence Score: 4/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
subgraph Before["Before Refactoring"]
D1["desktop/explorer/tree.ts<br/>172 lines"]
D2["desktop/explorer/types.ts<br/>23 lines"]
D3["desktop/explorer/workspace-files.ts<br/>19 lines"]
D4["desktop/explorer/utils/request-workspace.ts<br/>41 lines"]
W1["web/stores/workspace.ts<br/>buildTree + sortNodes<br/>~150 lines duplicated"]
end
subgraph After["After Refactoring"]
UI["@t-req/ui/explorer/*<br/>Shared Module"]
UI1["ui/explorer/tree.ts<br/>175 lines"]
UI2["ui/explorer/types.ts<br/>20 lines"]
UI3["ui/explorer/workspace-files.ts<br/>19 lines"]
UI4["ui/explorer/request-workspace.ts<br/>41 lines"]
UI5["ui/explorer/index.ts<br/>22 lines barrel exports"]
DN["desktop/explorer/*<br/>Re-exports (41 lines total)"]
WN["web/stores/workspace.ts<br/>Uses shared utilities"]
UI --> UI1 & UI2 & UI3 & UI4 & UI5
UI1 & UI2 & UI3 & UI4 & UI5 --> DN
UI1 & UI2 --> WN
end
D1 -.->|moved| UI1
D2 -.->|moved| UI2
D3 -.->|moved| UI3
D4 -.->|moved| UI4
W1 -.->|refactored| WN
style UI fill:#e1f5e1
style DN fill:#fff4e1
style WN fill:#fff4e1
Last reviewed commit: d764236 |
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
Extracts duplicate explorer tree utilities into a shared
@t-req/ui/explorermodule to eliminate code duplication between the desktop and web packages. Consolidates 386 lines of duplicated code into 41 lines of shared exports, centralizing tree building, flattening, and file utilities for improved maintainability.Type of Change