-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/// <reference types="node" /> | ||
import EventEmitter from 'events'; | ||
/** | ||
* Subscribe to event. | ||
* | ||
* @param emitter - Events emitter | ||
* @param event - Event | ||
* @param callback - Event callback | ||
* @param depends - Callback dependencies | ||
*/ | ||
export declare function useEvent(emitter: EventEmitter, event: string, callback: () => void, depends: any[]): void; |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import EventEmitter from 'events'; | ||
import { useEffect } from 'react'; | ||
|
||
/** | ||
* Subscribe to event. | ||
* | ||
* @param emitter - Events emitter | ||
* @param event - Event | ||
* @param callback - Event callback | ||
* @param depends - Callback dependencies | ||
*/ | ||
export function useEvent( | ||
emitter: EventEmitter, | ||
event: string, | ||
callback: () => void, | ||
depends: any[], | ||
) { | ||
useEffect(() => { | ||
emitter.on(event, callback); | ||
|
||
return () => { | ||
emitter.off(event, callback); | ||
}; | ||
}, [event, ...depends]); | ||
} |