mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-28 12:45:47 +00:00
* wip * refactor: update domain warning layout * i18n: add domain warning translations * refactor: rework hooks usage * feat: clear timeouts * fix: use useeffect to cleanup timeout * refactor: rework redirects and history storage * refactor: rename domain to root domain
76 lines
1.8 KiB
TypeScript
76 lines
1.8 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { useState } from "react";
|
|
import { Trans, useTranslation } from "react-i18next";
|
|
import { Navigate, useLocation, useNavigate } from "react-router";
|
|
|
|
export const UnauthorizedPage = () => {
|
|
const { search } = useLocation();
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const searchParams = new URLSearchParams(search);
|
|
const username = searchParams.get("username");
|
|
const resource = searchParams.get("resource");
|
|
const groupErr = searchParams.get("groupErr");
|
|
const ip = searchParams.get("ip");
|
|
|
|
const handleRedirect = () => {
|
|
setLoading(true);
|
|
navigate("/login");
|
|
};
|
|
|
|
if (!username && !ip) {
|
|
return <Navigate to="/" />;
|
|
}
|
|
|
|
let i18nKey = "unauthorizedLoginSubtitle";
|
|
|
|
if (resource) {
|
|
i18nKey = "unauthorizedResourceSubtitle";
|
|
}
|
|
|
|
if (groupErr === "true") {
|
|
i18nKey = "unauthorizedGroupsSubtitle";
|
|
}
|
|
|
|
if (ip) {
|
|
i18nKey = "unauthorizedIpSubtitle";
|
|
}
|
|
|
|
return (
|
|
<Card className="min-w-xs sm:min-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-3xl">{t("unauthorizedTitle")}</CardTitle>
|
|
<CardDescription>
|
|
<Trans
|
|
i18nKey={i18nKey}
|
|
t={t}
|
|
components={{
|
|
code: <code />,
|
|
}}
|
|
values={{
|
|
username,
|
|
resource,
|
|
ip,
|
|
}}
|
|
/>
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardFooter className="flex flex-col items-stretch">
|
|
<Button onClick={handleRedirect} loading={loading}>
|
|
{t("unauthorizedButton")}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
};
|