next-fbt
v0.5.0
Published
Easily integrate FBT with Next.js apps.
Downloads
7
Maintainers
Readme
next-fbt
Easily integrate FBT with Next.js apps.
Useful links
facebook/fbt
- a JavaScript internationalization frameworkimport.meta
- metadata of a JavaScript module
Setup
Install.
npm install next-fbt npm install -D next-fbt-cli next-fbt-babel
Create
next-fbt.config.js
./** @type {import('next-fbt').Config} */ module.exports = { // Regular configuration for `i18n` key for Next's config. i18n: { // These are all the locales you want to support in // your application. locales: ['en-US', 'pl-PL', 'es-ES'], // This is the default locale you want to be used when visiting // a non-locale prefixed path e.g. `/hello`. defaultLocale: 'en-US', // Always use the locale that is specified in url // without redirecting to the one detected by the browser. localeDetection: false, }, // Configuration for 'next-fbt' and 'next-fbt-cli'. nextFbt: { // The root url your want your translation // files to be served from. // The pathname of `publicUrl` (here `i18n`) determines // the directory name (inside ./public) where files with translations // will be put. publicUrl: 'http://localhost:3000/i18n', // Split translations by file path (relative to the CWD). // Must be array of [string, string[]]. groups: [ // Example: ['components', ['src/components/*']], ['home-page', ['pages/index.tsx']], ['other-pages', ['pages/*', 'src/pages/*']], // Above configuration will result in: // - all translations under "src/components" directory will land // in 'public/i18n/<locale>/components.json // - all translations from "pages/index.tsx" file will land // in 'public/i18n/<locale>/home-page.json // - all translations from "pages" directory (but not from "pages/index.tsx" file) // will land in 'public/i18n/<locale>/other-pages.json // - translations from files that don't match any of above // patterns will be extracted to 'public/i18n/<locale>/main.json' ], }, };
Update Babel config.
module.exports = {
- presets: ['next/babel'],
+ presets: ['next-fbt-babel/preset'],
+ plugins: ['next-fbt-babel/plugin'],
};
Wrap next config and pass options.
// next-config.js const { withNextFbtConfig } = require('next-fbt/config'); const nextFbtConfig = require('./next-fbt.config'); module.exports = withNextFbtConfig({ i18n: nextFbtConfig.i18n, nextFbt: nextFbtConfig.nextFbt, // ^ you can also just `...nextFbtConfig` /* the rest of the config */ });
next-fbt.config
still has to be a CommonJS// next-config.mjs import { withNextFbtConfig } from 'next-fbt/config'; import nextFbtConfig from './next-fbt.config.js'; export default withNextFbtConfig({ i18n: nextFbtConfig.i18n, nextFbt: nextFbtConfig.nextFbt, /* the rest of the config */ });
Wrap app with provider.
// pages/_app.tsx import { appWithNextFbt } from 'next-fbt'; function App({ Component, pageProps }) { return <Component {...pageProps} />; } export default appWithNextFbt(App);
// pages/_app.tsx import NextApp from 'next/app'; export default appWithNextFbt(NextApp);
// pages/_app.tsx import { NextFbtProvider } from 'next-fbt'; function App({ Component, pageProps }) { // This is basically the same what `appWithNextFbt` does. return ( <NextFbtProvider __NEXT_FBT_PROPS__={pageProps.__NEXT_FBT_PROPS__}> <Component {...pageProps} /> </NextFbtProvider> ); } export default App;
Fetch translations for your page.
Notice, that for the translations to be fetched, the file you declare the fetching logic has to match any group from the config file.
import { getPropsFetcher } from 'next-fbt'; export default function Page() { // your regular page component } export const { getServerSideProps } = getPropsFetcher(import.meta.url);
// same as above - export const { getServerSideProps } = getPropsFetcher(import.meta.url); + export const { getStaticProps } = getPropsFetcher(import.meta.url);
import { getProps } from 'next-fbt'; export function getServerSideProps(ctx) { // your logic for `yourProps`... const fbtProps = await getProps(ctx, import.meta.url); return { props: { ...fbtProps, ...yourProps, }, }; }
Lazy-loading for dynamic components
The library has first-class support for lazy loading of translations for dynamic components (via next/dynamic
).
Replace
next/dynamic
withnext-fbt/dynamic
.This is a little wrapper around
next/dynamic
that fetches required translations for components that is going to be rendered.// Notice that difference in the import source (`next/dynamic` => `next-fbt/dynamic`). import dynamic from 'next-fbt/dynamic'; // Limitation: the wrapper can be used only with components that are rendered on the client. // If you wish to have SSR-rendered component, use regular `next/dynamic` and fetch translations // via `getServerSideProps` / `getStaticProps`. const Component = dynamic(() => import('/path/to/component'), { ssr: false }); export function Page() { return ( // The component will be rendered after translations are fetched. <Component /> ); }
Add a property on a component so
next-fbt/dynamic
knows what to fetch.If you use
memo
orforwardRef
theassignTranslations
has to wrap the memoized/ forwarded component, sincememo
andforwadRef
loose non-React properties on a component.import { assignTranslations } from 'next-fbt'; export default function DynamicComponent() { return (/* some jsx */) } assignTranslations(DynamicComponent, import.meta.url);
Collecting FBT's for translations
npx next-fbt-collect
This will output .cache/next-fbt/source-strings.json
file which you can upload to translations service that supports translating FBT's (like Crowdin).
Creating translation files
After you translate the source string to other languages, download the translations to /path/to/downloaded
and run
npx next-fbt-translate /path/to/downloaded
This will create public/i18n
directory with translation files.