-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add auto orbit after no user interaction
- Loading branch information
Showing
8 changed files
with
135 additions
and
50 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
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,49 @@ | ||
import { useCallback, useEffect, useRef } from "react"; | ||
|
||
export const useTimeout = (delayMs: number, onTimerEnd: () => void) => { | ||
const savedCallback = useRef(onTimerEnd); | ||
const handle = useRef<NodeJS.Timeout | null>(null); | ||
|
||
// Handle changing callback fxn | ||
useEffect(() => { | ||
savedCallback.current = onTimerEnd; | ||
}, [onTimerEnd]); | ||
|
||
// allow reseting the timer | ||
const reset = useCallback(() => { | ||
if (handle.current) { | ||
clearTimeout(handle.current); | ||
} | ||
|
||
if (delayMs <= 0) { | ||
return; | ||
} | ||
|
||
handle.current = setTimeout(() => { | ||
savedCallback.current(); | ||
}, delayMs); | ||
}, []); | ||
|
||
// Initialize and cleanup | ||
useEffect(() => { | ||
if (handle.current) { | ||
clearTimeout(handle.current); | ||
} | ||
|
||
if (delayMs <= 0) { | ||
return; | ||
} | ||
|
||
handle.current = setTimeout(() => { | ||
savedCallback.current(); | ||
}, delayMs); | ||
|
||
return () => { | ||
if (handle.current) { | ||
clearTimeout(handle.current); | ||
} | ||
}; | ||
}, [delayMs]); | ||
|
||
return { reset }; | ||
}; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.