el.xwx.moe/pages/public/collections/[id].tsx
2023-06-03 07:20:16 +03:30

62 lines
1.8 KiB
TypeScript

import LinkList from "@/components/PublicPage/LinkList";
import getPublicCollectionData from "@/lib/client/getPublicCollectionData";
import { PublicCollectionIncludingLinks } from "@/types/global";
import { useRouter } from "next/router";
import React, { useEffect, useState } from "react";
export default function PublicCollections() {
const router = useRouter();
const [data, setData] = useState<PublicCollectionIncludingLinks>();
useEffect(() => {
if (router.query.id) {
getPublicCollectionData(
router.query.id as string,
(e: PublicCollectionIncludingLinks) => setData(e)
);
}
// document
// .querySelector("body")
// ?.classList.add(
// "bg-gradient-to-br",
// "from-slate-50",
// "to-sky-50",
// "min-h-screen"
// );
}, []);
return data ? (
<div className="max-w-4xl mx-auto p-5 bg">
<div
className={`text-center bg-gradient-to-tr from-sky-100 from-10% via-gray-100 via-20% rounded-3xl shadow-lg p-5`}
>
<p className="text-5xl bg-gradient-to-tr from-sky-500 to-slate-400 bg-clip-text text-transparent font-bold mb-5 capitalize">
{data.name}
</p>
{data.ownerName && (
<p className="text-sky-500">{"By " + data.ownerName}</p>
)}
<hr className="mt-5 max-w-[30rem] mx-auto border-1 border-slate-400" />
<p className="mt-2 text-gray-500">{data.description}</p>
</div>
<div className="flex flex-col gap-5 my-8">
{data?.links.map((e, i) => {
return <LinkList key={i} link={e} count={i} />;
})}
</div>
<p className="text-center font-bold text-gray-500">
List created with <span className="text-sky-500">Linkwarden.</span>
</p>
</div>
) : (
<></>
);
}