signal-desktop/ts/util/setupI18n.tsx
2024-03-21 09:35:54 -07:00

38 lines
1.3 KiB
TypeScript

// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { IntlShape } from 'react-intl';
import React from 'react';
import type { LocaleMessagesType } from '../types/I18N';
import type { LocalizerType } from '../types/Util';
import { Emojify } from '../components/conversation/Emojify';
import {
createCachedIntl as createCachedIntlMain,
setupI18n as setupI18nMain,
} from './setupI18nMain';
import type { SetupI18nOptionsType } from './setupI18nMain';
import { strictAssert } from './assert';
export { isLocaleMessageType } from './setupI18nMain';
export function renderEmojify(parts: ReadonlyArray<unknown>): JSX.Element {
strictAssert(parts.length === 1, '<emojify> must contain only one child');
const text = parts[0];
strictAssert(typeof text === 'string', '<emojify> must contain only text');
return <Emojify text={text} />;
}
export function createCachedIntl(
locale: string,
icuMessages: Record<string, string>
): IntlShape {
return createCachedIntlMain(locale, icuMessages, { renderEmojify });
}
export function setupI18n(
locale: string,
messages: LocaleMessagesType,
options: Omit<SetupI18nOptionsType, 'renderEmojify'> = {}
): LocalizerType {
return setupI18nMain(locale, messages, { ...options, renderEmojify });
}