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
9 changed files
with
276 additions
and
17 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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.