storybook/docs/snippets/angular/component-story-custom-args-complex.mdx.mdx
2021-10-11 23:50:18 +01:00

56 lines
1.3 KiB
Plaintext

```md
<!--- YourComponent.stories.mdx -->
import { Meta, Story, Canvas } from '@storybook/addon-docs';
import { YourComponent } from './your-component.component';
<Meta title="Example of how to use argTypes and functions" component={YourComponent}/>
<!---👇 A function to apply some computations -->
export const someFunction = (valuePropertyA, valuePropertyB) => {
<!--- Makes some computations and returns something -->
};
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<!---👇 Assigns the function result to a variable -->
<Canvas>
<Story
name="A complex case with a function"
argTypes={{
propertyA: {
options: [
'Item One',
'Item Two',
'Item Three',
],
},
propertyB: {
options: [
'Another Item One',
'Another Item Two',
'Another Item Three',
],
},
}}
args={{
propertyA: 'Item One',
propertyB: 'Another Item One',
}}
render={(args) => {
const { propertyA, propertyB } = args;
const someFunctionResult = someFunction(propertyA, propertyB);
return {
props: {
...args,
someProperty: someFunctionResult,
},
};
}} />
</Canvas>
```