feat(experimentation): add experiment creation wizard frontend#7596
Merged
Conversation
…nd use hooks to set timestamps
…th bordered cards
…and proper styling
…eature list query
…gn and update ReviewStep
… fix review layout and table styling
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Author
|
Thanks for the review, I have fixed all your comments. Concerning Storybook, noted, for now I have left them on the side but I will create the stories in the follow-up PR that uses backend filtering of MV |
…imentation-form-v1-frontend
talissoncosta
previously approved these changes
May 28, 2026
Contributor
talissoncosta
left a comment
There was a problem hiding this comment.
Missed some on the previous round.
Can you please check that ? No blockers tbh..
talissoncosta
previously approved these changes
May 28, 2026
talissoncosta
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.
Thanks for submitting a PR! Please check the boxes below:
docs/if required so people know about the feature.Changes
Builds on #7591 — adds the frontend for experiment creation as a 4-step wizard accessible from the environment sidebar.
New components:
ExperimentsPage— list/create mode toggle with empty state, experiment count, and "Create Experiment" CTACreateExperimentWizard— orchestrates the 4-step wizard with state management and API submissionWizardStepper— left sidebar step navigation with connecting lines, completion badges, and click-to-go-backWizardNavButtons— Back / Continue / Create Experiment navigationLivePreviewPanel— placeholder card (hidden on small breakpoints)ContentCard— reusable bordered card component (extracted for reuse across experimentation and warehouse UIs)VariationTable— read-only 3-column table (Name, Description, Value) matching the POC designSteps:
RTK Query service:
useGetExperimentsQuery— list experimentsuseCreateExperimentMutation— create experiment (status=created)Types:
Experiment,ExperimentStatusinresponses.tsgetExperiments,createExperimentinrequests.tsNot in scope:
typefilter on features endpoint (client-side MV filtering for now)How did you test this code?
ENV=local npm run devwith API running locallyexperimental_flagsflag and running migrations)