/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. * * Any modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ /* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import * as PropTypes from 'prop-types'; import * as React from 'react'; import * as i18n from '../core'; import { isPseudoLocale, translateUsingPseudoLocale } from '../core/pseudo_locale'; /** * To translate label that includes nested `FormattedMessage` instances React Intl * replaces them with special placeholders (@__uid__@ELEMENT-uid-counter@__uid__@) * and maps them back with nested translations after `formatMessage` processes * original string, so we shouldn't modify these special placeholders with pseudo * translations otherwise React Intl won't be able to properly replace placeholders. * It's implementation detail of the React Intl, but since pseudo localization is dev * only feature we should be fine here. * @param message */ function translateFormattedMessageUsingPseudoLocale(message: string) { const formattedMessageDelimiter = message.match(/@__.{10}__@/); if (formattedMessageDelimiter !== null) { return message .split(formattedMessageDelimiter[0]) .map((part) => (part.startsWith('ELEMENT-') ? part : translateUsingPseudoLocale(part))) .join(formattedMessageDelimiter[0]); } return translateUsingPseudoLocale(message); } /** * If the locale is our pseudo locale (e.g. en-xa), we override the * intl.formatMessage function to display scrambled characters. We are * overriding the context rather than using injectI18n, because the * latter creates a new React component, which causes React diffs to * be inefficient in some cases, and can cause React hooks to lose * their state. */ export class PseudoLocaleWrapper extends React.PureComponent { public static propTypes = { children: PropTypes.element.isRequired }; public static contextTypes = { intl: PropTypes.object.isRequired, }; constructor(props: { children: React.ReactNode }, context: any) { super(props, context); if (isPseudoLocale(i18n.getLocale())) { const formatMessage = context.intl.formatMessage; context.intl.formatMessage = (...args: any[]) => translateFormattedMessageUsingPseudoLocale(formatMessage(...args)); } } public render() { return this.props.children; } }