1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-i18next/pages/index.js
whphhg 8acdae66d7 Add support for fetching multiple translation files (#2743)
* Add support for fetching multiple translation files

* Cleanup
2017-08-13 02:28:20 +02:00

39 lines
880 B
JavaScript

import React, { Component } from 'react'
import { I18nextProvider } from 'react-i18next'
import startI18n from '../tools/startI18n'
import { getTranslation } from '../tools/translationHelpers'
import Title from '../components/Title'
import Post from '../components/Post'
// get language from query parameter or url path
const lang = 'id'
export default class Homepage extends Component {
static async getInitialProps () {
const translations = await getTranslation(
lang,
['common', 'namespace1'],
'http://localhost:3000/static/locales/'
)
return { translations }
}
constructor (props) {
super(props)
this.i18n = startI18n(props.translations, lang)
}
render (props) {
return (
<I18nextProvider i18n={this.i18n}>
<div>
<Title />
<Post />
</div>
</I18nextProvider>
)
}
}