You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/basic/I18n.tsx

76 lines
2.6 KiB
TypeScript

import React from 'react';
import type {
GetMessageArgs,
I18nProps,
LocalizerDictionary,
LocalizerToken,
} from '../../types/Localizer';
import { useSelector } from 'react-redux';
import styled from 'styled-components';
import { isDarkTheme } from '../../state/selectors/theme';
import { SessionHtmlRenderer } from './SessionHTMLRenderer';
/** An array of supported html tags to render if found in a string */
const supportedFormattingTags = ['b', 'i', 'u', 's', 'br', 'span'];
/** A regex to match supported formatting tags */
const formattingTagRegex = new RegExp(
`<(?:${supportedFormattingTags.join('|')})>.*?</(?:${supportedFormattingTags.join('|')})>`,
'g'
);
const supportedCustomTags = ['emoji'];
const customTagRegex = new RegExp(
`<(?:${supportedFormattingTags.join('|')})>.*?</(?:${supportedCustomTags.join('|')})>`,
'g'
);
const StyledHtmlRenderer = styled.span<{ darkMode: boolean }>`
span {
color: ${props => (props.darkMode ? 'var(--primary-color)' : 'var(--text-primary-color)')};
}
`;
/**
* Retrieve a localized message string, substituting dynamic parts where necessary and formatting it as HTML if necessary.
*
* @param token - The token identifying the message to retrieve and an optional record of substitution variables and their replacement values.
* @param args - An optional record of substitution variables and their replacement values. This is required if the string has dynamic parts.
* @param as - An optional HTML tag to render the component as. Defaults to a fragment, unless the string contains html tags. In that case, it will render as HTML in a div tag.
*
* @returns The localized message string with substitutions and formatting applied.
*
* @example
* ```tsx
* <I18n token="about" />
* <I18n token="about" as='h1' />
* <I18n token="disappearingMessagesFollowSettingOn" args={{ time: 10, type: 'mode' }} />
* ```
*/
export const I18n = <T extends LocalizerToken>(props: I18nProps<T>) => {
const darkMode = useSelector(isDarkTheme);
const i18nArgs = 'args' in props ? props.args : undefined;
const i18nString = window.i18n<T, LocalizerDictionary[T]>(
...([props.token, i18nArgs] as GetMessageArgs<T>)
);
const containsFormattingTag = i18nString.match(formattingTagRegex);
const containsCustomTag = i18nString.match(customTagRegex);
/** If the string contains a relevant formatting tag, render it as HTML */
if (containsFormattingTag || containsCustomTag) {
return (
<StyledHtmlRenderer darkMode={darkMode}>
<SessionHtmlRenderer tag={props.as} html={i18nString} />
</StyledHtmlRenderer>
);
}
const Comp = props.as ?? React.Fragment;
return <Comp>{i18nString}</Comp>;
};