Polymer-cli: update stories to module format

This commit is contained in:
Michael Shilman 2019-06-27 23:37:03 +08:00
parent d9c67d7502
commit 07c2df0506
11 changed files with 143 additions and 90 deletions

View File

@ -1,4 +1,4 @@
import { configure, addParameters, addDecorator } from '@storybook/polymer'; import { load, addParameters, addDecorator } from '@storybook/polymer';
import { withA11y } from '@storybook/addon-a11y'; import { withA11y } from '@storybook/addon-a11y';
addDecorator(withA11y); addDecorator(withA11y);
@ -8,11 +8,4 @@ addParameters({
}, },
}); });
function loadStories() { load(require.context('../src/stories', true, /\.stories\.js$/), module);
require('../src/stories/index.stories');
const req = require.context('../src/stories', true, /\.stories\.js$/);
req.keys().forEach(filename => req(filename));
}
configure(loadStories, module);

View File

@ -1,17 +1,28 @@
import { storiesOf } from '@storybook/polymer';
import { action } from '@storybook/addon-actions'; import { action } from '@storybook/addon-actions';
import { document } from 'global'; import { document } from 'global';
import '../simple-button.html'; import '../simple-button.html';
storiesOf('Addon|Actions', module) export default {
.add('Action only', () => { title: 'Addon|Actions',
const el = document.createElement('simple-button'); };
el.addEventListener('click', action('log1'));
return el; export const actionOnly = () => {
}) const el = document.createElement('simple-button');
.add('Action and method', () => { el.addEventListener('click', action('log1'));
const el = document.createElement('simple-button'); return el;
el.addEventListener('click', e => action('log2')(e.target)); };
return el;
}); actionOnly.story = {
name: 'Action only',
};
export const actionAndMethod = () => {
const el = document.createElement('simple-button');
el.addEventListener('click', e => action('log2')(e.target));
return el;
};
actionAndMethod.story = {
name: 'Action and method',
};

View File

@ -1,10 +1,16 @@
import { storiesOf } from '@storybook/polymer'; export default {
title: 'Addon|Backgrounds',
storiesOf('Addon|Backgrounds', module) parameters: {
.addParameters({
backgrounds: [ backgrounds: [
{ name: 'light', value: '#eeeeee' }, { name: 'light', value: '#eeeeee' },
{ name: 'dark', value: '#222222', default: true }, { name: 'dark', value: '#222222', default: true },
], ],
}) },
.add('button with text', () => '<button>Click me</button>'); };
export const buttonWithText = () => '<button>Click me</button>';
buttonWithText.story = {
name: 'button with text',
};

View File

@ -1,12 +1,19 @@
import { storiesOf } from '@storybook/polymer';
import { linkTo } from '@storybook/addon-links'; import { linkTo } from '@storybook/addon-links';
import { document } from 'global'; import { document } from 'global';
import '../simple-button.html'; import '../simple-button.html';
storiesOf('Addon|Links', module).add('With Create Element', () => { export default {
title: 'Addon|Links',
};
export const withCreateElement = () => {
const el = document.createElement('simple-button'); const el = document.createElement('simple-button');
el.title = 'Go to welcome'; el.title = 'Go to welcome';
el.handleClick = linkTo('Welcome'); el.handleClick = linkTo('Welcome');
return el; return el;
}); };
withCreateElement.story = {
name: 'With Create Element',
};

View File

@ -1,20 +1,28 @@
import { storiesOf } from '@storybook/polymer'; export default {
title: 'Addon|Notes',
};
storiesOf('Addon|Notes', module) export const simpleNote = () =>
.add( '<p><strong>Etiam vulputate elit eu venenatis eleifend. Duis nec lectus augue. Morbi egestas diam sed vulputate mollis. Fusce egestas pretium vehicula. Integer sed neque diam. Donec consectetur velit vitae enim varius, ut placerat arcu imperdiet. Praesent sed faucibus arcu. Nullam sit amet nibh a enim eleifend rhoncus. Donec pretium elementum leo at fermentum. Nulla sollicitudin, mauris quis semper tempus, sem metus tristique diam, efficitur pulvinar mi urna id urna.</strong></p>';
'Simple note',
() => simpleNote.story = {
'<p><strong>Etiam vulputate elit eu venenatis eleifend. Duis nec lectus augue. Morbi egestas diam sed vulputate mollis. Fusce egestas pretium vehicula. Integer sed neque diam. Donec consectetur velit vitae enim varius, ut placerat arcu imperdiet. Praesent sed faucibus arcu. Nullam sit amet nibh a enim eleifend rhoncus. Donec pretium elementum leo at fermentum. Nulla sollicitudin, mauris quis semper tempus, sem metus tristique diam, efficitur pulvinar mi urna id urna.</strong></p>', name: 'Simple note',
{ parameters: {
notes: 'My notes on some bold text', notes: 'My notes on some bold text',
} },
) };
.add('Note with HTML', () => '<p>🤔😳😯😮<br/>😄😩😓😱<br/>🤓😑😶😊</p>', {
export const noteWithHtml = () => '<p>🤔😳😯😮<br/>😄😩😓😱<br/>🤓😑😶😊</p>';
noteWithHtml.story = {
name: 'Note with HTML',
parameters: {
notes: ` notes: `
<h2>My notes on emojies</h2> <h2>My notes on emojies</h2>
<em>It's not all that important to be honest, but..</em> <em>It's not all that important to be honest, but..</em>
Emojis are great, I love emojis, in fact I like using them in my Component notes too! 😇 Emojis are great, I love emojis, in fact I like using them in my Component notes too! 😇
`, `,
}); },
};

