el.xwx.moe/components/LinkViews/LinkComponents/LinkIcon.tsx

73 lines
1.8 KiB
TypeScript
Raw Normal View History

2023-12-15 21:25:39 -06:00
import { LinkIncludingShortenedCollectionAndTags } from "@/types/global";
import Image from "next/image";
import isValidUrl from "@/lib/shared/isValidUrl";
2023-12-17 02:30:09 -06:00
import React from "react";
2023-12-15 21:25:39 -06:00
2023-12-21 09:55:07 -06:00
export default function LinkIcon({
link,
width,
className,
2023-12-21 09:55:07 -06:00
}: {
2023-12-15 21:25:39 -06:00
link: LinkIncludingShortenedCollectionAndTags;
width?: string;
className?: string;
2023-12-15 21:25:39 -06:00
}) {
const url =
isValidUrl(link.url || "") && link.url ? new URL(link.url) : undefined;
2023-12-15 22:16:56 -06:00
const iconClasses: string =
2023-12-23 18:00:53 -06:00
"bg-white shadow rounded-md border-[2px] flex item-center justify-center border-white select-none z-10" +
" " +
(width || "w-12") +
" " +
(className || "");
2023-12-15 21:25:39 -06:00
2023-12-23 11:11:47 -06:00
const [showFavicon, setShowFavicon] = React.useState<boolean>(true);
return (
<>
{link.type === "url" && url ? (
showFavicon ? (
<Image
src={`https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=${link.url}&size=32`}
width={64}
height={64}
alt=""
className={iconClasses}
draggable="false"
onError={() => {
setShowFavicon(false);
}}
/>
) : (
<LinkPlaceholderIcon iconClasses={iconClasses} icon="bi-link-45deg" />
)
) : link.type === "pdf" ? (
<LinkPlaceholderIcon
iconClasses={iconClasses}
icon="bi-file-earmark-pdf"
/>
) : link.type === "image" ? (
<LinkPlaceholderIcon
iconClasses={iconClasses}
icon="bi-file-earmark-image"
/>
) : undefined}
</>
);
2023-12-15 21:25:39 -06:00
}
const LinkPlaceholderIcon = ({
iconClasses,
icon,
}: {
iconClasses: string;
icon: string;
}) => {
return (
<div className={`text-4xl text-black aspect-square ${iconClasses}`}>
<i className={`${icon} m-auto`}></i>
</div>
);
};