mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-05 01:19:29 +00:00
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import { Button } from "@app/components/ui/button";
|
|
import { useLicenseStatusContext } from "@app/hooks/useLicenseStatusContext";
|
|
import { useState } from "react";
|
|
import { useTranslations } from "next-intl";
|
|
|
|
export default function LicenseViolation() {
|
|
const { licenseStatus } = useLicenseStatusContext();
|
|
const [isDismissed, setIsDismissed] = useState(false);
|
|
const t = useTranslations();
|
|
|
|
if (!licenseStatus || isDismissed) return null;
|
|
|
|
// Show invalid license banner
|
|
if (licenseStatus.isHostLicensed && !licenseStatus.isLicenseValid) {
|
|
return (
|
|
<div className="fixed bottom-0 left-0 right-0 w-full bg-red-500 text-white p-4 text-center z-50">
|
|
<div className="flex justify-between items-center">
|
|
<p>{t("componentsInvalidKey")}</p>
|
|
<Button
|
|
variant={"ghost"}
|
|
className="hover:bg-yellow-500"
|
|
onClick={() => setIsDismissed(true)}
|
|
>
|
|
{t("dismiss")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|