| import { Fragment } from 'react'; |
| import { AiOutlineBook } from 'react-icons/ai'; |
| import { SanitizedPublication } from '../../interfaces/sanitized-config'; |
| import { skeleton } from '../../utils'; |
|
|
| const PublicationCard = ({ |
| publications, |
| loading, |
| }: { |
| publications: SanitizedPublication[]; |
| loading: boolean; |
| }) => { |
| const renderSkeleton = () => { |
| const array = []; |
| for (let index = 0; index < publications.length; index++) { |
| array.push( |
| <div className="card shadow-md card-sm bg-base-100" key={index}> |
| <div className="p-8 h-full w-full"> |
| <div className="flex items-center flex-col"> |
| <div className="w-full"> |
| <div className="px-4"> |
| <div className="text-center w-full"> |
| <h2 className="mb-2"> |
| {skeleton({ |
| widthCls: 'w-32', |
| heightCls: 'h-8', |
| className: 'mb-2 mx-auto', |
| })} |
| </h2> |
| <div> |
| {skeleton({ |
| widthCls: 'w-20', |
| heightCls: 'h-4', |
| className: 'mb-2 mx-auto', |
| })} |
| </div> |
| <div> |
| {skeleton({ |
| widthCls: 'w-20', |
| heightCls: 'h-4', |
| className: 'mb-2 mx-auto', |
| })} |
| </div> |
| <div> |
| {skeleton({ |
| widthCls: 'w-full', |
| heightCls: 'h-4', |
| className: 'mb-2 mx-auto', |
| })} |
| </div> |
| <div> |
| {skeleton({ |
| widthCls: 'w-full', |
| heightCls: 'h-4', |
| className: 'mb-2 mx-auto', |
| })} |
| </div> |
| <div> |
| {skeleton({ |
| widthCls: 'w-full', |
| heightCls: 'h-4', |
| className: 'mb-2 mx-auto', |
| })} |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div>, |
| ); |
| } |
|
|
| return array; |
| }; |
|
|
| const renderPublications = () => { |
| return publications.map((item, index) => ( |
| <a |
| className="card shadow-md card-sm bg-base-100 cursor-pointer" |
| key={index} |
| href={item.link} |
| target="_blank" |
| rel="noreferrer" |
| > |
| <div className="p-8 h-full w-full"> |
| <div className="flex items-center flex-col"> |
| <div className="w-full"> |
| <div className="px-4"> |
| <div className="text-center w-full"> |
| <h2 className="font-medium opacity-60 mb-2">{item.title}</h2> |
| {item.conferenceName && ( |
| <p className="text-base-content opacity-50 text-sm"> |
| {item.conferenceName} |
| </p> |
| )} |
| {item.journalName && ( |
| <p className="text-base-content opacity-50 text-sm"> |
| {item.journalName} |
| </p> |
| )} |
| {item.authors && ( |
| <p className="text-base-content opacity-50 text-sm"> |
| Author: {item.authors} |
| </p> |
| )} |
| {item.description && ( |
| <p className="mt-2 text-base-content text-sm text-justify"> |
| {item.description} |
| </p> |
| )} |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </a> |
| )); |
| }; |
|
|
| return ( |
| <Fragment> |
| <div className="col-span-1 lg:col-span-2"> |
| <div className="card bg-base-200 shadow-xl border border-base-300"> |
| <div className="card-body p-8"> |
| <div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4 mb-8"> |
| <div className="flex items-center space-x-3"> |
| {loading ? ( |
| skeleton({ |
| widthCls: 'w-12', |
| heightCls: 'h-12', |
| className: 'rounded-xl', |
| }) |
| ) : ( |
| <div className="flex items-center justify-center w-12 h-12 bg-primary/10 rounded-xl"> |
| <AiOutlineBook className="text-2xl" /> |
| </div> |
| )} |
| <div className="min-w-0 flex-1"> |
| <h3 className="text-base sm:text-lg font-bold text-base-content truncate"> |
| {loading |
| ? skeleton({ widthCls: 'w-40', heightCls: 'h-8' }) |
| : 'Publications'} |
| </h3> |
| <div className="text-base-content/60 text-xs sm:text-sm mt-1 truncate"> |
| {loading |
| ? skeleton({ widthCls: 'w-32', heightCls: 'h-4' }) |
| : `Showcasing ${publications.length} publications`} |
| </div> |
| </div> |
| </div> |
| </div> |
| <div className="grid grid-cols-1 md:grid-cols-2 gap-6"> |
| {loading ? renderSkeleton() : renderPublications()} |
| </div> |
| </div> |
| </div> |
| </div> |
| </Fragment> |
| ); |
| }; |
|
|
| export default PublicationCard; |
|
|