mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-21 20:44:28 +03:00
100 lines
2.4 KiB
JavaScript
100 lines
2.4 KiB
JavaScript
import './name-text.css';
|
|
|
|
import { memo } from 'preact/compat';
|
|
|
|
import states from '../utils/states';
|
|
|
|
import Avatar from './avatar';
|
|
import EmojiText from './emoji-text';
|
|
|
|
const nameCollator = new Intl.Collator('en', {
|
|
sensitivity: 'base',
|
|
});
|
|
|
|
function NameText({
|
|
account,
|
|
instance,
|
|
showAvatar,
|
|
showAcct,
|
|
short,
|
|
external,
|
|
onClick,
|
|
}) {
|
|
const { acct, avatar, avatarStatic, id, url, displayName, emojis, bot } =
|
|
account;
|
|
let { username } = account;
|
|
const [_, acct1, acct2] = acct.match(/([^@]+)(@.+)/i) || [, acct];
|
|
|
|
const trimmedUsername = username.toLowerCase().trim();
|
|
const trimmedDisplayName = (displayName || '').toLowerCase().trim();
|
|
const shortenedDisplayName = trimmedDisplayName
|
|
.replace(/(\:(\w|\+|\-)+\:)(?=|[\!\.\?]|$)/g, '') // Remove shortcodes, regex from https://regex101.com/r/iE9uV0/1
|
|
.replace(/\s+/g, ''); // E.g. "My name" === "myname"
|
|
const shortenedAlphaNumericDisplayName = shortenedDisplayName.replace(
|
|
/[^a-z0-9]/gi,
|
|
'',
|
|
); // Remove non-alphanumeric characters
|
|
|
|
if (
|
|
!short &&
|
|
(trimmedUsername === trimmedDisplayName ||
|
|
trimmedUsername === shortenedDisplayName ||
|
|
trimmedUsername === shortenedAlphaNumericDisplayName ||
|
|
nameCollator.compare(trimmedUsername, shortenedDisplayName) === 0)
|
|
) {
|
|
username = null;
|
|
}
|
|
|
|
return (
|
|
<a
|
|
class={`name-text ${showAcct ? 'show-acct' : ''} ${short ? 'short' : ''}`}
|
|
href={url}
|
|
target={external ? '_blank' : null}
|
|
title={`${displayName ? `${displayName} ` : ''}@${acct}`}
|
|
onClick={(e) => {
|
|
if (external) return;
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
if (onClick) return onClick(e);
|
|
states.showAccount = {
|
|
account,
|
|
instance,
|
|
};
|
|
}}
|
|
>
|
|
{showAvatar && (
|
|
<>
|
|
<Avatar url={avatarStatic || avatar} squircle={bot} />{' '}
|
|
</>
|
|
)}
|
|
{displayName && !short ? (
|
|
<>
|
|
<b>
|
|
<EmojiText text={displayName} emojis={emojis} />
|
|
</b>
|
|
{!showAcct && username && (
|
|
<>
|
|
{' '}
|
|
<i>@{username}</i>
|
|
</>
|
|
)}
|
|
</>
|
|
) : short ? (
|
|
<i>{username}</i>
|
|
) : (
|
|
<b>{username}</b>
|
|
)}
|
|
{showAcct && (
|
|
<>
|
|
<br />
|
|
<i>
|
|
@{acct1}
|
|
<span class="ib">{acct2}</span>
|
|
</i>
|
|
</>
|
|
)}
|
|
</a>
|
|
);
|
|
}
|
|
|
|
export default memo(NameText);
|