generated from SteamDeckHomebrew/decky-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tutorials for Virtual Display and SBS modes
- Loading branch information
Showing
12 changed files
with
344 additions
and
22 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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,17 @@ | ||
import {Dispatch, SetStateAction, useEffect, useState} from "react"; | ||
|
||
// allows for setting a dirty state that doesn't take effect (as a stable state) until a delay has passed without change | ||
export function useStableState<T>(initialState: T, delay: number) : [T, T, Dispatch<SetStateAction<T>>] { | ||
const [dirtyState, setDirtyState] = useState(initialState); | ||
const [stableState, setStableState] = useState(initialState); | ||
|
||
useEffect(() => { | ||
const timeoutId = setTimeout(() => { | ||
setStableState(dirtyState); | ||
}, delay); | ||
|
||
return () => clearTimeout(timeoutId); | ||
}, [dirtyState, delay]); | ||
|
||
return [dirtyState, stableState, setDirtyState]; | ||
} |
Oops, something went wrong.