Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@dump247/storybook-state
Advanced tools
An extension for Storybook that manages the state of a stateless component. This makes it easier to write stories for stateless components.
npm install --save-dev @dump247/storybook-state
Register the extension in addons.js
.
import '@dump247/storybook-state/register';
Use the extension to create a story.
import React from 'react';
import { storiesOf } from '@storybook/react';
import { withState } from '@dump247/storybook-state';
storiesOf('Checkbox', module)
.add('with check', withState({ checked: false }, (store) => (
<Checkbox {...store.state}
label="Test Checkbox"
onChange={(checked) => store.set({ checked })}/>
));
withState(initialState, storyFn)
initialState
is the initial state of the component. This is an object where each key is a
state value to set.
storyFn
is the function that produces the story component. This function receives a Store
object as the parameter.
store.state
Object that contains the current state.
store.set(state)
Set the given state keys. The state
parameter is an object with the keys and values to set.
This only sets/overwrites the specific keys provided.
store.reset()
Reset the store to the initial state.
This project includes a storybook panel that displays the current state and allows for resetting the state.
FAQs
Manage component state in storybook stories.
The npm package @dump247/storybook-state receives a total of 4,018 weekly downloads. As such, @dump247/storybook-state popularity was classified as popular.
We found that @dump247/storybook-state demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.