mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
97 lines
3.3 KiB
TypeScript
97 lines
3.3 KiB
TypeScript
import type { UserDto } from '@jellyfin/sdk/lib/generated-client';
|
|
import React, { FunctionComponent } from 'react';
|
|
import { formatDistanceToNow } from 'date-fns';
|
|
import { getLocaleWithSuffix } from '../../../utils/dateFnsLocale';
|
|
import globalize from '../../../scripts/globalize';
|
|
import cardBuilder from '../../cardbuilder/cardBuilder';
|
|
import IconButtonElement from '../../../elements/IconButtonElement';
|
|
import escapeHTML from 'escape-html';
|
|
|
|
const createLinkElement = ({ user, renderImgUrl }: { user: UserDto, renderImgUrl: string }) => ({
|
|
__html: `<a
|
|
is="emby-linkbutton"
|
|
class="cardContent"
|
|
href="#/useredit.html?userId=${user.Id}"
|
|
>
|
|
${renderImgUrl}
|
|
</a>`
|
|
});
|
|
|
|
type IProps = {
|
|
user?: UserDto;
|
|
};
|
|
|
|
const getLastSeenText = (lastActivityDate?: string | null) => {
|
|
if (lastActivityDate) {
|
|
return globalize.translate('LastSeen', formatDistanceToNow(Date.parse(lastActivityDate), getLocaleWithSuffix()));
|
|
}
|
|
|
|
return '';
|
|
};
|
|
|
|
const UserCardBox: FunctionComponent<IProps> = ({ user = {} }: IProps) => {
|
|
let cssClass = 'card squareCard scalableCard squareCard-scalable';
|
|
|
|
if (user.Policy?.IsDisabled) {
|
|
cssClass += ' grayscale';
|
|
}
|
|
|
|
let imgUrl;
|
|
|
|
if (user.PrimaryImageTag && user.Id) {
|
|
imgUrl = window.ApiClient.getUserImageUrl(user.Id, {
|
|
width: 300,
|
|
tag: user.PrimaryImageTag,
|
|
type: 'Primary'
|
|
});
|
|
}
|
|
|
|
let imageClass = 'cardImage';
|
|
|
|
if (user.Policy?.IsDisabled) {
|
|
imageClass += ' disabledUser';
|
|
}
|
|
|
|
const lastSeen = getLastSeenText(user.LastActivityDate);
|
|
|
|
const renderImgUrl = imgUrl ?
|
|
`<div class='${imageClass}' style='background-image:url(${imgUrl})'></div>` :
|
|
`<div class='${imageClass} ${cardBuilder.getDefaultBackgroundClass(user.Name)} flex align-items-center justify-content-center'>
|
|
<span class='material-icons cardImageIcon person' aria-hidden='true'></span>
|
|
</div>`;
|
|
|
|
return (
|
|
<div data-userid={user.Id} className={cssClass}>
|
|
<div className='cardBox visualCardBox'>
|
|
<div className='cardScalable visualCardBox-cardScalable'>
|
|
<div className='cardPadder cardPadder-square'></div>
|
|
<div
|
|
dangerouslySetInnerHTML={createLinkElement({
|
|
user: user,
|
|
renderImgUrl: renderImgUrl
|
|
})}
|
|
/>
|
|
</div>
|
|
<div className='cardFooter visualCardBox-cardFooter'>
|
|
<div
|
|
style={{ textAlign: 'right', float: 'right', paddingTop: '5px' }}
|
|
>
|
|
<IconButtonElement
|
|
is='paper-icon-button-light'
|
|
className='btnUserMenu flex-shrink-zero'
|
|
icon='more_vert'
|
|
/>
|
|
</div>
|
|
<div className='cardText'>
|
|
<span>{escapeHTML(user.Name)}</span>
|
|
</div>
|
|
<div className='cardText cardText-secondary'>
|
|
<span>{lastSeen != '' ? lastSeen : ''}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default UserCardBox;
|