mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
19 lines
730 B
TypeScript
19 lines
730 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();
|
||
|
|
||
|
(window as any).joplin = messenger.remoteApi.api.joplin;
|
||
|
|
||
|
reportUnhandledErrors(messenger.remoteApi.onError);
|
||
|
wrapConsoleLog(messenger.remoteApi.onLog);
|
||
|
};
|
||
|
|
||
|
export default initializePluginBackgroundIframe;
|