rsnext/examples/with-react-intl
JJ Kasper c4dc081e70
Fix styled-jsx types when package is not hoisted (#37902)
This ensures we expose the `styled-jsx` types correctly even when the package is not hoisted from next's `node_modules` e.g. when using `pnpm`. We had an existing test that covered this although it installed `styled-jsx` at the top-level as a workaround so the test has been updated to remove this workaround. 

## Bug

- [x] Related issues linked using `fixes #number`
- [x] Integration tests added
- [ ] Errors have helpful link attached, see `contributing.md`

Fixes: https://github.com/vercel/next.js/pull/37828#discussion_r901164193
2022-06-22 12:09:22 +00:00
..
.vscode feat: upgrade react-intl workflow in example (#16215) 2020-08-27 22:59:33 +00:00
components Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00
helper Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00
lang Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00
pages Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00
.babelrc Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00
.eslintrc Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00
.gitignore feat: upgrade react-intl workflow in example (#16215) 2020-08-27 22:59:33 +00:00
next-env.d.ts Include submodules in exported type definition (#28316) 2021-11-26 14:46:56 +01:00
next.config.js Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00
package.json Fix styled-jsx types when package is not hoisted (#37902) 2022-06-22 12:09:22 +00:00
README.md Update pnpm create next-app for latest pnpm 6 and 7 (#37254) 2022-05-27 21:21:40 +00:00
tsconfig.json Update with-react-intl example (#28336) 2021-09-20 02:19:06 +00:00

Example app with React Intl

This example app shows how to integrate React Intl with Next.js.

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-react-intl with-react-intl-app
# or
yarn create next-app --example with-react-intl with-react-intl-app
# or
pnpm create next-app --example with-react-intl with-react-intl-app

Deploy it to the cloud with Vercel (Documentation).

Features of this example app

  • React Intl integration with custom App component
  • <IntlProvider> creation with locale, messages props
  • Default message extraction via @formatjs/cli integration
  • Pre-compile messages into AST with babel-plugin-formatjs for performance
  • Translation management

Translation Management

This app stores translations and default strings in the lang/ dir. The default messages (en.json in this example app) is also generated by the following script.

$ npm run i18n:extract

This file can then be sent to a translation service to perform localization for the other locales the app should support.

The translated messages files that exist at lang/*.json are only used during production, and are automatically provided to the <IntlProvider>. During development the defaultMessages defined in the source code are used. To prepare the example app for localization and production run the build script and start the server in production mode:

$ npm run build
$ npm start

You can then switch your browser's language preferences to German or French and refresh the page to see the UI update accordingly.