Svelte snippets updated

This commit is contained in:
jonniebigodes 2021-10-11 19:53:39 +01:00
parent 613f6de8bb
commit 2418ee103b
15 changed files with 196 additions and 155 deletions

View File

@ -3,35 +3,41 @@
import { Meta, Story, Canvas } from '@storybook/addon-docs'; import { Meta, Story, Canvas } from '@storybook/addon-docs';
import { Badge } from './Badge.svelte'; import Badge from './Badge.svelte';
<Meta title="MDX/Badge" component={Badge} /> <Meta title="MDX/Badge" component={Badge} />
export const Template = (args) => ({ <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
Component: Badge,
props: args,
});
# Badge # Badge
Let's define a story for our `Badge` component: Let's define a story for our `Badge` component:
<Story name="positive" args={{ <Story
name="positive"
args={{
status: 'positive', status: 'positive',
label: 'Positive' label: 'Positive'
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
props: args,
})} />
We can drop it in a `Canvas` to get a code snippet: We can drop it in a `Canvas` to get a code snippet:
<Canvas> <Canvas>
<Story name="negative" args={{ <Story
name="negative"
args={{
status: 'negative', status: 'negative',
label: 'Negative' label: 'Negative'
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
props: args,
})} />
</Canvas> </Canvas>
We can even preview multiple Stories in a block. This We can even preview multiple Stories in a block. This
@ -39,23 +45,37 @@ gets rendered as a group but defines individual stories
with unique URLs, which is great for review and testing. with unique URLs, which is great for review and testing.
<Canvas> <Canvas>
<Story name="warning" args={{ <Story
name="warning"
args={{
status: 'warning', status: 'warning',
label: 'Warning' label: 'Warning'
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
<Story name="neutral" args={{ props: args,
})} />
<Story
name="neutral"
args={{
status: 'neutral', status: 'neutral',
label: 'Neutral' label: 'Neutral'
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
<Story name="error" args={{ props: args,
})} />
<Story
name="error"
args={{
status: 'error', status: 'error',
label: 'Error' label: 'Error'
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
props: args,
})} />
</Canvas> </Canvas>
``` ```

View File

@ -21,6 +21,8 @@ export const someFunction = (someValue) => {
return `i am a ${someValue}`; return `i am a ${someValue}`;
}; };
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<!-- 👇 Destructure the label from the args object and assigns the function result to a variable and pass it as a prop into the component --> <!-- 👇 Destructure the label from the args object and assigns the function result to a variable and pass it as a prop into the component -->
<Story <Story
name="ExampleStory" name="ExampleStory"
@ -28,8 +30,8 @@ export const someFunction = (someValue) => {
primary: true, primary: true,
size: 'small', size: 'small',
label: "button", label: "button",
}}> }}
{(args) => { render={(args) => {
const { label } = args; const { label } = args;
const functionResult = someFunction(label); const functionResult = someFunction(label);
return { return {
@ -40,5 +42,5 @@ export const someFunction = (someValue) => {
}, },
}; };
}} }}
</Story> />
``` ```

View File

@ -5,19 +5,18 @@ import { Meta, Story } from '@storybook/addon-docs';
import Button from './Button.svelte'; import Button from './Button.svelte';
<Meta title="Components/Button" component={Button} /> <Meta title="Button" component={Button} />
export const Template = (args) => ({ <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
Component: Button,
props: args,
});
<Story <Story
name="Primary" name="Primary"
args={{ args={{
primary: true, primary: true,
label: 'Button', label: 'Button',
}}> }}
{Template.bind({})} render={(args)=>({
</Story> Component: Button,
props: args,
})} />
``` ```

View File

@ -5,33 +5,37 @@ import { Meta, Story } from '@storybook/addon-docs';
import Button from './Button.svelte'; import Button from './Button.svelte';
<Meta title="Components/Button" component={Button} /> <Meta title="Button" component={Button} />
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story name="Primary"> <Story
{{ name="Primary"
render={() => ({
Component: Button,
props: { props: {
background: '#ff0', background: '#ff0',
label: 'Button', label: 'Button',
}, },
}} })} />
</Story>
<Story name="Secondary"> <Story
{{ name="Secondary"
render={() => ({
Component: Button,
props: { props: {
background: '#ff0', background: '#ff0',
label: '😄👍😍💯', label: '😄👍😍💯',
}, },
}} })} />
</Story>
<Story name="Tertiary"> <Story
{{ name="Tertiary"
render={() => ({
Component: Button,
props: { props: {
background: '#ff0', background: '#ff0',
label: '📚📕📈🤓', label: '📚📕📈🤓',
}, },
}} })} />
</Story>
``` ```

