mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
CLI templates: Riot => module format
This commit is contained in:
parent
44f67044f0
commit
0bf6b1a39f
@ -1,9 +1,4 @@
|
|||||||
import { configure } from '@storybook/riot';
|
import { load } from '@storybook/riot';
|
||||||
|
|
||||||
// automatically import all files ending in *.stories.js
|
// automatically import all files ending in *.stories.js
|
||||||
const req = require.context('../stories', true, /\.stories\.js$/);
|
load(require.context('../stories', true, /\.stories\.js$/), module);
|
||||||
function loadStories() {
|
|
||||||
req.keys().forEach(filename => req(filename));
|
|
||||||
}
|
|
||||||
|
|
||||||
configure(loadStories, module);
|
|
||||||
|
22
lib/cli/generators/RIOT/template/stories/Button.stories.js
Normal file
22
lib/cli/generators/RIOT/template/stories/Button.stories.js
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { mount } from '@storybook/riot';
|
||||||
|
|
||||||
|
/* eslint-disable-next-line import/no-webpack-loader-syntax */
|
||||||
|
import MyButtonRaw from 'raw-loader!./MyButton.tag';
|
||||||
|
import './MyButton.tag';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
title: 'Button',
|
||||||
|
};
|
||||||
|
|
||||||
|
export const text = () => ({
|
||||||
|
tags: ['<my-button>Hello Button</my-button>'],
|
||||||
|
});
|
||||||
|
|
||||||
|
export const scenario = () => ({
|
||||||
|
tags: [{ content: MyButtonRaw, boundAs: 'MyButton' }],
|
||||||
|
template: '<MyButton>With scenario</MyButton>',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const emoji = () => ({
|
||||||
|
tags: ['<my-button>😀 😎 👍 💯</my-button>'],
|
||||||
|
});
|
14
lib/cli/generators/RIOT/template/stories/Welcome.stories.js
Normal file
14
lib/cli/generators/RIOT/template/stories/Welcome.stories.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { mount } from '@storybook/riot';
|
||||||
|
import { linkTo } from '@storybook/addon-links';
|
||||||
|
|
||||||
|
import './Welcome.tag';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
title: 'Welcome',
|
||||||
|
};
|
||||||
|
|
||||||
|
export const toStorybook = () => mount('welcome', { showApp: () => linkTo('Button') });
|
||||||
|
|
||||||
|
toStorybook.story = {
|
||||||
|
name: 'to Storybook',
|
||||||
|
};
|
@ -1,23 +0,0 @@
|
|||||||
import { mount, storiesOf } from '@storybook/riot';
|
|
||||||
import { linkTo } from '@storybook/addon-links';
|
|
||||||
|
|
||||||
/* eslint-disable-next-line import/no-webpack-loader-syntax */
|
|
||||||
import MyButtonRaw from 'raw-loader!./MyButton.tag';
|
|
||||||
import './MyButton.tag';
|
|
||||||
import './Welcome.tag';
|
|
||||||
|
|
||||||
storiesOf('Welcome', module).add('to Storybook', () =>
|
|
||||||
mount('welcome', { showApp: () => linkTo('Button') })
|
|
||||||
);
|
|
||||||
|
|
||||||
storiesOf('Button', module)
|
|
||||||
.add('with text', () => ({
|
|
||||||
tags: ['<my-button>Hello Button</my-button>'],
|
|
||||||
}))
|
|
||||||
.add('with scenario', () => ({
|
|
||||||
tags: [{ content: MyButtonRaw, boundAs: 'MyButton' }],
|
|
||||||
template: '<MyButton>With scenario</MyButton>',
|
|
||||||
}))
|
|
||||||
.add('with some emoji', () => ({
|
|
||||||
tags: ['<my-button>😀 😎 👍 💯</my-button>'],
|
|
||||||
}));
|
|
Loading…
x
Reference in New Issue
Block a user