phanpy/src/components/name-text.jsx

73 lines
1.6 KiB
React
Raw Normal View History

2022-12-10 09:14:48 +00:00
import './name-text.css';
import emojifyText from '../utils/emojify-text';
import states from '../utils/states';
import Avatar from './avatar';
function NameText({ account, showAvatar, showAcct, short, external, onClick }) {
const { acct, avatar, avatarStatic, id, url, displayName, emojis } = account;
let { username } = account;
2022-12-10 09:14:48 +00:00
const displayNameWithEmoji = emojifyText(displayName, emojis);
if (
!short &&
username.toLowerCase().trim() ===
(displayName || '')
.replace(/(\:(\w|\+|\-)+\:)(?=|[\!\.\?]|$)/g, '') // Remove shortcodes, regex from https://regex101.com/r/iE9uV0/1
.toLowerCase()
.trim()
) {
username = null;
}
2022-12-10 09:14:48 +00:00
return (
<a
class={`name-text ${short ? 'short' : ''}`}
href={url}
2022-12-15 11:45:25 +00:00
target={external ? '_blank' : null}
2022-12-10 09:14:48 +00:00
title={`@${acct}`}
onClick={(e) => {
if (external) return;
e.preventDefault();
if (onClick) return onClick(e);
2022-12-10 09:14:48 +00:00
states.showAccount = account;
}}
>
{showAvatar && (
<>
<Avatar url={avatar} />{' '}
</>
)}
{displayName && !short ? (
<>
<b
dangerouslySetInnerHTML={{
__html: displayNameWithEmoji,
}}
/>
{!showAcct && username && (
2022-12-10 09:14:48 +00:00
<>
{' '}
<i>@{username}</i>
</>
)}
</>
) : short ? (
<i>@{username}</i>
) : (
<b>@{username}</b>
)}
{showAcct && (
<>
<br />
<i>@{acct}</i>
</>
)}
</a>
);
2022-12-16 05:27:04 +00:00
}
export default NameText;