View File

@ -7,14 +7,17 @@ import Button from './Button.svelte';
<Meta title="Button" component={Button}/> <Meta title="Button" component={Button}/>
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
# Button # Button
<Story name="Primary"> <Story
{{ name="Primary"
render={() => ({
Component: Button,
props: { props: {
primary: true, primary: true,
label: 'Button', label: 'Button',
}, },
}} })} />
</Story>
``` ```

View File

@ -1,16 +1,19 @@
```md ```md
<!-- Button.stories.mdx ---> <!-- Button.stories.mdx --->
import { Story } from '@storybook/addon-docs'; import { Meta, Story } from '@storybook/addon-docs';
import Button from './Button.svelte'; import Button from './Button.svelte';
export const Template = (args) => ({ <Meta title="Button" component={Button}/>
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story
name="Basic"
args={{ label: 'hello' }}
render={(args) => ({
Component: Button, Component: Button,
props: args, props: args,
}); })} />
<Story name="Basic" args={{ label: 'hello' }}>
{Template.bind({})}
</Story>
``` ```

View File

@ -5,17 +5,17 @@ import { Meta, Story } from '@storybook/addon-docs';
import MyComponent from './MyComponent.svelte'; import MyComponent from './MyComponent.svelte';
<Meta title="img" /> <Meta title="img" component={MyComponent} />
<Story name="withAnImage"> <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
{() => {
return { <Story
name="withAnImage"
render={() => ({
Component: MyComponent, Component: MyComponent,
props: { props: {
src: 'https://place-hold.it/350x150', src: 'https://place-hold.it/350x150',
alt: 'my image', alt: 'my image',
}, },
}; })} />
}}
</Story>
``` ```

View File

@ -7,21 +7,21 @@ import MyComponent from './MyComponent.svelte';
import imageFile from './static/image.png'; import imageFile from './static/image.png';
<Meta title="img" /> <Meta title="img" component={MyComponent} />
export const image = { export const image = {
src: imageFile, src: imageFile,
alt: 'my image', alt: 'my image',
}; };
<Story name="withAnImage"> <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
{() => {
return { <Story
name="withAnImage"
render={() => ({
Component: MyComponent, Component: MyComponent,
props: { props: {
image: image, image: image,
}, },
}; })} />
}}
</Story>
``` ```

View File

@ -5,17 +5,17 @@ import { Meta, Story } from '@storybook/addon-docs';
import MyComponent from './MyComponent.svelte0; import MyComponent from './MyComponent.svelte0;
<Meta title="img" /> <Meta title="img" component={MyComponent} />
<Story name="withAnImage"> <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
{() => {
return { <Story
name="withAnImage"
render={() => ({
Component: MyComponent, Component: MyComponent,
props: { props: {
src: '/image.png', src: '/image.png',
alt: 'my image', alt: 'my image',
}, },
}; })} />
}}
</Story>
``` ```

View File

@ -9,6 +9,8 @@ import fetch from 'node-fetch';
<Meta title="Examples/Loader" component={TodoItem} /> <Meta title="Examples/Loader" component={TodoItem} />
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story <Story
name="Primary" name="Primary"
loaders={[ loaders={[
@ -18,13 +20,12 @@ import fetch from 'node-fetch';
).json(), ).json(),
}), }),
]} ]}
> render={(args, { loaded: { todo } }) => ({
{(args, { loaded: { todo } }) => ({ Component: TodoItem,
Component: SampleLoaderComponent,
props: { props: {
...args, ...args,
todo, todo,
}, },
})} })}
</Story> />
``` ```

View File

