mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 21:00:13 +01:00
ac01c5c89a
* Specify type before parameter name Various JSDoc `@param` entries were specified as `name {type}` rather than `{type} name`. A couple of `@return` entries have been given types as well. * Use JSDoc optional syntax rather than Closure syntax * Use @returns rather than @return * Use consistent built-in type capitalization Primitive types are lower-case, and Object is upper-case. * Separate param/return description with a dash
67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
import { Component } from 'react'
|
|
import { connect } from 'react-redux'
|
|
import PropTypes from 'prop-types'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'recompose'
|
|
import { getMessage } from '../utils/i18n-helper'
|
|
|
|
class I18nProvider extends Component {
|
|
tOrDefault = (key, defaultValue, ...args) => {
|
|
if (!key) {
|
|
return defaultValue
|
|
}
|
|
const { localeMessages: { current, en } = {}, currentLocale } = this.props
|
|
return getMessage(currentLocale, current, key, ...args) || getMessage(currentLocale, en, key, ...args) || defaultValue
|
|
}
|
|
|
|
getChildContext () {
|
|
const { localeMessages, currentLocale } = this.props
|
|
const { current, en } = localeMessages
|
|
return {
|
|
/**
|
|
* Returns a localized message for the given key
|
|
* @param {string} key - The message key
|
|
* @param {string[]} args - A list of message substitution replacements
|
|
* @returns {string|undefined|null} - The localized message if available
|
|
*/
|
|
t (key, ...args) {
|
|
return getMessage(currentLocale, current, key, ...args) || getMessage(currentLocale, en, key, ...args) || `[${key}]`
|
|
},
|
|
tOrDefault: this.tOrDefault,
|
|
tOrKey: (key, ...args) => {
|
|
return this.tOrDefault(key, key, ...args)
|
|
},
|
|
}
|
|
}
|
|
|
|
render () {
|
|
return this.props.children
|
|
}
|
|
}
|
|
|
|
I18nProvider.propTypes = {
|
|
localeMessages: PropTypes.object,
|
|
currentLocale: PropTypes.string,
|
|
children: PropTypes.object,
|
|
}
|
|
|
|
I18nProvider.childContextTypes = {
|
|
t: PropTypes.func,
|
|
tOrDefault: PropTypes.func,
|
|
tOrKey: PropTypes.func,
|
|
}
|
|
|
|
const mapStateToProps = state => {
|
|
const { localeMessages, metamask: { currentLocale } } = state
|
|
return {
|
|
currentLocale,
|
|
localeMessages,
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps)
|
|
)(I18nProvider)
|
|
|