feat: TemplateCustomizationsStep and compose POST (DEVEX-287)#26433
Open
jeremyruppel wants to merge 3 commits into
Open
feat: TemplateCustomizationsStep and compose POST (DEVEX-287)#26433jeremyruppel wants to merge 3 commits into
jeremyruppel wants to merge 3 commits into
Conversation
This was referenced Jun 16, 2026
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
51379b8 to
1adc078
Compare
8868d03 to
9ec0473
Compare
1adc078 to
d7194e4
Compare
df0f468 to
e41a23d
Compare
d7194e4 to
cb247fd
Compare
…and compose POST Implement the final wizard step and template creation flow: - Add createTemplateFromBuilder API client method and react-query mutation for POST /api/v2/templatebuilder/compose/template - Add TemplateCustomizationsStep with organization picker (OrganizationAutocomplete), name, display name, description, and icon picker (IconField) fields - Extend wizard state with name and icon fields; add toCreateTemplateRequest projection - Wire Create Template button to mutation; on success redirect to the new template's files page with justCreated state - Show mutation error inline on the customizations step - Disable Create Template button while mutation is pending - Require non-empty name to proceed on customizations step
…ct step renderer Move data-fetching concerns out of the PageView into the Page: - Move useQuery (bases) and useMutation (createTemplate) to TemplateBuilderPage via a container component - Pass resolved data and callbacks as props to TemplateBuilderPageView - Extract inline ternary chain into renderStepContent switch function - Extract canContinue logic into computeCanContinue switch function - Export StepId from steps.ts for use in the switch functions
…into Page Remove the unnecessary TemplateBuilderPageViewContainer component. All query/mutation state now lives directly in TemplateBuilderPage.
cb247fd to
c3d7b98
Compare
e41a23d to
6589566
Compare
This was referenced Jun 18, 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.

Part of the Template Builder wizard PR stack.
Frontend changes
TemplateCustomizationsStep: Final wizard step with org picker, icon picker, name/display name/description/icon fields, and redirect on success.
Refactor: Moved queries/mutation from PageView to Page container, extracted
renderStepContentswitch andcomputeCanContinueswitch into standalone functions.Note
Generated by Coder Agents on behalf of @jeremyruppel