ref(integrations): Reorganize pipeline components into per-provider folders#116334
Merged
evanpurkhiser merged 1 commit intoMay 28, 2026
Conversation
…olders Move each pipelineIntegrationX.tsx (and its spec) into integrationX/index.tsx under static/app/components/pipeline/, plus pipelineDummyProvider.tsx into dummyProvider/index.tsx. Update internal imports in registry.tsx and the two external imports of InstallationInfo. This gives each provider room to grow sibling modules (hooks, helpers, sub-components) without polluting the shared pipeline directory, and mirrors the per-provider layout used by the backend integrations packages. Pure rename; no behavior change.
Contributor
📊 Type Coverage Diff✅ No new type safety issues introduced. Coverage: 93.58% |
scttcper
approved these changes
May 28, 2026
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.
Each
pipelineIntegrationX.tsx(and its spec) moves into a per-provider folder understatic/app/components/pipeline/asintegrationX/index.tsx.pipelineDummyProvider.tsxsimilarly moves todummyProvider/index.tsx. Internal imports inregistry.tsxand the two external imports ofInstallationInfoare updated.The motivation is to give each provider room to grow sibling modules — custom hooks, helpers, sub-components — without polluting the shared pipeline directory. The first such sibling (
useDiscordAppDirectoryInstall) lands in a follow-up PR; this one is a pure rename with no behavior change.shared/,registry.tsx,modal,usePipeline,types,testUtils, andindex.storiesstay flat. Exported symbol names are unchanged.Verified:
pnpm typecheck,pnpm run lint:js, andpnpm test-ci components/pipeline(140/140) all pass.