mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 18:19:55 +00:00
76 lines
1.8 KiB
TypeScript
76 lines
1.8 KiB
TypeScript
|
import { Component } from 'inferno';
|
||
|
import { Link } from 'inferno-router';
|
||
|
import { UserView } from 'lemmy-js-client';
|
||
|
import {
|
||
|
pictrsAvatarThumbnail,
|
||
|
showAvatars,
|
||
|
hostname,
|
||
|
isCakeDay,
|
||
|
} from '../utils';
|
||
|
import { CakeDay } from './cake-day';
|
||
|
|
||
|
export interface UserOther {
|
||
|
name: string;
|
||
|
preferred_username?: string;
|
||
|
id?: number; // Necessary if its federated
|
||
|
avatar?: string;
|
||
|
local?: boolean;
|
||
|
actor_id?: string;
|
||
|
published?: string;
|
||
|
}
|
||
|
|
||
|
interface UserListingProps {
|
||
|
user: UserView | UserOther;
|
||
|
realLink?: boolean;
|
||
|
useApubName?: boolean;
|
||
|
muted?: boolean;
|
||
|
hideAvatar?: boolean;
|
||
|
}
|
||
|
|
||
|
export class UserListing extends Component<UserListingProps, any> {
|
||
|
constructor(props: any, context: any) {
|
||
|
super(props, context);
|
||
|
}
|
||
|
|
||
|
render() {
|
||
|
let user = this.props.user;
|
||
|
let local = user.local == null ? true : user.local;
|
||
|
let apubName: string, link: string;
|
||
|
|
||
|
if (local) {
|
||
|
apubName = `@${user.name}`;
|
||
|
link = `/u/${user.name}`;
|
||
|
} else {
|
||
|
apubName = `@${user.name}@${hostname(user.actor_id)}`;
|
||
|
link = !this.props.realLink ? `/user/${user.id}` : user.actor_id;
|
||
|
}
|
||
|
|
||
|
let displayName = this.props.useApubName
|
||
|
? apubName
|
||
|
: user.preferred_username
|
||
|
? user.preferred_username
|
||
|
: apubName;
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
<Link
|
||
|
title={apubName}
|
||
|
className={this.props.muted ? 'text-muted' : 'text-info'}
|
||
|
to={link}
|
||
|
>
|
||
|
{!this.props.hideAvatar && user.avatar && showAvatars() && (
|
||
|
<img
|
||
|
style="width: 2rem; height: 2rem;"
|
||
|
src={pictrsAvatarThumbnail(user.avatar)}
|
||
|
class="rounded-circle mr-2"
|
||
|
/>
|
||
|
)}
|
||
|
<span>{displayName}</span>
|
||
|
</Link>
|
||
|
|
||
|
{isCakeDay(user.published) && <CakeDay creatorName={apubName} />}
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
}
|