mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-03-28 19:23:15 +00:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
"use client";
|
|
|
|
import { useSearchParams } from "next/navigation";
|
|
import { Suspense } from "react";
|
|
|
|
import useSWR from "swr";
|
|
import { Icon } from "@iconify/react";
|
|
|
|
interface ApiResponse {
|
|
message: string;
|
|
}
|
|
|
|
const fetcher = (url: string) => fetch(url).then((res) => res.json());
|
|
|
|
function RedirectBanner() {
|
|
const searchParams = useSearchParams();
|
|
const from = searchParams.get("from");
|
|
if (from !== "old-domain") return null;
|
|
|
|
return (
|
|
<div className="w-full h-10 bg-orange-300 border-y-2 border-y-orange-400 mt-1 shadow-md flex justify-center items-center gap-2 text-orange-900 text-nowrap overflow-x-auto font-semibold max-sm:justify-start">
|
|
<Icon icon="humbleicons:link" className="text-2xl min-w-6" />
|
|
<span>We have moved URLs, welcome to tomodachishare.com!</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function AdminBanner() {
|
|
const { data } = useSWR<ApiResponse>("/api/admin/banner", fetcher);
|
|
|
|
return (
|
|
<>
|
|
{data && data.message && (
|
|
<div className="w-full h-10 bg-orange-300 border-y-2 border-y-orange-400 mt-1 shadow-md flex justify-center items-center gap-2 text-orange-900 text-nowrap overflow-x-auto font-semibold max-sm:justify-start">
|
|
<Icon icon="humbleicons:exclamation" className="text-2xl min-w-6" />
|
|
<span>{data.message}</span>
|
|
</div>
|
|
)}
|
|
<Suspense>
|
|
<RedirectBanner />
|
|
</Suspense>
|
|
</>
|
|
);
|
|
}
|