mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-03-04 05:42:01 +00:00
* refactor: card title and layout tweaks * chore: review comments * refactor: update domain warning screen
81 lines
1.8 KiB
TypeScript
81 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>
|
|
<CardHeader className="gap-1.5">
|
|
<CardTitle className="text-xl">{t("unauthorizedTitle")}</CardTitle>
|
|
<CardDescription>
|
|
<Trans
|
|
i18nKey={i18nKey}
|
|
t={t}
|
|
components={{
|
|
code: <code />,
|
|
}}
|
|
values={{
|
|
username,
|
|
resource,
|
|
ip,
|
|
}}
|
|
/>
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardFooter>
|
|
<Button
|
|
variant="outline"
|
|
className="w-full"
|
|
onClick={handleRedirect}
|
|
loading={loading}
|
|
>
|
|
{t("unauthorizedButton")}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
};
|