81 lines
2.8 KiB
TypeScript
81 lines
2.8 KiB
TypeScript
import React from "react";
|
|
import Image from "next/image";
|
|
import { ReactMarkdown } from "@/components/Markdown";
|
|
interface ContextItemProperties {
|
|
item: {
|
|
name: string;
|
|
url: string;
|
|
description: string;
|
|
provider: {
|
|
name: string;
|
|
image?: {
|
|
thumbnail: {
|
|
contentUrl: string;
|
|
};
|
|
};
|
|
}[];
|
|
datePublished: string;
|
|
image?: {
|
|
contentUrl: string;
|
|
thumbnail: { contentUrl: string; width: number; height: number };
|
|
};
|
|
};
|
|
}
|
|
|
|
const ProviderInfo: React.FC<{ name: string; date: string }> = ({ name, date }) => (
|
|
<div className="absolute -bottom-3 right-0 text-sm text-gray-700 dark:text-gray-300 flex items-end z-50">
|
|
{/* <div className="absolute z-50 right-60 top-0 bottom-0 w-40 h-10 bg-gradient-to-r from-transparent to-slate-900 pointer-events-none"></div>
|
|
<div className="absolute z-50 right-0 top-0 bottom-0 w-60 h-10 bg-slate-900 pointer-events-none"></div> */}
|
|
<div className="relative z-50 dark:bg-slate-900 flex items-center">
|
|
<span className="truncate max-w-xs">{name}</span>
|
|
<span className="truncate max-w-xs text-xs text-gray-500 dark:text-gray-400 pl-3">{date}</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
const ContextItem: React.FC<ContextItemProperties> = ({ item }) => {
|
|
return (
|
|
<a
|
|
href={item.url}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="block no-underline text-black dark:text-white"
|
|
>
|
|
<div
|
|
className="bg-gray-200 dark:bg-slate-900 rounded-lg px-6 py-2 ring-1 items-stretch h-56
|
|
ring-slate-900/5 shadow-xl flex flex-row cursor-pointer hover:scale-95 transition-transform duration-300"
|
|
>
|
|
<div className="w-40 h-40 flex-shrink-0">
|
|
{item.image ? (
|
|
<Image
|
|
src={item.image.contentUrl}
|
|
alt={item.name}
|
|
width={150}
|
|
height={150}
|
|
className="rounded w-36 h-36 object-cover"
|
|
/>
|
|
) : (
|
|
<Image
|
|
src={"https://via.placeholder.com/150"}
|
|
alt={"placeholder"}
|
|
width={150}
|
|
height={150}
|
|
className="rounded w-36 h-36 object-cover"
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="flex flex-col items-stretch relative h-48">
|
|
<div className="flex justify-start max-w-xl">
|
|
<h4 className="font-bold text-white truncate">{item.name}</h4>
|
|
</div>
|
|
<div className="max-32 overflow-hidden">
|
|
<ReactMarkdown text={item.description} className="text-slate-500 dark:text-slate-400 line-clamp-3" />
|
|
</div>
|
|
<ProviderInfo name={item.provider[0].name} date={new Date(item.datePublished).toLocaleDateString()} />
|
|
</div>
|
|
</div>
|
|
</a>
|
|
);
|
|
};
|
|
|
|
export default ContextItem;
|