Scoped data provider for storybook stories. Add store objects to a global/scoped store and access their props from you're stories components.
npm npm -i storybook-store-decorator
yarn yarn add storybook-store-decorator
storeObject
must be on object
import withStoreDecorator from 'storybook-store-decorator'
...
addDecorator(withStoreDecorator({
props: storeObject, // values for the store
globalStore: true, // sets the object as the global default one
reset: true // replace the store instead of merge the new values
}))
Using globalStore: true
and reset: true
will ensure, that oin every start of storybook, we start
with an empty store into which ouer storeObject
will be inserted.
import withStoreDecorator from 'storybook-store-decorator'
...
storysOf('myStory', module)
.addDecorator(withStoreDecorator({
props: storeObject, // this values will be merged into the current store (the global store)
// this changes are available for 'storyA', 'storyB' and 'storyC'
}))
.add('storyA', () => <storyA />)
.addDecorator(withStoreDecorator({
props: storeObject, // this values will be merged into the current store
// (global store + previouse changes)
// this changes are just available for 'storyB' and 'storyC'
}))
.add('storyB', () => <storyB />)
.add('storyC', () => <storyC />)
import { useStoreWith } from 'storybook-store-decorator'
...
storysOf('myStory', module)
.add('storyA', () => {
useStoreWith({
props: storeObject, // this values will be merged into the current store
// this changes are just available for 'storyA'
})
return <storyA />
})
.add('storyB', () => <storyB />)
As described before, scoped changes will just last the current story or storysOf()
chain.
Should you ever want to modify the global store set globalStore: true
now you're props will be
merged into the global store.
Be aware, that this changes will be applyed when the decorator is actually called.
Setting reset: true
will clear all entries from the store before merging the new props.
The combination globalStore: true
and reset: true
which is used in the global decorator example
ensures, that storybook starts with a clean new shop.
Retrieves a prop
from the storeObject
import { getProp } from 'storybook-store-decorator'
...
const prop = getProp('propName')