@storybook/codemod 0.0.0-pr-23609-sha-f47ef339

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/README.md +262 -0
  2. package/dist/index.d.ts +7 -0
  3. package/dist/index.js +1 -0
  4. package/dist/transforms/add-component-parameters.d.ts +22 -0
  5. package/dist/transforms/add-component-parameters.js +1 -0
  6. package/dist/transforms/csf-2-to-3.d.ts +8 -0
  7. package/dist/transforms/csf-2-to-3.js +3 -0
  8. package/dist/transforms/csf-hoist-story-annotations.d.ts +26 -0
  9. package/dist/transforms/csf-hoist-story-annotations.js +1 -0
  10. package/dist/transforms/mdx-to-csf.d.ts +7 -0
  11. package/dist/transforms/mdx-to-csf.js +61 -0
  12. package/dist/transforms/move-builtin-addons.d.ts +3 -0
  13. package/dist/transforms/move-builtin-addons.js +1 -0
  14. package/dist/transforms/storiesof-to-csf.d.ts +24 -0
  15. package/dist/transforms/storiesof-to-csf.js +1 -0
  16. package/dist/transforms/update-addon-info.d.ts +27 -0
  17. package/dist/transforms/update-addon-info.js +1 -0
  18. package/dist/transforms/update-organisation-name.d.ts +25 -0
  19. package/dist/transforms/update-organisation-name.js +1 -0
  20. package/dist/transforms/upgrade-deprecated-types.d.ts +10 -0
  21. package/dist/transforms/upgrade-deprecated-types.js +2 -0
  22. package/dist/transforms/upgrade-hierarchy-separators.d.ts +3 -0
  23. package/dist/transforms/upgrade-hierarchy-separators.js +1 -0
  24. package/jest.config.js +9 -0
  25. package/package.json +102 -0
  26. package/project.json +6 -0
  27. package/src/index.ts +103 -0
  28. package/src/lib/utils.test.js +9 -0
  29. package/src/lib/utils.ts +29 -0
  30. package/src/transforms/__testfixtures__/add-component-parameters/add-component-parameters.input.js +44 -0
  31. package/src/transforms/__testfixtures__/add-component-parameters/add-component-parameters.output.snapshot +68 -0
  32. package/src/transforms/__testfixtures__/csf-hoist-story-annotations/basic.input.js +25 -0
  33. package/src/transforms/__testfixtures__/csf-hoist-story-annotations/basic.output.snapshot +27 -0
  34. package/src/transforms/__testfixtures__/csf-hoist-story-annotations/overrides.input.js +25 -0
  35. package/src/transforms/__testfixtures__/csf-hoist-story-annotations/overrides.output.snapshot +28 -0
  36. package/src/transforms/__testfixtures__/csf-hoist-story-annotations/variable.input.js +13 -0
  37. package/src/transforms/__testfixtures__/csf-hoist-story-annotations/variable.output.snapshot +17 -0
  38. package/src/transforms/__testfixtures__/mdx-to-csf/basic.input.mdx +18 -0
  39. package/src/transforms/__testfixtures__/mdx-to-csf/basic.output.snapshot +40 -0
  40. package/src/transforms/__testfixtures__/mdx-to-csf/component-id.input.mdx +6 -0
  41. package/src/transforms/__testfixtures__/mdx-to-csf/component-id.output.snapshot +17 -0
  42. package/src/transforms/__testfixtures__/mdx-to-csf/decorators.input.mdx +8 -0
  43. package/src/transforms/__testfixtures__/mdx-to-csf/decorators.output.snapshot +18 -0
  44. package/src/transforms/__testfixtures__/mdx-to-csf/exclude-stories.input.mdx +19 -0
  45. package/src/transforms/__testfixtures__/mdx-to-csf/exclude-stories.output.snapshot +39 -0
  46. package/src/transforms/__testfixtures__/mdx-to-csf/parameters.input.mdx +14 -0
  47. package/src/transforms/__testfixtures__/mdx-to-csf/parameters.output.snapshot +23 -0
  48. package/src/transforms/__testfixtures__/mdx-to-csf/plaintext.input.mdx +3 -0
  49. package/src/transforms/__testfixtures__/mdx-to-csf/plaintext.output.snapshot +11 -0
  50. package/src/transforms/__testfixtures__/mdx-to-csf/story-function.input.mdx +10 -0
  51. package/src/transforms/__testfixtures__/mdx-to-csf/story-function.output.snapshot +18 -0
  52. package/src/transforms/__testfixtures__/mdx-to-csf/story-parameters.input.mdx +18 -0
  53. package/src/transforms/__testfixtures__/mdx-to-csf/story-parameters.output.snapshot +32 -0
  54. package/src/transforms/__testfixtures__/mdx-to-csf/story-refs.input.mdx +22 -0
  55. package/src/transforms/__testfixtures__/mdx-to-csf/story-refs.output.snapshot +34 -0
  56. package/src/transforms/__testfixtures__/move-builtin-addons/default.input.js +2 -0
  57. package/src/transforms/__testfixtures__/move-builtin-addons/default.output.snapshot +8 -0
  58. package/src/transforms/__testfixtures__/move-builtin-addons/with-no-change.input.js +3 -0
  59. package/src/transforms/__testfixtures__/move-builtin-addons/with-no-change.output.snapshot +7 -0
  60. package/src/transforms/__testfixtures__/storiesof-to-csf/basic.input.js +18 -0
  61. package/src/transforms/__testfixtures__/storiesof-to-csf/basic.output.snapshot +45 -0
  62. package/src/transforms/__testfixtures__/storiesof-to-csf/collision.input.js +11 -0
  63. package/src/transforms/__testfixtures__/storiesof-to-csf/collision.output.snapshot +38 -0
  64. package/src/transforms/__testfixtures__/storiesof-to-csf/const.input.js +1 -0
  65. package/src/transforms/__testfixtures__/storiesof-to-csf/const.output.snapshot +13 -0
  66. package/src/transforms/__testfixtures__/storiesof-to-csf/decorators.input.js +9 -0
  67. package/src/transforms/__testfixtures__/storiesof-to-csf/decorators.output.snapshot +18 -0
  68. package/src/transforms/__testfixtures__/storiesof-to-csf/default.input.js +7 -0
  69. package/src/transforms/__testfixtures__/storiesof-to-csf/default.output.snapshot +17 -0
  70. package/src/transforms/__testfixtures__/storiesof-to-csf/digit.input.js +1 -0
  71. package/src/transforms/__testfixtures__/storiesof-to-csf/digit.output.js +5 -0
  72. package/src/transforms/__testfixtures__/storiesof-to-csf/digit.output.snapshot +9 -0
  73. package/src/transforms/__testfixtures__/storiesof-to-csf/export-destructuring.input.js +11 -0
  74. package/src/transforms/__testfixtures__/storiesof-to-csf/export-destructuring.output.snapshot +23 -0
  75. package/src/transforms/__testfixtures__/storiesof-to-csf/export-function.input.js +12 -0
  76. package/src/transforms/__testfixtures__/storiesof-to-csf/export-function.output.snapshot +23 -0
  77. package/src/transforms/__testfixtures__/storiesof-to-csf/export-names.input.js +14 -0
  78. package/src/transforms/__testfixtures__/storiesof-to-csf/export-names.output.snapshot +26 -0
  79. package/src/transforms/__testfixtures__/storiesof-to-csf/exports.input.js +2 -0
  80. package/src/transforms/__testfixtures__/storiesof-to-csf/exports.output.snapshot +16 -0
  81. package/src/transforms/__testfixtures__/storiesof-to-csf/module.input.js +12 -0
  82. package/src/transforms/__testfixtures__/storiesof-to-csf/module.output.snapshot +16 -0
  83. package/src/transforms/__testfixtures__/storiesof-to-csf/multi.input.js +14 -0
  84. package/src/transforms/__testfixtures__/storiesof-to-csf/multi.output.snapshot +39 -0
  85. package/src/transforms/__testfixtures__/storiesof-to-csf/parameters-as-var.input.js +8 -0
  86. package/src/transforms/__testfixtures__/storiesof-to-csf/parameters-as-var.output.snapshot +20 -0
  87. package/src/transforms/__testfixtures__/storiesof-to-csf/parameters.input.js +10 -0
  88. package/src/transforms/__testfixtures__/storiesof-to-csf/parameters.output.snapshot +23 -0
  89. package/src/transforms/__testfixtures__/storiesof-to-csf/storiesof-var.input.js +11 -0
  90. package/src/transforms/__testfixtures__/storiesof-to-csf/storiesof-var.output.snapshot +23 -0
  91. package/src/transforms/__testfixtures__/storiesof-to-csf/story-decorators.input.js +11 -0
  92. package/src/transforms/__testfixtures__/storiesof-to-csf/story-decorators.output.snapshot +29 -0
  93. package/src/transforms/__testfixtures__/storiesof-to-csf/story-parameters.input.js +14 -0
  94. package/src/transforms/__testfixtures__/storiesof-to-csf/story-parameters.output.snapshot +32 -0
  95. package/src/transforms/__testfixtures__/update-addon-info/update-addon-info.input.js +184 -0
  96. package/src/transforms/__testfixtures__/update-addon-info/update-addon-info.output.snapshot +184 -0
  97. package/src/transforms/__testfixtures__/update-organisation-name/update-organisation-name.input.js +19 -0
  98. package/src/transforms/__testfixtures__/update-organisation-name/update-organisation-name.output.snapshot +23 -0
  99. package/src/transforms/__testfixtures__/upgrade-hierarchy-separators/csf.input.js +3 -0
  100. package/src/transforms/__testfixtures__/upgrade-hierarchy-separators/csf.output.snapshot +7 -0
  101. package/src/transforms/__testfixtures__/upgrade-hierarchy-separators/dynamic-storiesof.input.js +5 -0
  102. package/src/transforms/__testfixtures__/upgrade-hierarchy-separators/dynamic-storiesof.output.snapshot +9 -0
  103. package/src/transforms/__testfixtures__/upgrade-hierarchy-separators/storiesof.input.js +8 -0
  104. package/src/transforms/__testfixtures__/upgrade-hierarchy-separators/storiesof.output.snapshot +12 -0
  105. package/src/transforms/__tests__/csf-2-to-3.test.ts +439 -0
  106. package/src/transforms/__tests__/mdx-to-csf.test.ts +628 -0
  107. package/src/transforms/__tests__/transforms.tests.js +32 -0
  108. package/src/transforms/__tests__/upgrade-deprecated-types.test.ts +170 -0
  109. package/src/transforms/add-component-parameters.js +62 -0
  110. package/src/transforms/csf-2-to-3.ts +336 -0
  111. package/src/transforms/csf-hoist-story-annotations.js +97 -0
  112. package/src/transforms/mdx-to-csf.ts +340 -0
  113. package/src/transforms/move-builtin-addons.js +32 -0
  114. package/src/transforms/storiesof-to-csf.js +277 -0
  115. package/src/transforms/update-addon-info.js +114 -0
  116. package/src/transforms/update-organisation-name.js +71 -0
  117. package/src/transforms/upgrade-deprecated-types.ts +142 -0
  118. package/src/transforms/upgrade-hierarchy-separators.js +39 -0
  119. package/tsconfig.json +10 -0
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import Button from './Button';
3
+
4
+ const foo = {
5
+ title: 'Button',
6
+ };
7
+
8
+ export default foo;
9
+
10
+ const bar = () => <Button label="Story 1" />;
11
+ bar.story = { name: 'bar bar' };
12
+
13
+ export const story1 = bar;
@@ -0,0 +1,17 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`csf-hoist-story-annotations transforms correctly using "variable.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import Button from './Button';
6
+
7
+ const foo = {
8
+ title: 'Button',
9
+ };
10
+
11
+ export default foo;
12
+
13
+ const bar = () => <Button label=\\"Story 1\\" />;
14
+ bar.story = { name: 'bar bar' };
15
+
16
+ export const story1 = bar;"
17
+ `;
@@ -0,0 +1,18 @@
1
+ import Button from './Button';
2
+ import { action } from '@storybook/addon-actions';
3
+ import { Meta, Story } from '@storybook/addon-docs';
4
+
5
+ <Meta title='Button' />
6
+
7
+ <Story name='story1'><Button label='Story 1' /></Story>
8
+
9
+ <Story name='second story'><Button label='Story 2' onClick={action('click')} /></Story>
10
+
11
+ <Story name='complex story'><div>
12
+ <Button label='The Button' onClick={action('onClick')} />
13
+ <br />
14
+ </div></Story>
15
+
16
+ <Story name='w/punctuation'>
17
+ <Button label='w/punctuation'/>
18
+ </Story>
@@ -0,0 +1,40 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "basic.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import Button from './Button';
6
+ import { action } from '@storybook/addon-actions';
7
+
8
+ export default {
9
+ title: 'Button',
10
+ };
11
+
12
+ export const Story1 = () => <Button label=\\"Story 1\\" />;
13
+
14
+ Story1.story = {
15
+ name: 'story1',
16
+ };
17
+
18
+ export const SecondStory = () => <Button label=\\"Story 2\\" onClick={action('click')} />;
19
+
20
+ SecondStory.story = {
21
+ name: 'second story',
22
+ };
23
+
24
+ export const ComplexStory = () => (
25
+ <div>
26
+ <Button label=\\"The Button\\" onClick={action('onClick')} />
27
+ <br />
28
+ </div>
29
+ );
30
+
31
+ ComplexStory.story = {
32
+ name: 'complex story',
33
+ };
34
+
35
+ export const WPunctuation = () => <Button label=\\"w/punctuation\\" />;
36
+
37
+ WPunctuation.story = {
38
+ name: 'w/punctuation',
39
+ };"
40
+ `;
@@ -0,0 +1,6 @@
1
+ import Button from './Button';
2
+ import { Meta, Story } from '@storybook/addon-docs';
3
+
4
+ <Meta title='Button' id="button-id" />
5
+
6
+ <Story name='story1'><Button label='Story 1' /></Story>
@@ -0,0 +1,17 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "component-id.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import Button from './Button';
6
+
7
+ export default {
8
+ title: 'Button',
9
+ id: 'button-id',
10
+ };
11
+
12
+ export const Story1 = () => <Button label=\\"Story 1\\" />;
13
+
14
+ Story1.story = {
15
+ name: 'story1',
16
+ };"
17
+ `;
@@ -0,0 +1,8 @@
1
+ import Button from './Button';
2
+ import { Meta, Story } from '@storybook/addon-docs';
3
+
4
+ <Meta
5
+ title='Some.Button'
6
+ decorators={[withKnobs, storyFn => <div className='foo'>{storyFn}</div>]} />
7
+
8
+ <Story name='with decorator' decorators={[withKnobs]}><Button label='The Button' /></Story>
@@ -0,0 +1,18 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "decorators.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import Button from './Button';
6
+
7
+ export default {
8
+ title: 'Some.Button',
9
+ decorators: [withKnobs, (storyFn) => <div className=\\"foo\\">{storyFn}</div>],
10
+ };
11
+
12
+ export const WithDecorator = () => <Button label=\\"The Button\\" />;
13
+
14
+ WithDecorator.story = {
15
+ name: 'with decorator',
16
+ decorators: [withKnobs],
17
+ };"
18
+ `;
@@ -0,0 +1,19 @@
1
+ import Button from './Button';
2
+ import { action } from '@storybook/addon-actions';
3
+ import { Meta, Story } from '@storybook/addon-docs';
4
+
5
+ <Meta title='Button' />
6
+
7
+ export const rowData = {
8
+ col1: 'a',
9
+ col2: 2,
10
+ };
11
+
12
+ <Story name='story1'><Button label='Story 1' /></Story>
13
+
14
+ <Story name='second story'><Button label='Story 2' onClick={action('click')} /></Story>
15
+
16
+ <Story name='complex story'><div>
17
+ <Button label='The Button' onClick={action('onClick')} />
18
+ <br />
19
+ </div></Story>
@@ -0,0 +1,39 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "exclude-stories.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import Button from './Button';
6
+ import { action } from '@storybook/addon-actions';
7
+ export const rowData = {
8
+ col1: 'a',
9
+ col2: 2,
10
+ };
11
+
12
+ export default {
13
+ title: 'Button',
14
+ includeStories: ['Story1', 'SecondStory', 'ComplexStory'],
15
+ };
16
+
17
+ export const Story1 = () => <Button label=\\"Story 1\\" />;
18
+
19
+ Story1.story = {
20
+ name: 'story1',
21
+ };
22
+
23
+ export const SecondStory = () => <Button label=\\"Story 2\\" onClick={action('click')} />;
24
+
25
+ SecondStory.story = {
26
+ name: 'second story',
27
+ };
28
+
29
+ export const ComplexStory = () => (
30
+ <div>
31
+ <Button label=\\"The Button\\" onClick={action('onClick')} />
32
+ <br />
33
+ </div>
34
+ );
35
+
36
+ ComplexStory.story = {
37
+ name: 'complex story',
38
+ };"
39
+ `;
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import Button from './Button';
3
+ import { storiesOf } from '@storybook/react';
4
+ import { Meta, Story } from '@storybook/addon-docs';
5
+
6
+ <Meta
7
+ title='Button'
8
+ component={Button}
9
+ parameters={{
10
+ foo: 1,
11
+ bar: 2,
12
+ }} />
13
+
14
+ <Story name='with kind parameters'><Button label='The Button' /></Story>
@@ -0,0 +1,23 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "parameters.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import Button from './Button';
6
+ import { storiesOf } from '@storybook/react';
7
+
8
+ export default {
9
+ title: 'Button',
10
+ component: Button,
11
+
12
+ parameters: {
13
+ foo: 1,
14
+ bar: 2,
15
+ },
16
+ };
17
+
18
+ export const WithKindParameters = () => <Button label=\\"The Button\\" />;
19
+
20
+ WithKindParameters.story = {
21
+ name: 'with kind parameters',
22
+ };"
23
+ `;
@@ -0,0 +1,3 @@
1
+ import { Story, Meta } from '@storybook/addon-docs';
2
+
3
+ <Story name="plaintext">Plain text</Story>;
@@ -0,0 +1,11 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "plaintext.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ export default {};
6
+ export const Plaintext = () => 'Plain text';
7
+
8
+ Plaintext.story = {
9
+ name: 'plaintext',
10
+ };"
11
+ `;
@@ -0,0 +1,10 @@
1
+ import { Story, Meta } from '@storybook/addon-docs';
2
+
3
+ <Story name="function" height="100px">
4
+ {() => {
5
+ const btn = document.createElement('button');
6
+ btn.innerHTML = 'Hello Button';
7
+ btn.addEventListener('click', action('Click'));
8
+ return btn;
9
+ }}
10
+ </Story>;
@@ -0,0 +1,18 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "story-function.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ export default {};
6
+
7
+ export const Function = () => {
8
+ const btn = document.createElement('button');
9
+ btn.innerHTML = 'Hello Button';
10
+ btn.addEventListener('click', action('Click'));
11
+ return btn;
12
+ };
13
+
14
+ Function.story = {
15
+ name: 'function',
16
+ height: '100px',
17
+ };"
18
+ `;
@@ -0,0 +1,18 @@
1
+ import Button from './Button';
2
+ import { storiesOf } from '@storybook/react';
3
+ import { Meta, Story } from '@storybook/addon-docs';
4
+
5
+ <Meta title='Button' />
6
+
7
+ <Story
8
+ name='with story parameters'
9
+ parameters={{
10
+ header: false,
11
+ inline: true,
12
+ }}><Button label='The Button' /></Story>
13
+
14
+ <Story
15
+ name='foo'
16
+ parameters={{
17
+ bar: 1,
18
+ }}><Button label='Foo' /></Story>
@@ -0,0 +1,32 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "story-parameters.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import Button from './Button';
6
+ import { storiesOf } from '@storybook/react';
7
+
8
+ export default {
9
+ title: 'Button',
10
+ };
11
+
12
+ export const WithStoryParameters = () => <Button label=\\"The Button\\" />;
13
+
14
+ WithStoryParameters.story = {
15
+ name: 'with story parameters',
16
+
17
+ parameters: {
18
+ header: false,
19
+ inline: true,
20
+ },
21
+ };
22
+
23
+ export const Foo = () => <Button label=\\"Foo\\" />;
24
+
25
+ Foo.story = {
26
+ name: 'foo',
27
+
28
+ parameters: {
29
+ bar: 1,
30
+ },
31
+ };"
32
+ `;
@@ -0,0 +1,22 @@
1
+ import { Story, Meta } from '@storybook/addon-docs';
2
+ import { action } from '@storybook/addon-actions';
3
+ import { Button } from '@storybook/react/demo';
4
+
5
+ <Meta
6
+ title="Addons|Docs/mdx"
7
+ component={Button}
8
+ decorators={[storyFn => <div style={{ backgroundColor: 'yellow' }}>{storyFn()}</div>]}
9
+ parameters={{ notes: 'component notes' }}
10
+ />
11
+
12
+ ## Getting into details
13
+
14
+ <Story name="solo story">
15
+ <Button onClick={action('clicked')}>solo</Button>
16
+ </Story>
17
+
18
+ <Source name="hello story" />
19
+
20
+ ## Configurable height
21
+
22
+ <Story id="basics-button--all-buttons" height="400px" />
@@ -0,0 +1,34 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`mdx-to-csf transforms correctly using "story-refs.input.js" data 1`] = `
4
+ "import React from 'react';
5
+ import { action } from '@storybook/addon-actions';
6
+ import { Button } from '@storybook/react/demo';
7
+
8
+ export default {
9
+ title: 'Addons|Docs/mdx',
10
+ component: Button,
11
+
12
+ decorators: [
13
+ (storyFn) => (
14
+ <div
15
+ style={{
16
+ backgroundColor: 'yellow',
17
+ }}
18
+ >
19
+ {storyFn()}
20
+ </div>
21
+ ),
22
+ ],
23
+
24
+ parameters: {
25
+ notes: 'component notes',
26
+ },
27
+ };
28
+
29
+ export const SoloStory = () => <Button onClick={action('clicked')}>solo</Button>;
30
+
31
+ SoloStory.story = {
32
+ name: 'solo story',
33
+ };"
34
+ `;
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ import { storyOf, action, linkTo } from '@storybook/react';
@@ -0,0 +1,8 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`move-builtin-addons transforms correctly using "default.input.js" data 1`] = `
4
+ "/* eslint-disable */
5
+ import { storyOf } from '@storybook/react';
6
+ import { linkTo } from '@storybook/addon-links';
7
+ import { action } from '@storybook/addon-actions';"
8
+ `;
@@ -0,0 +1,3 @@
1
+ /* eslint-disable */
2
+ import { action } from '@kadira/storybook-addons';
3
+ import { storyOf } from '@storybook/react';
@@ -0,0 +1,7 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`move-builtin-addons transforms correctly using "with-no-change.input.js" data 1`] = `
4
+ "/* eslint-disable */
5
+ import { action } from '@kadira/storybook-addons';
6
+ import { storyOf } from '@storybook/react';"
7
+ `;
@@ -0,0 +1,18 @@
1
+ /* eslint-disable */
2
+ import React from 'react';
3
+ import Button from './Button';
4
+
5
+ import { storiesOf, configure } from '@storybook/react';
6
+ import { action } from '@storybook/addon-actions';
7
+
8
+ storiesOf('Button', module)
9
+ .add('story1', () => <Button label="Story 1" />)
10
+ .add('second story', () => <Button label="Story 2" onClick={action('click')} />)
11
+ .add('complex story', () => (
12
+ <div>
13
+ <Button label="The Button" onClick={action('onClick')} />
14
+ <br />
15
+ </div>
16
+ ))
17
+ .add('w/punctuation', () => <Button label="Story 2" onClick={action('click')} />)
18
+ .add('Start Case', () => <Button label="Story 2" onClick={action('click')} />);
@@ -0,0 +1,45 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`storiesof-to-csf transforms correctly using "basic.input.js" data 1`] = `
4
+ "/* eslint-disable */
5
+ import React from 'react';
6
+ import Button from './Button';
7
+
8
+ import { configure } from '@storybook/react';
9
+ import { action } from '@storybook/addon-actions';
10
+
11
+ export default {
12
+ title: 'Button',
13
+ };
14
+
15
+ export const Story1 = () => <Button label=\\"Story 1\\" />;
16
+
17
+ Story1.story = {
18
+ name: 'story1',
19
+ };
20
+
21
+ export const SecondStory = () => <Button label=\\"Story 2\\" onClick={action('click')} />;
22
+
23
+ SecondStory.story = {
24
+ name: 'second story',
25
+ };
26
+
27
+ export const ComplexStory = () => (
28
+ <div>
29
+ <Button label=\\"The Button\\" onClick={action('onClick')} />
30
+ <br />
31
+ </div>
32
+ );
33
+
34
+ ComplexStory.story = {
35
+ name: 'complex story',
36
+ };
37
+
38
+ export const WPunctuation = () => <Button label=\\"Story 2\\" onClick={action('click')} />;
39
+
40
+ WPunctuation.story = {
41
+ name: 'w/punctuation',
42
+ };
43
+
44
+ export const StartCase = () => <Button label=\\"Story 2\\" onClick={action('click')} />;"
45
+ `;
@@ -0,0 +1,11 @@
1
+ export const Foo = 1;
2
+ const Bar = 1;
3
+ const _Bar = 1;
4
+ const Baz = 1;
5
+ const __Baz = 1;
6
+
7
+ storiesOf('foo', module)
8
+ .add('foo', () => <button />)
9
+ .add('bar', () => <button />)
10
+ .add('_baz', () => <button />)
11
+ .add('baz', () => <button />);
@@ -0,0 +1,38 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`storiesof-to-csf transforms correctly using "collision.input.js" data 1`] = `
4
+ "export const Foo = 1;
5
+ const Bar = 1;
6
+ const _Bar = 1;
7
+ const Baz = 1;
8
+ const __Baz = 1;
9
+
10
+ export default {
11
+ title: 'foo',
12
+ excludeStories: ['Foo'],
13
+ };
14
+
15
+ export const _Foo = () => <button />;
16
+
17
+ _Foo.story = {
18
+ name: 'foo',
19
+ };
20
+
21
+ export const __Bar = () => <button />;
22
+
23
+ __Bar.story = {
24
+ name: 'bar',
25
+ };
26
+
27
+ export const _Baz = () => <button />;
28
+
29
+ _Baz.story = {
30
+ name: '_baz',
31
+ };
32
+
33
+ export const ___Baz = () => <button />;
34
+
35
+ ___Baz.story = {
36
+ name: 'baz',
37
+ };"
38
+ `;
@@ -0,0 +1 @@
1
+ storiesOf('bar', module).add('const', () => <button />);
@@ -0,0 +1,13 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`storiesof-to-csf transforms correctly using "const.input.js" data 1`] = `
4
+ "export default {
5
+ title: 'bar',
6
+ };
7
+
8
+ export const Const = () => <button />;
9
+
10
+ Const.story = {
11
+ name: 'const',
12
+ };"
13
+ `;
@@ -0,0 +1,9 @@
1
+ /* eslint-disable */
2
+ import React from 'react';
3
+ import Button from './Button';
4
+
5
+ // This isn't a valid story, but it tests the `import { comp } from ...` case
6
+ storiesOf('Some.Button', module)
7
+ .addDecorator(withKnobs)
8
+ .addDecorator((storyFn) => <div className="foo">{storyFn}</div>)
9
+ .add('with decorator', () => <Button label="The Button" />);
@@ -0,0 +1,18 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`storiesof-to-csf transforms correctly using "decorators.input.js" data 1`] = `
4
+ "/* eslint-disable */
5
+ import React from 'react';
6
+ import Button from './Button';
7
+
8
+ export default {
9
+ title: 'Some.Button',
10
+ decorators: [withKnobs, (storyFn) => <div className=\\"foo\\">{storyFn}</div>],
11
+ };
12
+
13
+ export const WithDecorator = () => <Button label=\\"The Button\\" />;
14
+
15
+ WithDecorator.story = {
16
+ name: 'with decorator',
17
+ };"
18
+ `;
@@ -0,0 +1,7 @@
1
+ /* eslint-disable */
2
+ import React from 'react';
3
+ import Button from './Button';
4
+
5
+ import { storiesOf } from '@storybook/react';
6
+
7
+ storiesOf('Button', module).add('default', () => <Button label="Story 1" />);
@@ -0,0 +1,17 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`storiesof-to-csf transforms correctly using "default.input.js" data 1`] = `
4
+ "/* eslint-disable */
5
+ import React from 'react';
6
+ import Button from './Button';
7
+
8
+ export default {
9
+ title: 'Button',
10
+ };
11
+
12
+ export const Default = () => <Button label=\\"Story 1\\" />;
13
+
14
+ Default.story = {
15
+ name: 'default',
16
+ };"
17
+ `;
@@ -0,0 +1 @@
1
+ storiesOf('bar', module).add('1', () => <button />);
@@ -0,0 +1,5 @@
1
+ export default {
2
+ title: 'bar',
3
+ };
4
+
5
+ export const _1 = () => <button />;
@@ -0,0 +1,9 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`storiesof-to-csf transforms correctly using "digit.input.js" data 1`] = `
4
+ "export default {
5
+ title: 'bar',
6
+ };
7
+
8
+ export const _1 = () => <button />;"
9
+ `;
@@ -0,0 +1,11 @@
1
+ /* eslint-disable import/no-extraneous-dependencies */
2
+ import React from 'react';
3
+ import { storiesOf } from '@storybook/react';
4
+ import ComponentRow from './ComponentRow';
5
+ import * as SpecRowStories from './SpecRow.stories';
6
+
7
+ export const { actions } = SpecRowStories;
8
+
9
+ storiesOf('ComponentRow', module).add('pending', () => (
10
+ <ComponentRow snapshots={snapshots.pending} buildNumber={2} {...actions} />
11
+ ));