fix: remove need for redux theme from Localizer component

pull/3207/head
Audric Ackermann 7 months ago
parent b36e18b6f4
commit 682bd1fe56
No known key found for this signature in database

@ -6,7 +6,6 @@ import type {
LocalizerDictionary,
LocalizerToken,
} from '../../types/localizer';
import { useIsDarkTheme } from '../../state/selectors/theme';
import { SessionHtmlRenderer } from './SessionHTMLRenderer';
/** An array of supported html tags to render if found in a string */
@ -73,9 +72,9 @@ export function sanitizeArgs(
);
}
const StyledHtmlRenderer = styled.span<{ isDarkTheme: boolean }>`
const StyledHtmlRenderer = styled.span`
* > span {
color: ${props => (props.isDarkTheme ? 'var(--primary-color)' : 'var(--text-primary-color)')};
color: var(--renderer-span-primary-color);
}
`;
@ -96,8 +95,6 @@ const StyledHtmlRenderer = styled.span<{ isDarkTheme: boolean }>`
* ```
*/
export const Localizer = <T extends LocalizerToken>(props: LocalizerComponentProps<T>) => {
const isDarkTheme = useIsDarkTheme();
const args = 'args' in props ? props.args : undefined;
const rawString = window.i18n.getRawMessage<T, LocalizerDictionary[T]>(
@ -114,7 +111,7 @@ export const Localizer = <T extends LocalizerToken>(props: LocalizerComponentPro
return containsFormattingTags ? (
/** If the string contains a relevant formatting tag, render it as HTML */
<StyledHtmlRenderer isDarkTheme={isDarkTheme}>
<StyledHtmlRenderer>
<SessionHtmlRenderer tag={props.asTag} html={i18nString} className={props.className} />
</StyledHtmlRenderer>
) : (

@ -165,4 +165,6 @@ export const classicDark: ThemeColorVariables = {
'--file-dropzone-border-color': 'var(--primary-color)',
'--session-recording-pulse-color': hexColorToRGB(THEMES.CLASSIC_DARK.DANGER),
'--renderer-span-primary-color': 'var(--primary-color)',
};

@ -165,4 +165,6 @@ export const classicLight: ThemeColorVariables = {
'--file-dropzone-border-color': 'var(--text-primary-color)',
'--session-recording-pulse-color': hexColorToRGB(THEMES.CLASSIC_LIGHT.DANGER),
'--renderer-span-primary-color': 'var(--text-primary-color)',
};

@ -165,4 +165,6 @@ export const oceanDark: ThemeColorVariables = {
'--file-dropzone-border-color': 'var(--primary-color)',
'--session-recording-pulse-color': hexColorToRGB(THEMES.OCEAN_DARK.DANGER),
'--renderer-span-primary-color': 'var(--primary-color)',
};

@ -165,4 +165,6 @@ export const oceanLight: ThemeColorVariables = {
'--file-dropzone-border-color': 'var(--text-primary-color)',
'--session-recording-pulse-color': hexColorToRGB(THEMES.OCEAN_LIGHT.DANGER),
'--renderer-span-primary-color': 'var(--text-primary-color)',
};

@ -207,4 +207,11 @@ export type ThemeColorVariables = {
/* Session Recording */
'--session-recording-pulse-color': string;
/* HTML Renderer */
/**
* This isn't good, but we want the span color to be
* `--primary-color` on dark themes and `--text-primary-color` on light themes
*/
'--renderer-span-primary-color': string;
};

Loading…
Cancel
Save