mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
39 lines
982 B
Plaintext
39 lines
982 B
Plaintext
```js
|
|
// YourComponent.stories.js
|
|
|
|
import YourComponent from './YourComponent.svelte';
|
|
|
|
export default {
|
|
title: 'A complex case with a function',
|
|
component: YourComponent,
|
|
//👇 Creates specific argTypes
|
|
argTypes: {
|
|
propertyA: {
|
|
options: ['Item One', 'Item Two', 'Item Three'],
|
|
control: { type: 'select' }, // Automatically inferred when 'options' is defined
|
|
},
|
|
propertyB: {
|
|
options: ['Another Item One', 'Another Item Two', 'Another Item Three'],
|
|
},
|
|
},
|
|
};
|
|
|
|
//👇 Some function to demonstrate the behavior
|
|
const someFunction = (valuePropertyA, valuePropertyB) => {
|
|
// Makes some computations and returns something
|
|
};
|
|
|
|
const Template = (args) => {
|
|
const { propertyA, propertyB } = args;
|
|
|
|
//👇 Assigns the function result to a variable
|
|
const someFunctionResult = someFunction(propertyA, propertyB);
|
|
return {
|
|
Component: YourComponent,
|
|
props: {
|
|
...args,
|
|
someProperty: someFunctionResult,
|
|
},
|
|
};
|
|
};
|
|
``` |