manifold/web/components/avatar.tsx

46 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-01-27 23:14:18 +00:00
import Router from 'next/router'
import clsx from 'clsx'
2022-02-04 18:30:56 +00:00
import { UserCircleIcon } from '@heroicons/react/solid'
2022-01-27 23:14:18 +00:00
export function Avatar(props: {
username?: string
avatarUrl?: string
noLink?: boolean
2022-03-14 21:56:53 +00:00
size?: number | 'xs' | 'sm'
className?: string
2022-01-27 23:14:18 +00:00
}) {
const { username, avatarUrl, noLink, size, className } = props
2022-03-14 21:56:53 +00:00
const s = size == 'xs' ? 6 : size === 'sm' ? 8 : size || 10
2022-01-27 23:14:18 +00:00
const onClick =
noLink && username
? undefined
: (e: any) => {
e.stopPropagation()
Router.push(`/${username}`)
}
return (
<div className={`flex-shrink-0 rounded-full bg-white w-${s} h-${s}`}>
2022-02-04 18:30:56 +00:00
{avatarUrl ? (
<img
className={clsx(
'flex items-center justify-center rounded-full object-cover',
2022-02-06 06:12:23 +00:00
`w-${s} h-${s}`,
!noLink && 'cursor-pointer',
className
2022-02-04 18:30:56 +00:00
)}
src={avatarUrl}
onClick={onClick}
alt={username}
/>
) : (
// TODO: After 2022-03-01, can just assume that all contracts have an avatarUrl
<UserCircleIcon
className={`w-${s} h-${s} text-gray-500`}
aria-hidden="true"
/>
)}
2022-01-27 23:14:18 +00:00
</div>
)
}