manifold/web/components/avatar.tsx

48 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'
import { MouseEvent } from 'react'
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: MouseEvent) => {
2022-01-27 23:14:18 +00:00
e.stopPropagation()
Router.push(`/${username}`)
}
// there can be no avatar URL or username in the feed, we show a "submit comment"
// item with a fake grey user circle guy even if you aren't signed in
return avatarUrl ? (
<img
className={clsx(
2022-06-09 20:00:31 +00:00
'flex-shrink-0 rounded-full bg-white object-cover',
`w-${s} h-${s}`,
!noLink && 'cursor-pointer',
className
)}
src={avatarUrl}
onClick={onClick}
alt={username}
/>
) : (
<UserCircleIcon
className={clsx(
`flex-shrink-0 rounded-full bg-white w-${s} h-${s} text-gray-500`,
className
2022-02-04 18:30:56 +00:00
)}
aria-hidden="true"
/>
2022-01-27 23:14:18 +00:00
)
}