From 85522380147846fd7705e826d3ff3fda2b07bdcc Mon Sep 17 00:00:00 2001 From: Filipe Melo Date: Fri, 12 Jul 2024 15:28:38 -0300 Subject: [PATCH 1/9] fix: emit collapse all event --- code/core/src/manager/container/Menu.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/core/src/manager/container/Menu.tsx b/code/core/src/manager/container/Menu.tsx index 02c28ca994a..ce1cce43422 100644 --- a/code/core/src/manager/container/Menu.tsx +++ b/code/core/src/manager/container/Menu.tsx @@ -6,6 +6,7 @@ import type { API, State } from '@storybook/core/manager-api'; import { shortcutToHumanString } from '@storybook/core/manager-api'; import { styled, useTheme } from '@storybook/core/theming'; import { CheckIcon, InfoIcon, ShareAltIcon, WandIcon } from '@storybook/icons'; +import { STORIES_COLLAPSE_ALL } from '@storybook/core/core-events'; const focusableUIElements = { storySearchField: 'storybook-explorer-searchfield', @@ -222,7 +223,7 @@ export const useMenu = ( () => ({ id: 'collapse', title: 'Collapse all', - onClick: () => api.collapseAll(), + onClick: () => api.emit(STORIES_COLLAPSE_ALL), right: enableShortcuts ? : null, }), [api, enableShortcuts, shortcutKeys] From 82228919d6b955aba7138600be2353a2ac788c7f Mon Sep 17 00:00:00 2001 From: Filipe Melo Date: Mon, 15 Jul 2024 15:09:29 -0300 Subject: [PATCH 2/9] fix: emit collapseAll event in shortcuts --- code/core/src/manager-api/modules/shortcuts.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/core/src/manager-api/modules/shortcuts.ts b/code/core/src/manager-api/modules/shortcuts.ts index 1d4708425c9..3fed16b5cb2 100644 --- a/code/core/src/manager-api/modules/shortcuts.ts +++ b/code/core/src/manager-api/modules/shortcuts.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/naming-convention */ import { global } from '@storybook/global'; -import { FORCE_REMOUNT, PREVIEW_KEYDOWN } from '@storybook/core/core-events'; +import { FORCE_REMOUNT, PREVIEW_KEYDOWN, STORIES_COLLAPSE_ALL } from '@storybook/core/core-events'; import type { ModuleFn } from '../lib/types'; @@ -356,7 +356,7 @@ export const init: ModuleFn = ({ store, fullAPI, provider }) => { break; } case 'collapseAll': { - fullAPI.collapseAll(); + fullAPI.emit(STORIES_COLLAPSE_ALL); break; } case 'expandAll': { From 57885602a11e48ec8abe41ab5380c6291db68bf0 Mon Sep 17 00:00:00 2001 From: Kasper Peulen Date: Wed, 31 Jul 2024 16:58:04 +0200 Subject: [PATCH 3/9] Fix check error --- .../src/preview-api/modules/store/csf/portable-stories.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/core/src/preview-api/modules/store/csf/portable-stories.test.ts b/code/core/src/preview-api/modules/store/csf/portable-stories.test.ts index 080a741677a..3306b24bb4f 100644 --- a/code/core/src/preview-api/modules/store/csf/portable-stories.test.ts +++ b/code/core/src/preview-api/modules/store/csf/portable-stories.test.ts @@ -127,7 +127,7 @@ describe('composeStory', () => { return context.canvas; }, }); - await composedStory.play({ canvasElement: null }); + await composedStory.play?.({ canvasElement: null }); expect(spy).toHaveBeenCalledWith( expect.objectContaining({ args: { From 0b6b35766dcd4f72ea00a506fe2601d7eac58be1 Mon Sep 17 00:00:00 2001 From: storybook-bot <32066757+storybook-bot@users.noreply.github.com> Date: Thu, 1 Aug 2024 09:28:34 +0000 Subject: [PATCH 4/9] Update CHANGELOG.md for v8.2.7 [skip ci] --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 444fe7ae0be..bdf5324fe23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 8.2.7 + +- CPC: Fix type usage in renderers - [#28745](https://github.com/storybookjs/storybook/pull/28745), thanks @ndelangen! +- Core: Introduce run over play in portable stories, and revert back play changes of 8.2 - [#28764](https://github.com/storybookjs/storybook/pull/28764), thanks @kasperpeulen! + ## 8.2.6 - CPC: Fix missing exports for addon-kit - [#28691](https://github.com/storybookjs/storybook/pull/28691), thanks @ndelangen! From d4b319db8d169c6843af1a3240d6bed0f8de1833 Mon Sep 17 00:00:00 2001 From: Filipe Melo Date: Thu, 1 Aug 2024 09:41:25 -0300 Subject: [PATCH 5/9] fix: emit expandAll event in shortcuts --- code/core/src/manager-api/modules/shortcuts.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/code/core/src/manager-api/modules/shortcuts.ts b/code/core/src/manager-api/modules/shortcuts.ts index 3fed16b5cb2..e65a7767faa 100644 --- a/code/core/src/manager-api/modules/shortcuts.ts +++ b/code/core/src/manager-api/modules/shortcuts.ts @@ -1,6 +1,11 @@ /* eslint-disable @typescript-eslint/naming-convention */ import { global } from '@storybook/global'; -import { FORCE_REMOUNT, PREVIEW_KEYDOWN, STORIES_COLLAPSE_ALL } from '@storybook/core/core-events'; +import { + FORCE_REMOUNT, + PREVIEW_KEYDOWN, + STORIES_COLLAPSE_ALL, + STORIES_EXPAND_ALL, +} from '@storybook/core/core-events'; import type { ModuleFn } from '../lib/types'; @@ -360,7 +365,7 @@ export const init: ModuleFn = ({ store, fullAPI, provider }) => { break; } case 'expandAll': { - fullAPI.expandAll(); + fullAPI.emit(STORIES_EXPAND_ALL); break; } case 'remount': { From 2db10ce90babccbb0dab457672342dceb9c8b7e2 Mon Sep 17 00:00:00 2001 From: Gert Hengeveld Date: Thu, 1 Aug 2024 17:13:56 +0200 Subject: [PATCH 6/9] Ignore code block in Chromatic to fix inconsistent snapshots --- code/core/assets/server/base-preview-body.html | 2 +- test-storybooks/standalone-preview/storybook.html | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/core/assets/server/base-preview-body.html b/code/core/assets/server/base-preview-body.html index b6314fd7590..110d2de9fe5 100644 --- a/code/core/assets/server/base-preview-body.html +++ b/code/core/assets/server/base-preview-body.html @@ -114,6 +114,6 @@ >. -
+
diff --git a/test-storybooks/standalone-preview/storybook.html b/test-storybooks/standalone-preview/storybook.html index 8982f5f79f6..5bf05197748 100644 --- a/test-storybooks/standalone-preview/storybook.html +++ b/test-storybooks/standalone-preview/storybook.html @@ -12,7 +12,9 @@
-
+
From 56d64964b3010ea5282eead84f4aec7e9cccbcac Mon Sep 17 00:00:00 2001 From: Kyle Gach Date: Thu, 1 Aug 2024 09:34:12 -0600 Subject: [PATCH 7/9] Add version callout to portable stories docs --- docs/api/portable-stories/portable-stories-jest.mdx | 4 ++++ docs/api/portable-stories/portable-stories-vitest.mdx | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docs/api/portable-stories/portable-stories-jest.mdx b/docs/api/portable-stories/portable-stories-jest.mdx index de7b50880af..352aea58e97 100644 --- a/docs/api/portable-stories/portable-stories-jest.mdx +++ b/docs/api/portable-stories/portable-stories-jest.mdx @@ -18,6 +18,10 @@ sidebar: Normally, Storybook composes a story and its [annotations](#annotations) automatically, as part of the [story pipeline](#story-pipeline). When using stories in Jest tests, you must handle the story pipeline yourself, which is what the [`composeStories`](#composestories) and [`composeStory`](#composestory) functions enable. + + The API specified here is available in Storybook `8.2.7` and up. If you're using an older version of Storybook, you can upgrade to the latest version (`npx storybook@latest upgrade`) to use this API. If you're unable to upgrade, you can use previous API, which uses the `.play()` method instead of `.run()`, but is otherwise identical. + + **Using `Next.js`?** You need to do three things differently when using portable stories in Jest with Next.js projects: diff --git a/docs/api/portable-stories/portable-stories-vitest.mdx b/docs/api/portable-stories/portable-stories-vitest.mdx index 84ad6619da5..f44d173dffc 100644 --- a/docs/api/portable-stories/portable-stories-vitest.mdx +++ b/docs/api/portable-stories/portable-stories-vitest.mdx @@ -22,6 +22,10 @@ sidebar: Normally, Storybook composes a story and its [annotations](#annotations) automatically, as part of the [story pipeline](#story-pipeline). When using stories in Vitest tests, you must handle the story pipeline yourself, which is what the [`composeStories`](#composestories) and [`composeStory`](#composestory) functions enable. + + The API specified here is available in Storybook `8.2.7` and up. If you're using an older version of Storybook, you can upgrade to the latest version (`npx storybook@latest upgrade`) to use this API. If you're unable to upgrade, you can use previous API, which uses the `.play()` method instead of `.run()`, but is otherwise identical. + + **Using `Next.js`?** Next.js requires specific configuration that is only available in [Jest](./portable-stories-jest.mdx). The portable stories API is not supported in Next.js with Vitest. From 59690e8cef4ca8b776140653201d4a6b3eb2cb38 Mon Sep 17 00:00:00 2001 From: Gert Hengeveld Date: Thu, 1 Aug 2024 20:52:55 +0200 Subject: [PATCH 8/9] Revert "Ignore code block in Chromatic to fix inconsistent snapshots" This reverts commit 2db10ce90babccbb0dab457672342dceb9c8b7e2. --- code/core/assets/server/base-preview-body.html | 2 +- test-storybooks/standalone-preview/storybook.html | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/code/core/assets/server/base-preview-body.html b/code/core/assets/server/base-preview-body.html index 110d2de9fe5..b6314fd7590 100644 --- a/code/core/assets/server/base-preview-body.html +++ b/code/core/assets/server/base-preview-body.html @@ -114,6 +114,6 @@ >. -
+
diff --git a/test-storybooks/standalone-preview/storybook.html b/test-storybooks/standalone-preview/storybook.html index 5bf05197748..8982f5f79f6 100644 --- a/test-storybooks/standalone-preview/storybook.html +++ b/test-storybooks/standalone-preview/storybook.html @@ -12,9 +12,7 @@
-
+
From 094382938297b32b7e6b20c5f879022c1cf66ce2 Mon Sep 17 00:00:00 2001 From: Gert Hengeveld Date: Thu, 1 Aug 2024 21:11:34 +0200 Subject: [PATCH 9/9] Raise the Chromatic threshold to ignore monospace font inconsistencies --- .../components/preview/Iframe.stories.tsx | 28 +++++++++++-------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/code/core/src/manager/components/preview/Iframe.stories.tsx b/code/core/src/manager/components/preview/Iframe.stories.tsx index 8f542b02927..d1817f6db7b 100644 --- a/code/core/src/manager/components/preview/Iframe.stories.tsx +++ b/code/core/src/manager/components/preview/Iframe.stories.tsx @@ -60,17 +60,23 @@ WorkingStory.parameters = { chromatic: { disable: true }, }; -export const MissingStory = () => ( -