🧩 Split App.tsx into components, hooks, and modules - #5
Merged
Conversation
Break the 868-line App.tsx into a proper structure: chat/inspector/layout components, dedicated hooks (useChat, useTheme, useI18n, useCatalogData, useInspectorData), i18n translations, shared types, and a chat API module. App.tsx is now a thin composition root (86 lines) with no behaviour change.
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
Pure refactor — no behaviour change. Breaks the monolithic
App.tsx(868 lines) into components, hooks, i18n, types, and an API module.App.tsxis now a thin composition root: providers, routing, layout only.App.tsx: 868 → 86 lines
New tree
Verification
npx tsc --noEmit— cleannpm run lint— 0 warningsnpm run build— succeedsdocker compose up --build -d— all containers healthyState lifted out of the former
AppContent:suppliers/bidsintouseCatalogData,rightTabintoApp.tsx. Required because chat and inspector cross-reference each other (empty state shows counts, a successful response switches the right panel to Results). KeepsuseChatfree of inspector concepts.