mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-02-23 09:22:04 +00:00
* refactor: rework frontend use effect calls * fix: rabbit comments * fix: handle empty oauth url in login page
189 lines
4.8 KiB
TypeScript
189 lines
4.8 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { useAppContext } from "@/context/app-context";
|
|
import { useUserContext } from "@/context/user-context";
|
|
import { Trans, useTranslation } from "react-i18next";
|
|
import { Navigate, useLocation, useNavigate } from "react-router";
|
|
import { useCallback, useEffect, useRef, useState } from "react";
|
|
import { useRedirectUri } from "@/lib/hooks/redirect-uri";
|
|
|
|
export const ContinuePage = () => {
|
|
const { cookieDomain, disableUiWarnings } = useAppContext();
|
|
const { isLoggedIn } = useUserContext();
|
|
const { search } = useLocation();
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [showRedirectButton, setShowRedirectButton] = useState(false);
|
|
const hasRedirected = useRef(false);
|
|
|
|
const searchParams = new URLSearchParams(search);
|
|
const redirectUri = searchParams.get("redirect_uri");
|
|
|
|
const { url, valid, trusted, allowedProto, httpsDowngrade } = useRedirectUri(
|
|
redirectUri,
|
|
cookieDomain,
|
|
);
|
|
|
|
const handleRedirect = useCallback(() => {
|
|
hasRedirected.current = true;
|
|
setIsLoading(true);
|
|
window.location.assign(url!);
|
|
}, [url]);
|
|
|
|
useEffect(() => {
|
|
if (!isLoggedIn) {
|
|
return;
|
|
}
|
|
|
|
if (hasRedirected.current) {
|
|
return;
|
|
}
|
|
|
|
if (
|
|
(!valid || !allowedProto || !trusted || httpsDowngrade) &&
|
|
!disableUiWarnings
|
|
) {
|
|
return;
|
|
}
|
|
|
|
const auto = setTimeout(() => {
|
|
handleRedirect();
|
|
}, 100);
|
|
|
|
const reveal = setTimeout(() => {
|
|
setIsLoading(false);
|
|
setShowRedirectButton(true);
|
|
}, 5000);
|
|
|
|
return () => {
|
|
clearTimeout(auto);
|
|
clearTimeout(reveal);
|
|
};
|
|
}, [
|
|
isLoggedIn,
|
|
hasRedirected,
|
|
valid,
|
|
allowedProto,
|
|
trusted,
|
|
httpsDowngrade,
|
|
disableUiWarnings,
|
|
setIsLoading,
|
|
handleRedirect,
|
|
setShowRedirectButton,
|
|
]);
|
|
|
|
if (!isLoggedIn) {
|
|
return (
|
|
<Navigate
|
|
to={`/login${redirectUri ? `?redirect_uri=${encodeURIComponent(redirectUri)}` : ""}`}
|
|
replace
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (!valid || !allowedProto) {
|
|
return <Navigate to="/logout" replace />;
|
|
}
|
|
|
|
if (!trusted && !disableUiWarnings) {
|
|
return (
|
|
<Card role="alert" aria-live="assertive" className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">
|
|
{t("continueUntrustedRedirectTitle")}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
<Trans
|
|
i18nKey="continueUntrustedRedirectSubtitle"
|
|
t={t}
|
|
components={{
|
|
code: <code />,
|
|
}}
|
|
values={{ cookieDomain }}
|
|
/>
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardFooter className="flex flex-col items-stretch gap-2">
|
|
<Button
|
|
onClick={() => handleRedirect()}
|
|
loading={isLoading}
|
|
variant="destructive"
|
|
>
|
|
{t("continueTitle")}
|
|
</Button>
|
|
<Button
|
|
onClick={() => navigate("/logout")}
|
|
variant="outline"
|
|
disabled={isLoading}
|
|
>
|
|
{t("cancelTitle")}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
if (httpsDowngrade && !disableUiWarnings) {
|
|
return (
|
|
<Card role="alert" aria-live="assertive" className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">
|
|
{t("continueInsecureRedirectTitle")}
|
|
</CardTitle>
|
|
<CardDescription>
|
|
<Trans
|
|
i18nKey="continueInsecureRedirectSubtitle"
|
|
t={t}
|
|
components={{
|
|
code: <code />,
|
|
}}
|
|
/>
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardFooter className="flex flex-col items-stretch gap-2">
|
|
<Button
|
|
onClick={() => handleRedirect()}
|
|
loading={isLoading}
|
|
variant="warning"
|
|
>
|
|
{t("continueTitle")}
|
|
</Button>
|
|
<Button
|
|
onClick={() => navigate("/logout")}
|
|
variant="outline"
|
|
disabled={isLoading}
|
|
>
|
|
{t("cancelTitle")}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Card className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">
|
|
{t("continueRedirectingTitle")}
|
|
</CardTitle>
|
|
<CardDescription>{t("continueRedirectingSubtitle")}</CardDescription>
|
|
</CardHeader>
|
|
{showRedirectButton && (
|
|
<CardFooter className="flex flex-col items-stretch">
|
|
<Button onClick={() => handleRedirect()}>
|
|
{t("continueRedirectManually")}
|
|
</Button>
|
|
</CardFooter>
|
|
)}
|
|
</Card>
|
|
);
|
|
};
|