@ -1,12 +1,13 @@
```md ```md
<!-- Badge.stories.mdx ---> <!-- Badge.stories.mdx --->
import { Canvas } from '@storybook/addon-docs'; import { Canvas, Meta, Story } from '@storybook/addon-docs';
export const Template = (args) => ({ import Badge from './Badge.svelte';
Component: Badge,
props: args, <Meta title="MDX/Badge" component={Badge} />
});
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Canvas> <Canvas>
<Story <Story
@ -14,26 +15,32 @@ export const Template = (args) => ({
args={{ args={{
status: 'warning', status: 'warning',
label: 'Warning', label: 'Warning',
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
props: args,
})} />
<Story <Story
name="neutral" name="neutral"
args={{ args={{
status: 'neutral', status: 'neutral',
label: 'Neutral', label: 'Neutral',
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
props: args,
})} />
<Story <Story
name="error" name="error"
args={{ args={{
status: 'error', status: 'error',
label: 'Error', label: 'Error',
}}> }}
{Template.bind({})} render={(args) => ({
</Story> Component: Badge,
props: args,
})} />
</Canvas> </Canvas>
``` ```

View File

@ -15,7 +15,9 @@ import MyComponent from './MyComponent.svelte';
defaultViewport: 'iphone6', defaultViewport: 'iphone6',
}, },
}} }}
/> component={MyComponent} />
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<Story <Story
name="MyStory" name="MyStory"
@ -23,11 +25,8 @@ import MyComponent from './MyComponent.svelte';
viewport: { viewport: {
defaultViewport: 'iphonex', defaultViewport: 'iphonex',
} }
}}>
{() => {
return {
Component: MyComponent,
};
}} }}
</Story> render={() => ({
Component: MyComponent,
})} />
``` ```

View File

@ -1,7 +1,11 @@
```md ```md
<!-- MyComponent.stories.mdx --> <!-- MyComponent.stories.mdx -->
import { Story } from '@storybook/addon-docs'; import { Meta, Story } from '@storybook/addon-docs';
import MyComponent from './MyComponent.svelte';
<Meta title="MDX Story with toolbars" component={MyComponent} />
export const getCaptionForLocale = (locale) => { export const getCaptionForLocale = (locale) => {
switch(locale) { switch(locale) {
@ -14,8 +18,10 @@ export const getCaptionForLocale = (locale) => {
} }
}; };
<Story name="StoryWithLocale"> <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
{(args, { globals: { locale } }) => {
<Story name="StoryWithLocale"
render={(args, { globals: { locale } }) => {
const caption = getCaptionForLocale(locale); const caption = getCaptionForLocale(locale);
return { return {
component: MyComponent, component: MyComponent,
@ -23,6 +29,5 @@ export const getCaptionForLocale = (locale) => {
locale: caption, locale: caption,
}, },
}; };
}} }} />
</Story>
``` ```

View File

@ -7,10 +7,7 @@ import MyComponent from './MyComponent.svelte';
<Meta title="A MDX story using environment variables inside a .env file" component={MyComponent}/> <Meta title="A MDX story using environment variables inside a .env file" component={MyComponent}/>
export const Template = (args) => ({ <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
Component: MyComponent,
props: args,
});
<Canvas> <Canvas>
<Story <Story
@ -18,8 +15,9 @@ export const Template = (args) => ({
args={{ args={{
propertyA: process.env.STORYBOOK_DATA_KEY, propertyA: process.env.STORYBOOK_DATA_KEY,
}} }}
> render={(args) => ({
{Template.bind({})} Component: MyComponent,
</Story> props: args,
})} />
</Canvas> </Canvas>
``` ```

View File

@ -6,18 +6,18 @@ import { Meta, Story } from '@storybook/addon-docs';
import YourComponent from './YourComponent.svelte'; import YourComponent from './YourComponent.svelte';
<!--👇 The title prop determines where your story goes in the story list --> <!--👇 The title prop determines where your story goes in the story list -->
<Meta title="YourComponent" component={YourComponent} /> <Meta title="YourComponent" component={YourComponent} />
<!--👇 We create a “template” of how args map to rendering --> <!-- Render functions are a framework specific feature to allow you control on how the component renders -->
export const Template = (args) => ({
Component: YourComponent,
props: args,
});
<!-- 👇 The args you need here will depend on your component --> <!-- 👇 The args you need here will depend on your component -->
<Story <Story
name="FirstStory" name="FirstStory"
args={{}}> args={{}}
{Template.bind({})} render={(args) => ({
</Story> Component: YourComponent,
props: args,
})} />
``` ```