mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-25 07:32:19 -05:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import * as React from "react";
|
|
import { useMatches } from "remix";
|
|
import { z } from "zod";
|
|
import { LoggedInUserSchema } from "~/validators/user";
|
|
|
|
export const useUser = () => {
|
|
const [root] = useMatches();
|
|
|
|
const parsed = LoggedInUserSchema.parse(root.data);
|
|
return parsed?.user;
|
|
};
|
|
|
|
export const useBaseURL = () => {
|
|
const [root] = useMatches();
|
|
|
|
const parsed = z.object({ baseURL: z.string() }).parse(root.data);
|
|
return parsed.baseURL;
|
|
};
|
|
|
|
// TODO: fix causes memory leak
|
|
/** @link https://stackoverflow.com/a/64983274 */
|
|
export const useTimeoutState = <T>(
|
|
defaultState: T
|
|
): [
|
|
T,
|
|
(action: React.SetStateAction<T>, opts?: { timeout: number }) => void
|
|
] => {
|
|
const [state, _setState] = React.useState<T>(defaultState);
|
|
const [currentTimeoutId, setCurrentTimeoutId] = React.useState<
|
|
NodeJS.Timeout | undefined
|
|
>();
|
|
|
|
const setState = React.useCallback(
|
|
(action: React.SetStateAction<T>, opts?: { timeout: number }) => {
|
|
if (currentTimeoutId != null) {
|
|
clearTimeout(currentTimeoutId);
|
|
}
|
|
|
|
_setState(action);
|
|
|
|
const id = setTimeout(
|
|
() => _setState(defaultState),
|
|
opts?.timeout ?? 4000
|
|
);
|
|
setCurrentTimeoutId(id);
|
|
},
|
|
[currentTimeoutId, defaultState]
|
|
);
|
|
return [state, setState];
|
|
};
|