2021-10-24 06:09:43 +02:00
|
|
|
import Image from 'next/image'
|
|
|
|
import date from 'date-and-time'
|
2022-01-14 23:15:51 +01:00
|
|
|
import useTranslation from 'next-translate/useTranslation'
|
2021-10-24 06:09:43 +02:00
|
|
|
|
2022-08-31 21:44:33 +02:00
|
|
|
import type { UserPublic } from '../../../models/User'
|
|
|
|
import type { Guild } from '../../../models/Guild'
|
2021-10-24 06:09:43 +02:00
|
|
|
|
|
|
|
export interface UserProfileProps {
|
|
|
|
className?: string
|
|
|
|
user: UserPublic
|
2022-02-19 23:20:33 +01:00
|
|
|
guilds: Guild[]
|
2021-10-24 06:09:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export const UserProfile: React.FC<UserProfileProps> = (props) => {
|
2022-03-16 12:18:09 +01:00
|
|
|
const { user } = props
|
2021-10-24 06:09:43 +02:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
return (
|
2022-12-13 22:31:32 +01:00
|
|
|
<div className='relative flex h-full flex-col items-center justify-center'>
|
|
|
|
<div className='transition'>
|
|
|
|
<div className='max-w-[1000px] px-12'>
|
|
|
|
<div className='flex items-center justify-between'>
|
|
|
|
<div className='flex w-max flex-col items-center gap-7 md:flex-row'>
|
|
|
|
<div className='relative flex items-center justify-center overflow-hidden rounded-full shadow-lg transition-all'>
|
|
|
|
<Image
|
|
|
|
quality={100}
|
|
|
|
className='rounded-full'
|
|
|
|
src={
|
|
|
|
user.logo != null
|
|
|
|
? user.logo
|
|
|
|
: '/images/data/user-default.png'
|
|
|
|
}
|
|
|
|
alt='Profil Picture'
|
|
|
|
draggable='false'
|
|
|
|
height={125}
|
|
|
|
width={125}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className='ml-10 flex flex-col'>
|
|
|
|
<div className='mb-2 flex items-center'>
|
|
|
|
<p
|
|
|
|
className='space text-dark text-3xl font-bold tracking-wide dark:text-white'
|
|
|
|
data-cy='user-name'
|
|
|
|
>
|
|
|
|
{user.name}
|
|
|
|
</p>
|
|
|
|
<p
|
|
|
|
className='ml-8 select-none text-sm tracking-widest text-white opacity-40'
|
|
|
|
data-cy='user-createdAt'
|
|
|
|
>
|
|
|
|
{date.format(new Date(user.createdAt), 'DD/MM/YYYY')}
|
|
|
|
</p>
|
2022-01-14 23:15:51 +01:00
|
|
|
</div>
|
2022-12-13 22:31:32 +01:00
|
|
|
<div className='my-2 text-left'>
|
|
|
|
{user.email != null && (
|
|
|
|
<p className='font-bold'>
|
|
|
|
Email:{' '}
|
|
|
|
<a
|
|
|
|
href={`mailto:${user.email}`}
|
|
|
|
target='_blank'
|
|
|
|
className='relative ml-2 font-normal tracking-wide no-underline opacity-80 transition-all after:absolute after:left-0 after:bottom-[-1px] after:h-[1px] after:w-0 after:bg-black after:transition-all hover:opacity-100 hover:after:w-full dark:after:bg-white'
|
|
|
|
rel='noreferrer'
|
|
|
|
data-cy='user-email'
|
|
|
|
>
|
|
|
|
{user.email}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
)}
|
|
|
|
{user.website != null && (
|
|
|
|
<p className='font-bold'>
|
|
|
|
{t('application:website')}:{' '}
|
|
|
|
<a
|
|
|
|
target='_blank'
|
|
|
|
rel='noreferrer'
|
|
|
|
href={user.website}
|
|
|
|
className='relative ml-2 font-normal tracking-wide no-underline opacity-80 transition-all after:absolute after:left-0 after:bottom-[-2px] after:h-[1px] after:w-0 after:bg-black after:transition-all hover:opacity-100 hover:after:w-full dark:after:bg-white'
|
|
|
|
>
|
|
|
|
{user.website}
|
|
|
|
</a>
|
2022-01-14 23:15:51 +01:00
|
|
|
</p>
|
2022-12-13 22:31:32 +01:00
|
|
|
)}
|
|
|
|
{user.status != null && (
|
|
|
|
<p className='flex font-bold'>
|
|
|
|
{t('application:status')}:{' '}
|
|
|
|
<span className='ml-2 font-normal tracking-wide'>
|
|
|
|
{user.status}
|
|
|
|
</span>
|
2022-01-14 23:15:51 +01:00
|
|
|
</p>
|
2022-12-13 22:31:32 +01:00
|
|
|
)}
|
2022-01-14 23:15:51 +01:00
|
|
|
</div>
|
2021-10-24 06:09:43 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-12-13 22:31:32 +01:00
|
|
|
{user.biography != null && (
|
|
|
|
<div className='mt-7 text-center'>
|
|
|
|
<p>{user.biography}</p>
|
|
|
|
</div>
|
|
|
|
)}
|
2021-10-24 06:09:43 +02:00
|
|
|
</div>
|
2022-01-14 23:15:51 +01:00
|
|
|
</div>
|
2022-12-13 22:31:32 +01:00
|
|
|
</div>
|
2021-10-24 06:09:43 +02:00
|
|
|
)
|
|
|
|
}
|