返回集成
react-i18next

集成React i18next与 Storybook

React i18next 是一个用于本地化应用程序的国际化库。
准备工作

在我们开始之前,请确保你有一个使用 react-i18next 的正常运行的 React 应用程序,并且已设置 Storybook 6.0 或更高版本。如果你需要资源来设置这些,我在下面提供了一些建议

或者,如果你更喜欢视频,请查看 Chantastic 的精彩视频,了解如何将 i18next 添加到你的 React 应用程序。

1. 将 i18next 暴露给 Storybook

为了使你的翻译在你的 stories 中可用,你首先需要将你的 i18next 实例暴露给 Storybook。 这是一个来自我的 React 应用程序中使用的 ./src/i18n.js 文件的 i18next 实例示例。

// src/i18n.js
 
import i18n from 'i18next';
import Backend from 'i18next-http-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
 
i18n
  .use(Backend) // lazy loads translations from /public/locales
  .use(LanguageDetector) // detect user language
  .init({
    fallbackLng: 'en',
    debug: true,
    interpolation: {
      escapeValue: false,
    },
  });
 
export default i18n;

为了将此实例暴露给 Storybook,我们可以将其导入到 ./.storybook/preview.js 文件中,Storybook 在其中保存其共享的 story 配置。

// .storybook/preview.jsx
 
import i18n from '../src/i18n';

2. 使用 i18next 提供程序包装你的 stories

现在 Storybook 可以访问 i18next 了,我们需要与我们的 stories 共享它。为此,我们将创建一个装饰器来包装我们的 stories。

// .storybook/preview.jsx
 
import React, { Suspense } from 'react';
import { I18nextProvider } from 'react-i18next';
import i18n from '../src/i18n';
 
// Wrap your stories in the I18nextProvider component
const withI18next = (Story) => {
  return (
    // This catches the suspense from components not yet ready (still loading translations)
    // Alternative: set useSuspense to false on i18next.options.react when initializing i18next
    <Suspense fallback={<div>loading translations...</div>}>
      <I18nextProvider i18n={i18n}>
        <Story />
      </I18nextProvider>
    </Suspense>
  );
};
 
// export decorators for storybook to wrap your stories in
export const decorators = [withI18next];

太棒了! 我们的 stories 现在正式可以访问我们的翻译了。 如果我们更改 ./src/i18n.js 中定义的 lng,你将看到你的 stories 以新语言重新加载。

Manually changing the locale from English to French

3. 添加语言切换器

硬编码你的语言环境很烦人,并且对任何查看你部署的 Storybook 的人都没有帮助,因此让我们在 Storybook 工具栏中添加一个语言切换器。 如果你想了解有关切换器的更多信息,请查看 Yann Braga 关于添加主题切换器的文章。

为此,我们可以在 .storybook/preview.js 中声明一个名为 locale 的全局变量,并将其分配给要从中选择的受支持语言列表。

// .storybook/preview.jsx
 
/* Snipped for brevity */
 
// Create a global variable called locale in storybook
// and add a menu in the toolbar to change your locale
export const globalTypes = {
  locale: {
    name: 'Locale',
    description: 'Internationalization locale',
    toolbar: {
      icon: 'globe',
      items: [
        { value: 'en', title: 'English' },
        { value: 'de', title: 'Deutsch' },
      ],
      showName: true,
    },
  },
};

回顾 Storybook,我们现在可以看到,我们刚刚设置的选项的 “Locale” 切换器已添加到工具栏中。

The locale switcher in the Storybook toolbar

现在让我们更新我们的装饰器,以便在我们选择新语言时更改我们的语言环境。

// .storybook/preview.jsx
 
/* Snipped for brevity */
 
const withI18next = (Story, context) => {
  const { locale } = context.globals;
 
  // When the locale global changes
  // Set the new locale in i18n
  useEffect(() => {
    i18n.changeLanguage(locale);
  }, [locale]);
 
  return (
    <Suspense fallback={<div>loading translations...</div>}>
      <I18nextProvider i18n={i18n}>
        <Story />
      </I18nextProvider>
    </Suspense>
  );
};

瞧——一个功能齐全的语言切换器,用于你的 stories,由 react-i18next 提供支持!

Switching between English and German using the locale switcher

4. 设置文档方向

某些语言不是像英语那样从左到右阅读的。 例如,阿拉伯语是从右到左阅读的。 HTML 通过 dir 属性内置了对此的支持。

首先,让我们通过在 globalTypes 的 items 数组中添加一个对象,将阿拉伯语作为选项添加到我们的语言切换器中。

// .storybook/preview.jsx
 
/* Snipped for brevity */
 
// Create a global variable called locale in storybook
// and add a menu in the toolbar to change your locale
export const globalTypes = {
  locale: {
    name: 'Locale',
    description: 'Internationalization locale',
    toolbar: {
      icon: 'globe',
      items: [
        { value: 'en', title: 'English' },
        { value: 'de', title: 'Deutsch' },
        { value: 'ar', title: 'عربي' },
      ],
      showName: true,
    },
  },
};

使用 i18next 的 dir(lng) 函数和 languageChanged 事件,我们可以为选定的语言环境设置文档方向。

// .storybook/preview.jsx
 
/* Snipped for brevity */
 
// When The language changes, set the document direction
i18n.on('languageChanged', (locale) => {
  const direction = i18n.dir(locale);
  document.dir = direction;
});

现在,当我们把 storybook 设置为阿拉伯语时,文档方向被设置为 ”rtl” 🎉

Switching between English, German, and Arabic with the locale switcher

标签
贡献者
  • shaunlloyd
    shaunlloyd