53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
|
import { Show } from 'solid-js/web'
|
||
|
import type { Author } from '../../graphql/types.gen'
|
||
|
import './Userpic.scss'
|
||
|
|
||
|
interface UserpicProps {
|
||
|
user: Author
|
||
|
hasLink?: boolean
|
||
|
}
|
||
|
|
||
|
export default (props: UserpicProps) => {
|
||
|
const letters = () => {
|
||
|
const names = props.user && props.user.name ? props.user.name.split(' ') : []
|
||
|
|
||
|
return names[0][0] + (names.length > 1 ? names[1][0] : '')
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div class="circlewrap">
|
||
|
<Show when={props.hasLink}>
|
||
|
<a href={`/author/${props.user.slug}`}>
|
||
|
<Show
|
||
|
when={props.user && props.user.userpic === ''}
|
||
|
fallback={
|
||
|
<img
|
||
|
src={props.user.userpic || '/icons/user-anonymous.svg'}
|
||
|
alt={props.user.name || ''}
|
||
|
classList={{ anonymous: !props.user.userpic }}
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<div class="userpic">{letters()}</div>
|
||
|
</Show>
|
||
|
</a>
|
||
|
</Show>
|
||
|
|
||
|
<Show when={!props.hasLink}>
|
||
|
<Show
|
||
|
when={props.user && props.user.userpic === ''}
|
||
|
fallback={
|
||
|
<img
|
||
|
src={props.user.userpic || '/icons/user-anonymous.svg'}
|
||
|
alt={props.user.name || ''}
|
||
|
classList={{ anonymous: !props.user.userpic }}
|
||
|
/>
|
||
|
}
|
||
|
>
|
||
|
<div class="userpic">{letters()}</div>
|
||
|
</Show>
|
||
|
</Show>
|
||
|
</div>
|
||
|
)
|
||
|
}
|