/* * 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 React from 'react'; import { EuiContext } from '@elastic/eui'; import { I18nProvider } from '@osd/i18n/react'; import { getEuiContextMapping } from './i18n_eui_mapping'; /** * Service that is responsible for i18n capabilities. * @internal */ export class I18nService { /** * Used exclusively to give a Context component to FatalErrorsService which * may render before Core successfully sets up or starts. * * Separated from `start` to disambiguate that this can be called from within * Core outside the lifecycle flow. * @internal */ public getContext(): I18nStart { const euiContextMapping = getEuiContextMapping(); const mapping = { ...euiContextMapping, }; return { Context: function I18nContext({ children }) { return ( {children} ); }, }; } public start(): I18nStart { return this.getContext(); } public stop() { // nothing to do here currently } } /** * I18nStart.Context is required by any localizable React component from \@osd/i18n and \@elastic/eui packages * and is supposed to be used as the topmost component for any i18n-compatible React tree. * * @public * */ export interface I18nStart { /** * React Context provider required as the topmost component for any i18n-compatible React tree. */ Context: ({ children }: { children: React.ReactNode }) => JSX.Element; }