mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
954946ae12
* fix: Re-render Mermaid diagrams in light theme for print Mermaid diagrams are rendered as SVG with theme-specific colors baked in, so when printing from dark mode the dark backgrounds carry through onto white paper. Listen for beforeprint/afterprint and re-dispatch the existing theme-changed event so the Mermaid plugin re-renders the diagrams in light theme for the duration of the print, then restores them after. The in-app print action also pre-dispatches the theme change to give Mermaid's async render time to complete before the print dialog captures the DOM. * Refactor to use media query ---------
72 lines
2.2 KiB
TypeScript
72 lines
2.2 KiB
TypeScript
import { DirectionProvider } from "@radix-ui/react-direction";
|
|
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { ThemeProvider } from "styled-components";
|
|
import GlobalStyles from "@shared/styles/globals";
|
|
import { TeamPreference, UserPreference } from "@shared/types";
|
|
import { isRTLLanguage } from "@shared/utils/rtl";
|
|
import useBuildTheme from "~/hooks/useBuildTheme";
|
|
import useStores from "~/hooks/useStores";
|
|
|
|
type Props = {
|
|
children?: React.ReactNode;
|
|
};
|
|
|
|
const Theme: React.FC = ({ children }: Props) => {
|
|
const { auth, ui } = useStores();
|
|
const { i18n } = useTranslation();
|
|
const theme = useBuildTheme(
|
|
auth.team?.getPreference(TeamPreference.CustomTheme) ||
|
|
auth.config?.customTheme ||
|
|
undefined
|
|
);
|
|
const direction = isRTLLanguage(i18n.language) ? "rtl" : "ltr";
|
|
|
|
React.useEffect(() => {
|
|
window.dispatchEvent(
|
|
new CustomEvent("theme-changed", {
|
|
detail: { isDark: ui.resolvedTheme === "dark" },
|
|
})
|
|
);
|
|
}, [ui.resolvedTheme]);
|
|
|
|
// Some editor elements such as Mermaid diagrams rely on theme-changed event
|
|
// to render the correct color.
|
|
// Listen on the print media query, which fires consistently for both the
|
|
// print dialog and print preview.
|
|
React.useEffect(() => {
|
|
const mediaQuery = window.matchMedia("print");
|
|
const handleChange = (event: MediaQueryListEvent) => {
|
|
window.dispatchEvent(
|
|
new CustomEvent("theme-changed", {
|
|
detail: {
|
|
isDark: event.matches ? false : ui.resolvedTheme === "dark",
|
|
},
|
|
})
|
|
);
|
|
};
|
|
|
|
mediaQuery.addEventListener("change", handleChange);
|
|
return () => mediaQuery.removeEventListener("change", handleChange);
|
|
}, [ui.resolvedTheme]);
|
|
|
|
return (
|
|
<DirectionProvider dir={direction}>
|
|
<ThemeProvider theme={theme}>
|
|
<>
|
|
<GlobalStyles
|
|
useCursorPointer={
|
|
// Default to showing the cursor pointer if no user is logged in (public share)
|
|
auth.user?.getPreference(UserPreference.UseCursorPointer) ?? true
|
|
}
|
|
/>
|
|
{children}
|
|
</>
|
|
</ThemeProvider>
|
|
</DirectionProvider>
|
|
);
|
|
};
|
|
|
|
export default observer(Theme);
|