mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 17:38:27 +00:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { type UIMatch } from "@remix-run/react";
|
|
import type { User } from "~/models/user.server";
|
|
import { type loader } from "~/root";
|
|
import { useChanged } from "./useChanged";
|
|
import { useTypedMatchesData } from "./useTypedMatchData";
|
|
|
|
export function useIsImpersonating(matches?: UIMatch[]) {
|
|
const data = useTypedMatchesData({
|
|
id: "routes/_app.workspace.$workspaceSlug",
|
|
matches,
|
|
});
|
|
return data?.isImpersonating === true;
|
|
}
|
|
|
|
export function useOptionalUser(matches?: UIMatch[]): User | undefined {
|
|
const routeMatch = useTypedMatchesData<typeof loader>({
|
|
id: "root",
|
|
matches,
|
|
});
|
|
|
|
return routeMatch?.user ?? undefined;
|
|
}
|
|
|
|
export function useUser(matches?: UIMatch[]): User {
|
|
const maybeUser = useOptionalUser(matches);
|
|
if (!maybeUser) {
|
|
throw new Error(
|
|
"No user found in root loader, but user is required by useUser. If user is optional, try useOptionalUser instead.",
|
|
);
|
|
}
|
|
return maybeUser;
|
|
}
|
|
|
|
export function useUserChanged(callback: (user: User | undefined) => void) {
|
|
useChanged(useOptionalUser, callback);
|
|
}
|
|
|
|
export function useHasAdminAccess(matches?: UIMatch[]): boolean {
|
|
const user = useOptionalUser(matches);
|
|
const isImpersonating = useIsImpersonating(matches);
|
|
|
|
return Boolean(user?.admin) || isImpersonating;
|
|
}
|