
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.
@ecubelabs/storybook-addon-intl
Advanced tools
A simple Locale switching addon. It can be used with third-party components, libraries and addons.
npm install @ecubelabs/storybook-addon-intl -D
Add the following to your .storybook/main.js
:
module.export = {
addons: ['@ecubelabs/storybook-addon-intl'],
};
src/.../your-global-layout.stories.tsx
:
export default {
component: YourGlobalLayout,
argTypes: {
locale: { intl: 'locale' },
dir: { intl: 'direction' },
},
};
react-intl
.storybook/preview.tsx
:
addDecorator((storyFn, argTypes) => {
const { globals: { locale = 'en_US' } } = argTypes;
return (
<IntlProvider locale={locale} key={locale} messages={...}>
{storyFn()}
</IntlProvider>
);
});
react-helmet
.storybook/preview.tsx
:
addDecorator((storyFn, argTypes) => {
const { globals: { locale = 'en_US', direction = 'ltr' } } = argTypes;
return (
<Helmet locale={locale} key={locale} messages={...}>
<html lang={locale} dir={direction} />
{storyFn()}
</Helmet>
);
});
.storybook/preview.ts
:
export const parameters = {
// Default: ['en', 'ko']
localeOptions: ['en_US', 'ko_KR'],
// Default: (locale: string) => ['ar', 'he'].includes(locale)
// If `true` is returned, direction is injected as "rtl". Otherwise "ltr" is injected.
directionResolver: (locale: string) => {
const [lang] = locale.split('_');
return ['ar', 'he'].includes(lang);
},
};
src/.../your-component.stories.tsx
:
export default {
component: YourComponent,
parameters: { intl: { locale: 'ko_KR' } },
};
FAQs
Controlling the locale of the stories
The npm package @ecubelabs/storybook-addon-intl receives a total of 0 weekly downloads. As such, @ecubelabs/storybook-addon-intl popularity was classified as not popular.
We found that @ecubelabs/storybook-addon-intl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.