mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 10:15:17 -04:00
30 lines
1.2 KiB
TypeScript
30 lines
1.2 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { useEffect } from 'react'
|
|
import type { CommunicationMessages, RendererToEditorMessageType } from '../rendering-message'
|
|
import { useEditorToRendererCommunicator } from '../../../editor-page/render-context/editor-to-renderer-communicator-context-provider'
|
|
import type { Handler } from '../window-post-message-communicator'
|
|
|
|
/**
|
|
* Sets the handler for the given message type in the current editor to renderer communicator.
|
|
*
|
|
* @param messageType The message type that should be used to listen to.
|
|
* @param handler The handler that should be called if a message with the given message type was received.
|
|
*/
|
|
export const useEditorReceiveHandler = <R extends RendererToEditorMessageType>(
|
|
messageType: R,
|
|
handler?: Handler<CommunicationMessages, R>
|
|
): void => {
|
|
const editorToRendererCommunicator = useEditorToRendererCommunicator()
|
|
useEffect(() => {
|
|
if (!handler) {
|
|
return
|
|
}
|
|
editorToRendererCommunicator.on(messageType, handler)
|
|
return () => editorToRendererCommunicator.off(messageType, handler)
|
|
}, [editorToRendererCommunicator, handler, messageType])
|
|
}
|