Add button-story-with-args.js snippet for html framework

This commit is contained in:
WIVSW 2021-12-18 15:02:47 +05:00
parent e4c02e950b
commit 660cdeec1b
2 changed files with 28 additions and 0 deletions

View File

@ -55,6 +55,7 @@ The above story definition can be further improved to take advantage of [Storybo
'svelte/button-story-with-args.js.mdx',
'svelte/button-story-with-args.native-format.mdx',
'svelte/button-story-with-args.mdx.mdx',
'html/button-story-with-args.js.mdx',
]}
/>

View File

@ -0,0 +1,27 @@
```js
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Button',
};
//👇 We create a “template” of how args map to rendering
const Template = (args) => {
const btn = document.createElement('button');
btn.innerText = args.label;
const mode = args.primary ? 'storybook-button--primary' : 'storybook-button--secondary';
btn.className = ['storybook-button', 'storybook-button--medium', mode].join(' ');
return btn;
};
//👇 Each story then reuses that template
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Button',
};
```