Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@alexgorbatchev/storybook-addon-jotai
Advanced tools
A Storybook addon that allows you to use and mock React components that rely on Jotai.
A Storybook v8 addon and decorator for Jotai mocking and displaying current values in a Storybook panel.
If you want to setup parameters
to be strongly typed, see @alexgorbatchev/storybook-parameters.
npm i --save-dev @alexgorbatchev/storybook-addon-jotai
Register the addon in .storybook/main.js
export default {
stories: ['../stories/**/*.stories.tsx'],
addons: ['@alexgorbatchev/storybook-addon-jotai'],
};
Please keep in mind that the addon wraps everything with Provider
from jotai
package. It's important
that your story components don't include the Provider
, otherwise the addon won't be able to see and set
atom values.
Given a simple component:
import { useAtom, atom } from 'jotai';
const userAtom = atom(null);
export const Header = () => {
const [user] = useAtom(userAtom);
return (
<div>
{user ? (
<div>
<div>{`Logged in as ${user.name}`}</div>
<Button size="small" label="Log out" onClick={() => setUser(null)} />
</div>
) : (
<div>
<div>No one is signed in</div>
<Button size="small" label="Log in" onClick={() => setUser({ name: 'John' })} />
</div>
)}
</div>
);
};
You can write a story as
import { atomsForStorybook } from '@alexgorbatchev/storybook-addon-jotai';
import { Meta, StoryObj } from '@storybook/react';
import { User, userAtom } from './User';
type Story = StoryObj<typeof Header>;
const meta: : Meta<typeof Header> = {
title: 'User',
component: User,
};
export default meta;
export const JohnLoggedIn: Story = {
parameters: {
jotai: atomsForStorybook({
atoms: {
user: userAtom,
},
values: {
user: {
name: 'John Doe',
},
},
}),
},
};
// `jotai`, `atoms`, and `values` each can be a function for deferred evaluation.
export const JaneLoggedIn: Story = {
parameters: {
jotai: () => atomsForStorybook({
atoms: () => ({
user: userAtom,
}),
values: () => ({
user: {
name: 'Jane Doe',
},
}),
}),
};
};
export const LoggedOut: Story = {};
Strongly typed example:
import { Meta, StoryObj } from '@alexgorbatchev/storybook-parameters';
import { JotaiParameters } from '@alexgorbatchev/storybook-addon-jotai';
import { User, userAtom } from './User';
interface StoryParameters extends JotaiParameters {}
const meta: Meta<typeof Header, StoryParameters> = {
title: 'Header',
component: Header,
};
export default meta;
type Story = StoryObj<typeof Header, StoryParameters>;
export const JohnLoggedIn: Story = {
parameters: {
// `jotai` is strongly typed
jotai: atomsForStorybook({
atoms: {
user: userAtom,
},
values: {
user: {
name: 'Jane Doe',
},
},
}),
},
};
npm run storybook
starts Storybooktsup
build ./dist
FAQs
A Storybook addon that allows you to use and mock React components that rely on Jotai.
The npm package @alexgorbatchev/storybook-addon-jotai receives a total of 1,291 weekly downloads. As such, @alexgorbatchev/storybook-addon-jotai popularity was classified as popular.
We found that @alexgorbatchev/storybook-addon-jotai demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.