
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@verkstedt/storybook-store-decorator
Advanced tools
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
.storybook/config.js
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.
[name].stories.js
fileimport 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')
FAQs
Provide a store decorator for storybookjs
We found that @verkstedt/storybook-store-decorator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.