183 lines
5.4 KiB
TypeScript
183 lines
5.4 KiB
TypeScript
import { authors, affiliations, nationalities } from '../../db/data'
|
|
import { Zilla_Slab } from 'next/font/google'
|
|
import Link from 'next/link'
|
|
import { notFound } from 'next/navigation'
|
|
import { Fragment } from 'react'
|
|
|
|
const zillaSlab = Zilla_Slab({ subsets: ['latin'], weight: ['500'] })
|
|
|
|
export function generateStaticParams() {
|
|
const authorsList = Object.keys(authors)
|
|
return authorsList.map((author) => ({ author }))
|
|
}
|
|
|
|
export default function Page({
|
|
params,
|
|
}: Readonly<{
|
|
params: { author: string }
|
|
}>) {
|
|
const authorData = authors[params.author]
|
|
// console.log(authorData)
|
|
if (!authorData) {
|
|
notFound()
|
|
}
|
|
|
|
const { name, affiliation, image, nationality, formerAffiliations } =
|
|
authorData
|
|
|
|
const MainPosition = () => {
|
|
const mainAffiliationShort = affiliation[0].split('@')[1]
|
|
const mainPosition = affiliation[0].split('@')[0]
|
|
const mainAffiliation = affiliations[mainAffiliationShort]
|
|
return (
|
|
<>
|
|
<span>{mainPosition} at </span>
|
|
<Link href={`/affiliation/${mainAffiliationShort}`}>
|
|
{mainAffiliation.name}
|
|
</Link>
|
|
{authorData.website ? (
|
|
<div className='mt-2'>
|
|
Visit{' '}
|
|
{authorData.name.nickname
|
|
? authorData.name.nickname
|
|
: authorData.name.first}{' '}
|
|
at:{' '}
|
|
<a href={authorData.website} target='_blank'>
|
|
{authorData.website}
|
|
</a>
|
|
</div>
|
|
) : null}
|
|
<div className='my-4 max-h-12 flex flex-wrap'>
|
|
{affiliation.map((a: string) => (
|
|
<Link key={a} href={`/affiliation/${a.split('@')[1]}`}>
|
|
<img
|
|
src={affiliations[a.split('@')[1]].image}
|
|
alt={affiliations[a.split('@')[1]].name}
|
|
className='h-12 mr-2'
|
|
/>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
const OtherPositions = () => {
|
|
if (affiliation.length === 1) return
|
|
return (
|
|
<>
|
|
<h1 className='text-3xl md:mt-6 mt-4 mb-2 font-serif'>
|
|
Other Positions:
|
|
</h1>
|
|
{affiliation.slice(1).map((a: string, i: number) => {
|
|
const position = a.split('@')[0]
|
|
const affiliation = affiliations[a.split('@')[1]].name
|
|
return (
|
|
<Fragment key={`${position}@${affiliation}`}>
|
|
<span className='text-slate-500 text-lg'>
|
|
{position} at{' '}
|
|
<Link href={`/affiliation/${a.split('@')[1]}`}>
|
|
{affiliation}
|
|
</Link>
|
|
</span>
|
|
</Fragment>
|
|
)
|
|
})}
|
|
</>
|
|
)
|
|
}
|
|
|
|
const FormerPositions = () => {
|
|
if (!formerAffiliations) return null
|
|
return (
|
|
<>
|
|
<h1 className='text-3xl md:mt-6 mt-4 mb-2 font-serif'>
|
|
Former Positions:
|
|
</h1>
|
|
{formerAffiliations?.map((a: string, i: number) => {
|
|
const position = a.split('@')[0]
|
|
const affiliation = affiliations[a.split('@')[1]].name
|
|
|
|
return (
|
|
<Fragment key={`${position}@${affiliation}`}>
|
|
<span className='text-slate-500 text-lg'>
|
|
{position} at{' '}
|
|
<Link href={`/affiliation/${a.split('@')[1]}`}>
|
|
{affiliation}
|
|
</Link>
|
|
</span>
|
|
</Fragment>
|
|
)
|
|
})}
|
|
</>
|
|
)
|
|
}
|
|
|
|
const NationalityDisplay = ({
|
|
nationality,
|
|
}: Readonly<{ nationality: string }>) => {
|
|
const nationalityData = nationalities[nationality]
|
|
const { demonym, flag } = nationalityData
|
|
return (
|
|
<div className='flex items-center'>
|
|
<img src={flag} className='w-10 border-2 border-slate-200' />
|
|
<span className='mx-3 font-semibold'>{demonym}</span>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const Bio = () => {
|
|
const { bio } = authorData
|
|
if (!bio) return null
|
|
|
|
return (
|
|
<>
|
|
<h1 className='text-3xl md:mt-6 mt-4 mb-2 font-serif'>Bio:</h1>
|
|
<p>{authorData.bio}</p>
|
|
</>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<div className='grid grid-cols-1 md:grid-cols-2 items-center max-w-3xl mx-auto'>
|
|
<div className='aspect-square w-[60vw] md:w-[30vw] lg:w-[20vw] 2xl:w-[15vw] overflow-hidden mx-auto mb-4'>
|
|
<img
|
|
alt='profile picture'
|
|
className='rounded-full mx-auto object-cover w-full h-full border-slate-800 border-4'
|
|
src={image}
|
|
/>
|
|
</div>
|
|
<div>
|
|
<div>
|
|
<span
|
|
className={`${zillaSlab.className} font-bold text-5xl text-center md:text-left`}
|
|
>
|
|
{name.first}
|
|
{name.nickname ? ` "${name.nickname}"` : null} {name.last}
|
|
</span>
|
|
<div className='text-slate-600 text-md sm:text-lg mt-4'>
|
|
<MainPosition />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className='max-w-3xl mx-auto grid grid-cols-1 justify-center'>
|
|
<hr className='mx-auto w-full h-1 border-0 bg-slate-200 my-2 rounded-md' />
|
|
<OtherPositions />
|
|
<FormerPositions />
|
|
<h1 className='text-3xl md:my-6 my-4 font-serif'>
|
|
Ethnicity and Nationality:
|
|
</h1>
|
|
<div className='flex gap-2 flex-wrap'>
|
|
{nationality.map((n: string) => (
|
|
<Fragment key={n}>
|
|
<NationalityDisplay nationality={n} />
|
|
</Fragment>
|
|
))}
|
|
</div>
|
|
<Bio />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|