mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Add button-story-with-args.ts snippet for html framework
This commit is contained in:
parent
660cdeec1b
commit
8fe7687059
@ -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',
|
||||
]}
|
||||
/>
|
||||
|
||||
|
29
docs/snippets/html/button-story-with-args.ts.mdx
Normal file
29
docs/snippets/html/button-story-with-args.ts.mdx
Normal 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',
|
||||
};
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user