36 lines
880 B
React
36 lines
880 B
React
|
// @flow
|
||
|
import React from 'react';
|
||
|
|
||
|
type Props = {
|
||
|
tokens: Object,
|
||
|
children: string, // e.g. "Read %faq_link% for more detail"
|
||
|
};
|
||
|
|
||
|
export default function I18nMessage(props: Props) {
|
||
|
const message = __(props.children),
|
||
|
regexp = /%\w+%/g,
|
||
|
matchingGroups = message.match(regexp);
|
||
|
|
||
|
if (!matchingGroups) {
|
||
|
return message;
|
||
|
}
|
||
|
|
||
|
const messageSubstrings = message.split(regexp),
|
||
|
tokens = props.tokens;
|
||
|
|
||
|
return (
|
||
|
<React.Fragment>
|
||
|
{messageSubstrings.map((substring, index) => {
|
||
|
const token =
|
||
|
index < matchingGroups.length ? matchingGroups[index].substring(1, matchingGroups[index].length - 1) : null; // get token without % on each side
|
||
|
return (
|
||
|
<React.Fragment key={index}>
|
||
|
{substring}
|
||
|
{token && tokens[token]}
|
||
|
</React.Fragment>
|
||
|
);
|
||
|
})}
|
||
|
</React.Fragment>
|
||
|
);
|
||
|
}
|