View File

@ -0,0 +1,11 @@
import '../../polymer-playground-app.html';
export default {
title: 'App',
};
export const fullApp = () =>
'<polymer-playground-app title="Storybook for Polymer"></polymer-playground-app>';
fullApp.story = {
name: 'full app',
};

View File

@ -0,0 +1,8 @@
import '../../playground-button.html';
export default {
title: 'Button',
};
export const rounded = () => '<playground-button></playground-button>';
export const square = () => '<playground-button is-square></playground-button>';

View File

@ -0,0 +1,14 @@
import { linkTo } from '@storybook/addon-links';
import { document } from 'global';
import '../storybook-welcome-to-polymer.html';
export default {
title: 'Welcome',
};
export const Welcome = () => {
const el = document.createElement('storybook-welcome-to-polymer');
el.goToButton = linkTo('Button');
return el;
};

View File

@ -1,4 +1,4 @@
import { storiesOf, addParameters } from '@storybook/polymer'; import { addParameters } from '@storybook/polymer';
const globalParameter = 'globalParameter'; const globalParameter = 'globalParameter';
const chapterParameter = 'chapterParameter'; const chapterParameter = 'chapterParameter';
@ -6,13 +6,21 @@ const storyParameter = 'storyParameter';
addParameters({ globalParameter }); addParameters({ globalParameter });
storiesOf('Core|Parameters', module) export default {
.addParameters({ chapterParameter }) title: 'Core|Parameters',
.add(
'passed to story', parameters: {
({ parameters: { fileName, ...parameters } }) => chapterParameter,
`<div>Parameters are ${JSON.stringify(parameters)}</div>`, },
{ };
storyParameter,
} export const passedToStory = ({ parameters: { fileName, ...parameters } }) =>
); `<div>Parameters are ${JSON.stringify(parameters)}</div>`;
passedToStory.story = {
name: 'passed to story',
parameters: {
storyParameter,
},
};

View File

@ -1,14 +1,23 @@
import { storiesOf } from '@storybook/polymer';
import { document } from 'global'; import { document } from 'global';
storiesOf('Custom|Decorator', module) export default {
.addDecorator(storyFn => { title: 'Custom|Decorator',
const el = storyFn();
el.setAttribute('title', `${el.getAttribute('title')} - decorated`); decorators: [
return el; storyFn => {
}) const el = storyFn();
.add('example decoration', () => { el.setAttribute('title', `${el.getAttribute('title')} - decorated`);
const el = document.createElement('playground-button'); return el;
el.setAttribute('title', 'An example title'); },
return el; ],
}); };
export const exampleDecoration = () => {
const el = document.createElement('playground-button');
el.setAttribute('title', 'An example title');
return el;
};
exampleDecoration.story = {
name: 'example decoration',
};

View File

@ -1,22 +0,0 @@
import { storiesOf } from '@storybook/polymer';
import { linkTo } from '@storybook/addon-links';
import { document } from 'global';
import '../polymer-playground-app.html';
import '../playground-button.html';
import './storybook-welcome-to-polymer.html';
storiesOf('Welcome', module).add('Welcome', () => {
const el = document.createElement('storybook-welcome-to-polymer');
el.goToButton = linkTo('Button');
return el;
});
storiesOf('App', module).add(
'full app',
() => '<polymer-playground-app title="Storybook for Polymer"></polymer-playground-app>'
);
storiesOf('Button', module)
.add('rounded', () => '<playground-button></playground-button>')
.add('square', () => '<playground-button is-square></playground-button>');