Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Story globals improvements #28

Closed
wants to merge 5 commits into from

Conversation

rajitkhanna
Copy link

What I did:
• Further updates to storybookjs#28716
• Improve feature flag callouts
• Add API details to migration notes and clarify examples
Restructure guides to use sub-heading structure instead of snippet tabs - Offers ability to explain differences between APIs more thoroughly - Also a better experience, because users' tab preference will not apply across snippets
Clarify example snippets - Only demonstate one concept per snippet
Adjust heading levels
Add globals API reference section
Improve snippet filenames - Remove redundant storybook- prefix
Prose tweaks
Checklist for Contributors
Testing
Manual testing
Please review in locally running docs site.

Documentation

[x] Add or update documentation reflecting your changes
[ ] If you are deprecating/removing a feature, make sure to update
MIGRATION.MD
[x] When this PR is ready for testing, make sure to add ci:normal, ci:merged or ci:daily GH label to it to run a specific set of sandboxes. The particular set of sandboxes can be found in code/lib/cli/src/sandbox-templates.ts

[x] Make sure this PR contains one of the labels below:

bug: Internal changes that fixes incorrect behavior.
maintenance: User-facing maintenance tasks.
dependencies: Upgrading (sometimes downgrading) dependencies.
build: Internal-facing build tooling & test updates. Will not show up in release changelog.
cleanup: Minor cleanup style change. Will not show up in release changelog.
documentation: Documentation only changes. Will not show up in release changelog.
feature request: Introducing a new feature.
BREAKING CHANGE: Changes that break compatibility in some way with current major version.
other: Changes that don't fit in the above categories.

kylegach and others added 5 commits October 22, 2024 16:58
- Improve feature flag callouts
- Add API details to migration notes and clarify examples
- Restructure guides to use sub-heading structure instead of snippet tabs
    - Offers ability to explain differences between APIs more thoroughly
    - Also a better experience, because users' tab preference will not apply across snippets
- Clarify example snippets
    - Only demonstate one concept per snippet
- Adjust heading levels
- Add globals API reference section
- Improve snippet filenames
    - Remove redundant `storybook-` prefix
- Prose tweaks
- Explain globals API and feature flag once, at the top
- Reference that callout in consistent manner throughout page
- Wrap entire docs section in "feature flag callout" to better differentiate
- Remove headings for with/without feature flag sections
    - Headings will be removed in SB 9+, so they're not a stable reference
- Polish and details
- Make Viewport match structure and style of Backgrounds
Co-authored-by: jonniebigodes <[email protected]>
Copy link

@greptile-apps-local greptile-apps-local bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR Summary

This PR significantly updates and improves the documentation for Storybook's globals API, focusing on background and viewport configurations.

  • Added new files (addon-backgrounds-options-in-preview.md, addon-backgrounds-values-in-meta.md) demonstrating usage of the new globals API for backgrounds
  • Introduced addon-viewport-options-in-preview.md and addon-viewport-viewports-in-preview.md to clarify viewport configuration
  • Updated MIGRATION.md with changes from version 8.2.x to 8.3.x, including new parameters format for addons
  • Significantly revised docs/essentials/backgrounds.mdx and docs/essentials/viewport.mdx to incorporate the new globals API and improve overall clarity
  • Removed several outdated or redundant files to streamline documentation structure

27 file(s) reviewed, 3 comment(s)
Edit PR Review Bot Settings | Greptile


```ts filename=".storybook/preview.ts" renderer="common" language="ts"
// Replace your-framework with the framework you are using (e.g., react, vue3)
import { Preview } from '@storybook/your-framework';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: Import INITIAL_VIEWPORTS in TypeScript example for consistency

Suggested change
import { Preview } from '@storybook/your-framework';
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
import { Preview } from '@storybook/your-framework';

Comment on lines 1 to 3

```ts filename=".storybook/preview.ts" renderer="common" language="ts" tabTitle="globals-api"
// Replace your-framework with the framework you are using (e.g., react, vue3)
import { Preview } from '@storybook/your-framework';

const preview: Preview = {
parameters: {
backgrounds: {
options: {
dark: { name: 'Dark', value: '#333' },
light: { name: 'Light', value: '#F7F9F2' },
},
},
},
};

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: If this file is intentionally being emptied, it may be more appropriate to delete it entirely rather than leaving it as an empty file in the repository.

Comment on lines 114 to 120
const meta: Meta = {
component: 'demo-button',
globals: {
// 👇 Set background value for all component stories
backgrounds: { value: 'gray', grid: false },
},
};

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: For consistency with other examples, consider adding a type annotation for 'meta', e.g., 'const meta: Meta<HTMLElement> = {'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants