mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
20 lines
830 B
TypeScript
20 lines
830 B
TypeScript
import WindowMessenger from '@joplin/lib/utils/ipc/WindowMessenger';
|
|
import { PluginMainProcessApi, PluginWebViewApi } from '../types';
|
|
import reportUnhandledErrors from './utils/reportUnhandledErrors';
|
|
import wrapConsoleLog from './utils/wrapConsoleLog';
|
|
|
|
|
|
export const initializePluginBackgroundIframe = async (messageChannelId: string) => {
|
|
const localApi = { };
|
|
const messenger = new WindowMessenger<PluginWebViewApi, PluginMainProcessApi>(messageChannelId, parent, localApi);
|
|
await messenger.awaitRemoteReady();
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
(window as any).joplin = messenger.remoteApi.api.joplin;
|
|
|
|
reportUnhandledErrors(messenger.remoteApi.onError);
|
|
wrapConsoleLog(messenger.remoteApi.onLog);
|
|
};
|
|
|
|
export default initializePluginBackgroundIframe;
|