phanpy/src/components/name-text.jsx

99 lines
2.4 KiB
React
Raw Normal View History

2022-12-10 09:14:48 +00:00
import './name-text.css';
import { memo } from 'preact/compat';
2022-12-10 09:14:48 +00:00
import states from '../utils/states';
import Avatar from './avatar';
import EmojiText from './emoji-text';
2022-12-10 09:14:48 +00:00
function NameText({
account,
instance,
showAvatar,
showAcct,
short,
external,
onClick,
}) {
2023-04-10 16:26:43 +00:00
const { acct, avatar, avatarStatic, id, url, displayName, emojis, bot } =
account;
let { username } = account;
2023-07-16 02:36:33 +00:00
const [_, acct1, acct2] = acct.match(/([^@]+)(@.+)/i) || [, acct];
2022-12-10 09:14:48 +00:00
const trimmedUsername = username.toLowerCase().trim();
const trimmedDisplayName = (displayName || '').toLowerCase().trim();
2023-02-15 13:40:58 +00:00
const shortenedDisplayName = trimmedDisplayName
.replace(/(\:(\w|\+|\-)+\:)(?=|[\!\.\?]|$)/g, '') // Remove shortcodes, regex from https://regex101.com/r/iE9uV0/1
2023-10-04 13:23:21 +00:00
.replace(/\s+/g, ''); // E.g. "My name" === "myname"
const shortenedAlphaNumericDisplayName = shortenedDisplayName.replace(
/[^a-z0-9]/gi,
'',
); // Remove non-alphanumeric characters
if (
2023-02-15 13:40:58 +00:00
!short &&
(trimmedUsername === trimmedDisplayName ||
2023-10-04 13:23:21 +00:00
trimmedUsername === shortenedDisplayName ||
trimmedUsername === shortenedAlphaNumericDisplayName ||
trimmedUsername.localeCompare?.(shortenedDisplayName, 'en', {
sensitivity: 'base',
}) === 0)
) {
username = null;
}
2022-12-10 09:14:48 +00:00
return (
<a
class={`name-text ${showAcct ? 'show-acct' : ''} ${short ? 'short' : ''}`}
2022-12-10 09:14:48 +00:00
href={url}
2022-12-15 11:45:25 +00:00
target={external ? '_blank' : null}
2023-08-08 06:03:27 +00:00
title={`${displayName ? `${displayName} ` : ''}@${acct}`}
2022-12-10 09:14:48 +00:00
onClick={(e) => {
if (external) return;
e.preventDefault();
e.stopPropagation();
if (onClick) return onClick(e);
states.showAccount = {
account,
instance,
};
2022-12-10 09:14:48 +00:00
}}
>
{showAvatar && (
<>
2023-04-10 16:26:43 +00:00
<Avatar url={avatarStatic || avatar} squircle={bot} />{' '}
2022-12-10 09:14:48 +00:00
</>
)}
{displayName && !short ? (
<>
<b>
<EmojiText text={displayName} emojis={emojis} />
</b>
{!showAcct && username && (
2022-12-10 09:14:48 +00:00
<>
{' '}
<i>@{username}</i>
</>
)}
</>
) : short ? (
<i>{username}</i>
2022-12-10 09:14:48 +00:00
) : (
<b>{username}</b>
2022-12-10 09:14:48 +00:00
)}
{showAcct && (
<>
<br />
2023-07-16 02:36:33 +00:00
<i>
@{acct1}
<span class="ib">{acct2}</span>
</i>
2022-12-10 09:14:48 +00:00
</>
)}
</a>
);
2022-12-16 05:27:04 +00:00
}
export default memo(NameText);