1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/contexts/i18n.js

60 lines
1.4 KiB
JavaScript
Raw Normal View History

import React, { Component, createContext, useMemo } from 'react'
import PropTypes from 'prop-types'
import { useSelector } from 'react-redux'
import { getMessage } from '../helpers/utils/i18n-helper'
import { getCurrentLocale } from '../ducks/metamask/metamask'
2020-11-03 00:41:28 +01:00
import {
getCurrentLocaleMessages,
getEnLocaleMessages,
} from '../ducks/locale/locale'
export const I18nContext = createContext((key) => `[${key}]`)
export const I18nProvider = (props) => {
const currentLocale = useSelector(getCurrentLocale)
const current = useSelector(getCurrentLocaleMessages)
const en = useSelector(getEnLocaleMessages)
const t = useMemo(() => {
2020-11-03 00:41:28 +01:00
return (key, ...args) =>
getMessage(currentLocale, current, key, ...args) ||
getMessage(currentLocale, en, key, ...args)
}, [currentLocale, current, en])
2020-11-03 00:41:28 +01:00
return <I18nContext.Provider value={t}>{props.children}</I18nContext.Provider>
}
I18nProvider.propTypes = {
children: PropTypes.node,
}
I18nProvider.defaultProps = {
children: undefined,
}
export class LegacyI18nProvider extends Component {
static propTypes = {
children: PropTypes.node,
}
static defaultProps = {
children: undefined,
}
static contextType = I18nContext
static childContextTypes = {
t: PropTypes.func,
}
2020-11-03 00:41:28 +01:00
getChildContext() {
return {
t: this.context,
}
}
2020-11-03 00:41:28 +01:00
render() {
return this.props.children
}
}