diff --git a/lib/core-server/src/utils/stories-json.ts b/lib/core-server/src/utils/stories-json.ts index ce311eca5fb..193c6d2337d 100644 --- a/lib/core-server/src/utils/stories-json.ts +++ b/lib/core-server/src/utils/stories-json.ts @@ -2,13 +2,14 @@ import path from 'path'; import fs from 'fs-extra'; import glob from 'globby'; import { logger } from '@storybook/node-logger'; -import { Options } from '@storybook/core-common'; +// import { Options } from '@storybook/core-common'; import { readCsf } from '@storybook/csf-tools'; interface ExtractedStory { id: string; kind: string; name: string; + parameters: Record; } type ExtractedStories = Record; diff --git a/lib/csf-tools/src/CsfFile.ts b/lib/csf-tools/src/CsfFile.ts index cec6b76e405..ddd16ef7d42 100644 --- a/lib/csf-tools/src/CsfFile.ts +++ b/lib/csf-tools/src/CsfFile.ts @@ -18,6 +18,7 @@ interface Meta { interface Story { id: string; name: string; + parameters: Record; } const getMeta = (declaration: any): Meta => { @@ -89,9 +90,16 @@ export class CsfFile { isExportStory(decl.id.name, self._meta) ) { const { name } = decl.id; + const parameters = { + __id: toId(self._meta.title, name), + // FiXME: Template.bind({}); + __isArgsStory: + t.isArrowFunctionExpression(decl.init) && decl.init.params.length > 0, + }; self._stories[name] = { - id: toId(self._meta.title, name), + id: parameters.__id, name, + parameters, }; } }); diff --git a/lib/csf-tools/src/__testfixtures__/basic.snapshot b/lib/csf-tools/src/__testfixtures__/basic.snapshot index 4ea31ba7cff..f6ac902db29 100644 --- a/lib/csf-tools/src/__testfixtures__/basic.snapshot +++ b/lib/csf-tools/src/__testfixtures__/basic.snapshot @@ -8,15 +8,27 @@ exports[`csf extract basic 1`] = ` "stories": [ { "id": "foo-bar--a", - "name": "A" + "name": "A", + "parameters": { + "__id": "foo-bar--a", + "__isArgsStory": false + } }, { "id": "foo-bar--b", - "name": "Some story" + "name": "Some story", + "parameters": { + "__id": "foo-bar--b", + "__isArgsStory": true + } }, { "id": "foo-bar--d", - "name": "D" + "name": "D", + "parameters": { + "__id": "foo-bar--d", + "__isArgsStory": false + } } ] } diff --git a/lib/csf-tools/src/__testfixtures__/basic.stories.js b/lib/csf-tools/src/__testfixtures__/basic.stories.js index 12138317664..e27aa438345 100644 --- a/lib/csf-tools/src/__testfixtures__/basic.stories.js +++ b/lib/csf-tools/src/__testfixtures__/basic.stories.js @@ -6,7 +6,7 @@ const Template = (args) => {}; export const A = () => {}; -export const B = () => {}; +export const B = (args) => {}; B.storyName = 'Some story'; export const D = Template.bind({}); diff --git a/lib/csf-tools/src/__testfixtures__/exclude.snapshot b/lib/csf-tools/src/__testfixtures__/exclude.snapshot index 9e3595ec54d..430f461175e 100644 --- a/lib/csf-tools/src/__testfixtures__/exclude.snapshot +++ b/lib/csf-tools/src/__testfixtures__/exclude.snapshot @@ -12,11 +12,19 @@ exports[`csf extract exclude 1`] = ` "stories": [ { "id": "foo-bar-baz--a", - "name": "A" + "name": "A", + "parameters": { + "__id": "foo-bar-baz--a", + "__isArgsStory": false + } }, { "id": "foo-bar-baz--b", - "name": "Some story" + "name": "Some story", + "parameters": { + "__id": "foo-bar-baz--b", + "__isArgsStory": false + } } ] } diff --git a/lib/csf-tools/src/__testfixtures__/include.snapshot b/lib/csf-tools/src/__testfixtures__/include.snapshot index a7a095b0c6d..e003b3621e1 100644 --- a/lib/csf-tools/src/__testfixtures__/include.snapshot +++ b/lib/csf-tools/src/__testfixtures__/include.snapshot @@ -9,15 +9,27 @@ exports[`csf extract include 1`] = ` "stories": [ { "id": "foo-bar-baz--includea", - "name": "IncludeA" + "name": "IncludeA", + "parameters": { + "__id": "foo-bar-baz--includea", + "__isArgsStory": false + } }, { "id": "foo-bar-baz--includeb", - "name": "Some story" + "name": "Some story", + "parameters": { + "__id": "foo-bar-baz--includeb", + "__isArgsStory": false + } }, { "id": "foo-bar-baz--includec", - "name": "IncludeC" + "name": "IncludeC", + "parameters": { + "__id": "foo-bar-baz--includec", + "__isArgsStory": false + } } ] } diff --git a/lib/csf-tools/src/__testfixtures__/typescript.snapshot b/lib/csf-tools/src/__testfixtures__/typescript.snapshot index 80582a525d5..47ba7274771 100644 --- a/lib/csf-tools/src/__testfixtures__/typescript.snapshot +++ b/lib/csf-tools/src/__testfixtures__/typescript.snapshot @@ -8,15 +8,27 @@ exports[`csf extract typescript 1`] = ` "stories": [ { "id": "foo-bar-baz--a", - "name": "A" + "name": "A", + "parameters": { + "__id": "foo-bar-baz--a", + "__isArgsStory": false + } }, { "id": "foo-bar-baz--b", - "name": "Some story" + "name": "Some story", + "parameters": { + "__id": "foo-bar-baz--b", + "__isArgsStory": true + } }, { "id": "foo-bar-baz--c", - "name": "C" + "name": "C", + "parameters": { + "__id": "foo-bar-baz--c", + "__isArgsStory": false + } } ] } diff --git a/lib/csf-tools/src/__testfixtures__/typescript.stories.tsx b/lib/csf-tools/src/__testfixtures__/typescript.stories.tsx index dbf7e51dd18..22e380d78e7 100644 --- a/lib/csf-tools/src/__testfixtures__/typescript.stories.tsx +++ b/lib/csf-tools/src/__testfixtures__/typescript.stories.tsx @@ -11,7 +11,7 @@ const Template: Story = (args) => <>template; export const A: Story = () => <>A; -export const B = () => <>B; +export const B = (args: any) => <>B; B.storyName = 'Some story'; export const C = Template.bind({});