mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
55cafb8891
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
29 lines
835 B
TypeScript
29 lines
835 B
TypeScript
import RemoteMessenger from './RemoteMessenger';
|
|
import { SerializableData } from './types';
|
|
|
|
export default class WindowMessenger<LocalInterface, RemoteInterface> extends RemoteMessenger<LocalInterface, RemoteInterface> {
|
|
public constructor(channelId: string, private remoteWindow: Window, localApi: LocalInterface|null) {
|
|
super(channelId, localApi);
|
|
|
|
window.addEventListener('message', this.handleMessageEvent);
|
|
|
|
this.onReadyToReceive();
|
|
}
|
|
|
|
private handleMessageEvent = (event: MessageEvent) => {
|
|
if (event.source !== this.remoteWindow) {
|
|
return;
|
|
}
|
|
|
|
void this.onMessage(event.data);
|
|
};
|
|
|
|
protected override postMessage(message: SerializableData): void {
|
|
this.remoteWindow.postMessage(message, '*');
|
|
}
|
|
|
|
protected override onClose(): void {
|
|
window.removeEventListener('message', this.handleMessageEvent);
|
|
}
|
|
}
|