mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Merge pull request #2195 from storybooks/dd/auto-import
#1013 autoload all *.stories.js files in cli templates
This commit is contained in:
commit
f05108250e
@ -2,8 +2,10 @@
|
||||
|
||||
import { configure } from '@storybook/angular';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
46
lib/cli/generators/ANGULAR/template/stories/index.stories.js
Normal file
46
lib/cli/generators/ANGULAR/template/stories/index.stories.js
Normal file
@ -0,0 +1,46 @@
|
||||
import { storiesOf } from '@storybook/angular';
|
||||
import { withNotes } from '@storybook/addon-notes';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { Welcome, Button } from '@storybook/angular/demo';
|
||||
|
||||
storiesOf('Welcome', module).add('to Storybook', () => ({
|
||||
component: Welcome,
|
||||
props: {},
|
||||
}));
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Hello Button',
|
||||
},
|
||||
}))
|
||||
.add(
|
||||
'with some emoji',
|
||||
withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯',
|
||||
},
|
||||
}))
|
||||
)
|
||||
.add(
|
||||
'with some emoji and action',
|
||||
withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯',
|
||||
onClick: action('This was clicked OMG'),
|
||||
},
|
||||
}))
|
||||
);
|
||||
|
||||
storiesOf('Another Button', module).add('button with link to another story', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Go to Welcome Story',
|
||||
onClick: linkTo('Welcome'),
|
||||
},
|
||||
}));
|
@ -1,44 +0,0 @@
|
||||
import { storiesOf } from '@storybook/angular';
|
||||
import { withNotes } from '@storybook/addon-notes';
|
||||
import { action } from '@storybook/addon-actions'
|
||||
import { linkTo } from '@storybook/addon-links'
|
||||
|
||||
import { Welcome, Button } from '@storybook/angular/demo';
|
||||
|
||||
declare let module;
|
||||
|
||||
storiesOf('Welcome', module)
|
||||
.add('to Storybook', () => ({
|
||||
component: Welcome,
|
||||
props: {}
|
||||
}))
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Hello Button'
|
||||
}
|
||||
}))
|
||||
.add('with some emoji', withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯'
|
||||
}
|
||||
})))
|
||||
.add('with some emoji and action', withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯',
|
||||
onClick: action('This was clicked OMG')
|
||||
}
|
||||
})))
|
||||
|
||||
storiesOf('Another Button', module)
|
||||
.add('button with link to another story', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Go to Welcome Story',
|
||||
onClick: linkTo('Welcome')
|
||||
}
|
||||
}))
|
@ -1,20 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { Button, Welcome } from '@storybook/react/demo';
|
||||
|
||||
storiesOf('Welcome', module)
|
||||
.add('to Storybook', () => (
|
||||
<Welcome showApp={linkTo('Button')}/>
|
||||
));
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => (
|
||||
<Button onClick={action('clicked')}>Hello Button</Button>
|
||||
))
|
||||
.add('with some emoji', () => (
|
||||
<Button onClick={action('clicked')}>😀 😎 👍 💯</Button>
|
||||
));
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../.stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/vue'
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../src/stories')
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module)
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/vue'
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories')
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module)
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
@ -2,8 +2,10 @@
|
||||
|
||||
import { configure } from '@storybook/angular';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
46
lib/cli/test/snapshots/angular-cli/stories/index.stories.js
Normal file
46
lib/cli/test/snapshots/angular-cli/stories/index.stories.js
Normal file
@ -0,0 +1,46 @@
|
||||
import { storiesOf } from '@storybook/angular';
|
||||
import { withNotes } from '@storybook/addon-notes';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { Welcome, Button } from '@storybook/angular/demo';
|
||||
|
||||
storiesOf('Welcome', module).add('to Storybook', () => ({
|
||||
component: Welcome,
|
||||
props: {},
|
||||
}));
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Hello Button',
|
||||
},
|
||||
}))
|
||||
.add(
|
||||
'with some emoji',
|
||||
withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯',
|
||||
},
|
||||
}))
|
||||
)
|
||||
.add(
|
||||
'with some emoji and action',
|
||||
withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯',
|
||||
onClick: action('This was clicked OMG'),
|
||||
},
|
||||
}))
|
||||
);
|
||||
|
||||
storiesOf('Another Button', module).add('button with link to another story', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Go to Welcome Story',
|
||||
onClick: linkTo('Welcome'),
|
||||
},
|
||||
}));
|
@ -1,44 +0,0 @@
|
||||
import { storiesOf } from '@storybook/angular';
|
||||
import { withNotes } from '@storybook/addon-notes';
|
||||
import { action } from '@storybook/addon-actions'
|
||||
import { linkTo } from '@storybook/addon-links'
|
||||
|
||||
import { Welcome, Button } from '@storybook/angular/demo';
|
||||
|
||||
declare let module;
|
||||
|
||||
storiesOf('Welcome', module)
|
||||
.add('to Storybook', () => ({
|
||||
component: Welcome,
|
||||
props: {}
|
||||
}))
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Hello Button'
|
||||
}
|
||||
}))
|
||||
.add('with some emoji', withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯'
|
||||
}
|
||||
})))
|
||||
.add('with some emoji and action', withNotes({ notes: 'My notes on a button with emojis' })(() => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: '😀 😎 👍 💯',
|
||||
onClick: action('This was clicked OMG')
|
||||
}
|
||||
})))
|
||||
|
||||
storiesOf('Another Button', module)
|
||||
.add('button with link to another story', () => ({
|
||||
component: Button,
|
||||
props: {
|
||||
text: 'Go to Welcome Story',
|
||||
onClick: linkTo('Welcome')
|
||||
}
|
||||
}))
|
@ -1,20 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { Button, Welcome } from '@storybook/react/demo';
|
||||
|
||||
storiesOf('Welcome', module)
|
||||
.add('to Storybook', () => (
|
||||
<Welcome showApp={linkTo('Button')}/>
|
||||
));
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => (
|
||||
<Button onClick={action('clicked')}>Hello Button</Button>
|
||||
))
|
||||
.add('with some emoji', () => (
|
||||
<Button onClick={action('clicked')}>😀 😎 👍 💯</Button>
|
||||
));
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../.stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { Button, Welcome } from '@storybook/react/demo';
|
||||
|
||||
storiesOf('Welcome', module).add('to Storybook', () => <Welcome showApp={linkTo('Button')} />);
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => <Button onClick={action('clicked')}>Hello Button</Button>)
|
||||
.add('with some emoji', () => <Button onClick={action('clicked')}>😀 😎 👍 💯</Button>);
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/vue'
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../src/stories')
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module)
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/vue'
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories')
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module)
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { configure } from '@storybook/react';
|
||||
|
||||
// automatically import all files ending in *.stories.js
|
||||
const req = require.context('../stories', true, /.stories.js$/);
|
||||
function loadStories() {
|
||||
require('../stories');
|
||||
req.keys().forEach((filename) => req(filename));
|
||||
}
|
||||
|
||||
configure(loadStories, module);
|
||||
|
@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
import { storiesOf } from '@storybook/react';
|
||||
import { action } from '@storybook/addon-actions';
|
||||
import { linkTo } from '@storybook/addon-links';
|
||||
|
||||
import { Button, Welcome } from '@storybook/react/demo';
|
||||
|
||||
storiesOf('Welcome', module).add('to Storybook', () => <Welcome showApp={linkTo('Button')} />);
|
||||
|
||||
storiesOf('Button', module)
|
||||
.add('with text', () => <Button onClick={action('clicked')}>Hello Button</Button>)
|
||||
.add('with some emoji', () => <Button onClick={action('clicked')}>😀 😎 👍 💯</Button>);
|
Loading…
x
Reference in New Issue
Block a user