CLI templates: Riot => module format

This commit is contained in:
Michael Shilman 2019-07-20 17:09:08 +08:00
parent 44f67044f0
commit 0bf6b1a39f
4 changed files with 38 additions and 30 deletions

View File

@ -1,9 +1,4 @@
import { configure } from '@storybook/riot';
import { load } from '@storybook/riot';
// automatically import all files ending in *.stories.js
const req = require.context('../stories', true, /\.stories\.js$/);
function loadStories() {
req.keys().forEach(filename => req(filename));
}
configure(loadStories, module);
load(require.context('../stories', true, /\.stories\.js$/), module);

View 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>'],
});

View 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',
};

View File

@ -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>'],
}));