mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
23 lines
513 B
JavaScript
23 lines
513 B
JavaScript
|
import { useCallback } from 'react'
|
||
|
import { useIdeContext } from '../context/ide-context'
|
||
|
|
||
|
/**
|
||
|
* @param {string} eventName
|
||
|
* @param {boolean} [broadcast]
|
||
|
* @returns function
|
||
|
*/
|
||
|
export default function useScopeEventEmitter(eventName, broadcast = true) {
|
||
|
const { $scope } = useIdeContext()
|
||
|
|
||
|
return useCallback(
|
||
|
detail => {
|
||
|
if (broadcast) {
|
||
|
$scope.$broadcast(eventName, detail)
|
||
|
} else {
|
||
|
$scope.$emit(eventName, detail)
|
||
|
}
|
||
|
},
|
||
|
[$scope, eventName, broadcast]
|
||
|
)
|
||
|
}
|