Revert avatar component changes
This commit is contained in:
parent
acc9c84e2e
commit
5c1bc78408
|
@ -8,8 +8,10 @@ export function Avatar(props: {
|
||||||
noLink?: boolean
|
noLink?: boolean
|
||||||
size?: number | 'xs' | 'sm'
|
size?: number | 'xs' | 'sm'
|
||||||
className?: string
|
className?: string
|
||||||
|
containerClassName?: string
|
||||||
}) {
|
}) {
|
||||||
const { username, avatarUrl, noLink, size, className } = props
|
const { username, avatarUrl, noLink, size, className, containerClassName } =
|
||||||
|
props
|
||||||
const s = size == 'xs' ? 6 : size === 'sm' ? 8 : size || 10
|
const s = size == 'xs' ? 6 : size === 'sm' ? 8 : size || 10
|
||||||
|
|
||||||
const onClick =
|
const onClick =
|
||||||
|
@ -19,28 +21,32 @@ export function Avatar(props: {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
Router.push(`/${username}`)
|
Router.push(`/${username}`)
|
||||||
}
|
}
|
||||||
|
return (
|
||||||
// there can be no avatar URL or username in the feed, we show a "submit comment"
|
<div
|
||||||
// item with a fake grey user circle guy even if you aren't signed in
|
|
||||||
return avatarUrl ? (
|
|
||||||
<img
|
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'flex-shrink-0 rounded-full rounded-full bg-white object-cover',
|
`flex-shrink-0 rounded-full bg-white w-${s} h-${s}`,
|
||||||
`w-${s} h-${s}`,
|
containerClassName
|
||||||
!noLink && 'cursor-pointer',
|
|
||||||
className
|
|
||||||
)}
|
)}
|
||||||
src={avatarUrl}
|
>
|
||||||
onClick={onClick}
|
{avatarUrl ? (
|
||||||
alt={username}
|
<img
|
||||||
/>
|
className={clsx(
|
||||||
) : (
|
'flex items-center justify-center rounded-full object-cover',
|
||||||
<UserCircleIcon
|
`w-${s} h-${s}`,
|
||||||
className={clsx(
|
!noLink && 'cursor-pointer',
|
||||||
`flex-shrink-0 rounded-full bg-white w-${s} h-${s} text-gray-500`,
|
className
|
||||||
className
|
)}
|
||||||
|
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"
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
aria-hidden="true"
|
</div>
|
||||||
/>
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user