-
Notifications
You must be signed in to change notification settings - Fork 5
keep phone awake on timer #305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
0915600
keep phone awake on timer
spring1843 9f8a189
Potential fix for pull request finding
spring1843 2a62e3d
Potential fix for pull request finding
spring1843 ea84131
Potential fix for pull request finding
spring1843 9a161af
Potential fix for pull request finding
spring1843 ad1d6e2
Potential fix for pull request finding
spring1843 7f93551
Potential fix for pull request finding
spring1843 a87adcc
Potential fix for pull request finding
spring1843 bcce171
Potential fix for pull request finding
spring1843 3de5e52
Potential fix for pull request finding
spring1843 4523e89
Potential fix for pull request finding
spring1843 3773d7e
Potential fix for pull request finding
spring1843 631469c
Potential fix for pull request finding
spring1843 6fc5dd8
add condition
spring1843 026959c
fix race condition
spring1843 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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,55 @@ | ||
| import { useCallback, useEffect, useRef, useState } from "react"; | ||
|
|
||
| /** | ||
| * A custom hook to manage a screen wake lock. | ||
| * | ||
| * @returns {Object} An object with a `wakeLockEnabled` boolean and a `toggleWakeLock` function. | ||
| */ | ||
| export const useWakeLock = () => { | ||
| const wakeLock = useRef<WakeLockSentinel | null>(null); | ||
| const [isLocked, setIsLocked] = useState(false); | ||
|
Copilot marked this conversation as resolved.
Copilot marked this conversation as resolved.
|
||
|
|
||
| const request = useCallback(async () => { | ||
| if (!("wakeLock" in navigator)) { | ||
| console.warn("Screen Wake Lock API not supported"); | ||
| return; | ||
| } | ||
| try { | ||
| wakeLock.current = await navigator.wakeLock.request("screen"); | ||
| setIsLocked(true); | ||
| wakeLock.current.addEventListener("release", () => { | ||
| setIsLocked(false); | ||
| }); | ||
| } catch (err) { | ||
| console.error(`Wake Lock request failed: ${err}`); | ||
| setIsLocked(false); | ||
| } | ||
|
Copilot marked this conversation as resolved.
spring1843 marked this conversation as resolved.
|
||
| }, []); | ||
|
Copilot marked this conversation as resolved.
|
||
|
|
||
| const release = useCallback(async () => { | ||
| if (wakeLock.current) { | ||
| await wakeLock.current.release(); | ||
| wakeLock.current = null; | ||
| setIsLocked(false); | ||
| } | ||
| }, []); | ||
|
Copilot marked this conversation as resolved.
|
||
|
|
||
| useEffect(() => { | ||
| const handleVisibilityChange = () => { | ||
| if (wakeLock.current && document.visibilityState === "visible") { | ||
| request(); | ||
| } | ||
| }; | ||
|
|
||
| document.addEventListener("visibilitychange", handleVisibilityChange); | ||
| document.addEventListener("fullscreenchange", handleVisibilityChange); | ||
|
|
||
| return () => { | ||
| document.removeEventListener("visibilitychange", handleVisibilityChange); | ||
| document.removeEventListener("fullscreenchange", handleVisibilityChange); | ||
| release(); | ||
|
Copilot marked this conversation as resolved.
Outdated
|
||
| }; | ||
|
Copilot marked this conversation as resolved.
Comment on lines
+103
to
+108
|
||
| }, [request, release]); | ||
|
Copilot marked this conversation as resolved.
Outdated
|
||
|
|
||
| return { isLocked, request, release }; | ||
| }; | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.