Simplified Storybook preview setup & Centralized Checkbox variants#5683
Open
thomasvaeth wants to merge 3 commits intoInfisical:mainfrom
Open
Simplified Storybook preview setup & Centralized Checkbox variants#5683thomasvaeth wants to merge 3 commits intoInfisical:mainfrom
thomasvaeth wants to merge 3 commits intoInfisical:mainfrom
Conversation
Collaborator
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Contributor
Greptile SummaryThis PR makes two independent improvements to the frontend developer tooling: it simplifies Storybook's global setup by replacing a React-decorator-based DOM override ( Key changes:
Confidence Score: 5/5
Important Files Changed
Last reviewed commit: 3de81be |
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
This PR makes two small cleanup/refactor changes in the frontend Storybook and Checkbox component:
DocumentDecoratorwith a document-level override in.storybook/preview-head.htmlChanges
.storybook/decorators/DocumentDecorator.tsx.storybook/preview-head.htmlto sethtml { overflow: visible; }for the Storybook iframe.storybook/preview.tsxto stop usingDocumentDecoratorpreview-head.htmlexplaining why this belongs inpreview-headinstead of a decoratorcheckboxVariantOptionsfromsrc/components/v3/generic/Checkbox/Checkbox.tsxCheckboxVariantfrom that tuple and used it inCheckboxPropssrc/components/v3/generic/Checkbox/Checkbox.stories.tsxto usecheckboxVariantOptionsfor StorybookvariantcontrolsWhy
The Storybook change keeps document-level iframe styling in the place Storybook already provides for it, instead of using a React decorator for non-React behavior.
The Checkbox change avoids duplicating variant values between the component and its stories, which keeps types and Storybook controls in sync.
Testing
pnpm build-storybook