1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/app-mobile/components/plugins/dialogs/hooks/useWebViewSetup.ts
2024-08-02 14:51:49 +01:00

52 lines
1.5 KiB
TypeScript

import { useEffect } from 'react';
import { DialogWebViewApi } from '../../types';
import shim from '@joplin/lib/shim';
import { themeStyle } from '../../../../components/global-style';
import themeToCss from '@joplin/lib/services/style/themeToCss';
interface Props {
themeId: number;
scriptPaths: string[];
dialogControl: DialogWebViewApi;
pluginBaseDir: string;
// Whenever the WebView reloads, we need to re-inject CSS and JavaScript.
webViewLoadCount: number;
}
const useWebViewSetup = (props: Props) => {
const { scriptPaths, dialogControl, pluginBaseDir, themeId } = props;
useEffect(() => {
const jsPaths = [];
const cssPaths = [];
for (const rawPath of scriptPaths) {
const resolvedPath = shim.fsDriver().resolveRelativePathWithinDir(pluginBaseDir, rawPath);
if (resolvedPath.match(/\.css$/i)) {
cssPaths.push(resolvedPath);
} else {
jsPaths.push(resolvedPath);
}
}
if (shim.mobilePlatform() === 'web') {
void (async () => {
for (const path of [...jsPaths, ...cssPaths]) {
void dialogControl.runScript(path, await shim.fsDriver().readFile(path, 'utf-8'));
}
})();
} else {
void dialogControl.includeCssFiles(cssPaths);
void dialogControl.includeJsFiles(jsPaths);
}
}, [dialogControl, scriptPaths, props.webViewLoadCount, pluginBaseDir]);
useEffect(() => {
const theme = themeStyle(themeId);
const themeVariableCss = themeToCss(theme);
void dialogControl.setThemeCss(themeVariableCss);
}, [dialogControl, themeId, props.webViewLoadCount]);
};
export default useWebViewSetup;