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

This commit is contained in:
WIVSW 2021-12-18 15:16:08 +05:00
parent 660cdeec1b
commit 8fe7687059
2 changed files with 30 additions and 0 deletions

View File

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

View File

@ -0,0 +1,29 @@
```ts
import { Meta, StoryFn } from '@storybook/html';
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',
} as Meta;
//👇 We create a “template” of how args map to rendering
const Template: StoryFn = (args): HTMLButtonElement => {
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',
};
```