Installazione
Traduzione Beta Non Ufficiale
Questa pagina è stata tradotta da PageTurner AI (beta). Non ufficialmente approvata dal progetto. Hai trovato un errore? Segnala problema →
formatjs è un insieme di librerie che ti aiutano a configurare l'internazionalizzazione in qualsiasi progetto, che utilizzi React o meno.
Installazione
- npm
- yarn
npm i -S react react-intl
yarn add react react-intl
Applicazione Minima
Dopo aver seguito i passaggi precedenti, dovresti essere in grado di far funzionare un'applicazione minima come questa:
- Node
- React
- Vue3
import {createIntl, createIntlCache} from '@formatjs/intl'
// Translated messages in French with matching IDs to what you declared
const messagesInFrench = {
myMessage: "Aujourd'hui, nous sommes le {ts, date, ::yyyyMMdd}",
}
// This is optional but highly recommended
// since it prevents memory leak
const cache = createIntlCache()
// Create the `intl` object
const intl = createIntl(
{
// Locale of the application
locale: 'fr',
// Locale of the fallback defaultMessage
defaultLocale: 'en',
messages: messagesInFrench,
},
cache
)
// Aujourd'hui, nous sommes le 23/07/2020
console.log(
intl.formatMessage(
{
// Matching ID as above
id: 'myMessage',
// Default Message in English
defaultMessage: 'Today is {ts, date, ::yyyyMMdd}',
},
{ts: Date.now()}
)
)
// 19,00 €
console.log(intl.formatNumber(19, {style: 'currency', currency: 'EUR'}))
import * as React from 'react'
import {IntlProvider, FormattedMessage, FormattedNumber} from 'react-intl'
// Translated messages in French with matching IDs to what you declared
const messagesInFrench = {
myMessage: "Aujourd'hui, nous sommes le {ts, date, ::yyyyMMdd}",
}
export default function App() {
return (
<IntlProvider messages={messagesInFrench} locale="fr" defaultLocale="en">
<p>
<FormattedMessage
id="myMessage"
defaultMessage="Today is {ts, date, ::yyyyMMdd}"
values={{ts: Date.now()}}
/>
<br />
<FormattedNumber value={19} style="currency" currency="EUR" />
</p>
</IntlProvider>
)
}
Output
<p>
Aujourd'hui, nous sommes le 23/07/2020
<br />
19,00 €
</p>
import VueIntl from 'vue-intl'
import {createApp} from 'vue'
const app = createApp(App)
app.use(VueIntl, {
locale: 'fr',
defaultLocale: 'en',
messages: {
myMessage: "Aujourd'hui, nous sommes le {ts, date, ::yyyyMMdd}",
},
})
<template>
<p>
{{
$formatMessage(
{id: 'myMessage', defaultMessage: 'Today is {ts, date, ::yyyyMMdd}'},
{ts: Date.now()}
)
}}
<br />
{{ $formatNumber(19, {style: 'currency', currency: 'EUR'}) }}
</p>
</template>
Output
<p>
Aujourd'hui, nous sommes le 23/07/2020
<br />
19,00 €
</p>
Aggiunta del nostro babel-plugin/TypeScript Transformer per la compilazione
I nostri strumenti supportano babel, ts-loader, ts-jest, rollup-plugin-typescript2 e ts-patch per la compilazione dei messaggi:
Babel
Se stai utilizzando babel, aggiungi babel-plugin-formatjs alle tue dipendenze:
- npm
- yarn
npm i -D babel-plugin-formatjs
yarn add -D babel-plugin-formatjs
e aggiungilo al tuo babel.config.js o .babelrc:
{
"plugins": [
[
"formatjs",
{
"idInterpolationPattern": "[sha512:contenthash:base64:6]",
"ast": true
}
]
]
}
ts-loader
- npm
- yarn
npm i -D @formatjs/ts-transformer
yarn add -D @formatjs/ts-transformer
import {transform} from '@formatjs/ts-transformer'
module.exports = {
...otherConfigs,
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
getCustomTransformers() {
return {
before: [
transform({
overrideIdFn: '[sha512:contenthash:base64:6]',
}),
],
}
},
},
},
],
},
],
},
}
ts-jest nel jest.config.js
- npm
- yarn
npm i -D @formatjs/ts-transformer
yarn add -D @formatjs/ts-transformer
Consulta la guida di ts-jest per incorporare trasformatori AST personalizzati.
ts-patch
- npm
- yarn
npm i -D @formatjs/ts-transformer
yarn add -D @formatjs/ts-transformer
{
"compilerOptions": {
"plugins": [
{
"transform": "@formatjs/ts-transformer",
"import": "transform",
"type": "config",
"overrideIdFn": "[sha512:contenthash:base64:6]",
"ast": true
}
]
}
}
rollup-plugin-typescript2
- npm
- yarn
npm i -D @formatjs/ts-transformer
yarn add -D @formatjs/ts-transformer
// rollup.config.js
import typescript from 'rollup-plugin-typescript2'
import {transform} from '@formatjs/ts-transformer'
export default {
input: './main.ts',
plugins: [
typescript({
transformers: () => ({
before: [
transform({
overrideIdFn: '[sha512:contenthash:base64:6]',
ast: true,
}),
],
}),
}),
],
}