1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-desktop/gui/ResizableLayout/utils/useWindowResizeEvent.ts

20 lines
621 B
TypeScript

import { useEffect } from 'react';
const debounce = require('debounce');
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
export default function useWindowResizeEvent(eventEmitter: any) {
useEffect(() => {
const window_resize = debounce(() => {
eventEmitter.current.emit('resize');
}, 500);
window.addEventListener('resize', window_resize);
return () => {
window_resize.clear();
window.removeEventListener('resize', window_resize);
};
// eslint-disable-next-line @seiyab/react-hooks/exhaustive-deps -- Old code before rule was applied
}, []);
}