76 lines
2.1 KiB
TypeScript
76 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import { FormattedList, FormattedMessage } from 'react-intl';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { openModal } from 'soapbox/actions/modals';
|
|
import HoverRefWrapper from 'soapbox/components/hover_ref_wrapper';
|
|
import { useAppDispatch } from 'soapbox/hooks';
|
|
|
|
import type { Account, Status } from 'soapbox/types/entities';
|
|
|
|
interface IStatusReplyMentions {
|
|
status: Status,
|
|
}
|
|
|
|
const StatusReplyMentions: React.FC<IStatusReplyMentions> = ({ status }) => {
|
|
const dispatch = useAppDispatch();
|
|
|
|
const handleOpenMentionsModal: React.MouseEventHandler<HTMLSpanElement> = (e) => {
|
|
e.stopPropagation();
|
|
|
|
const account = status.account as Account;
|
|
|
|
dispatch(openModal('MENTIONS', {
|
|
username: account.acct,
|
|
statusId: status.id,
|
|
}));
|
|
};
|
|
|
|
if (!status.in_reply_to_id) {
|
|
return null;
|
|
}
|
|
|
|
const to = status.mentions;
|
|
|
|
// The post is a reply, but it has no mentions.
|
|
// Rare, but it can happen.
|
|
if (to.size === 0) {
|
|
return (
|
|
<div className='reply-mentions'>
|
|
<FormattedMessage
|
|
id='reply_mentions.reply_empty'
|
|
defaultMessage='Replying to post'
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// The typical case with a reply-to and a list of mentions.
|
|
const accounts = to.slice(0, 2).map(account => (
|
|
<HoverRefWrapper key={account.id} accountId={account.id} inline>
|
|
<Link to={`/@${account.acct}`} className='reply-mentions__account'>@{account.username}</Link>
|
|
</HoverRefWrapper>
|
|
)).toArray();
|
|
|
|
if (to.size > 2) {
|
|
accounts.push(
|
|
<span key='more' className='hover:underline cursor-pointer' role='presentation' onClick={handleOpenMentionsModal}>
|
|
<FormattedMessage id='reply_mentions.more' defaultMessage='{count} more' values={{ count: to.size - 2 }} />
|
|
</span>,
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className='reply-mentions'>
|
|
<FormattedMessage
|
|
id='reply_mentions.reply'
|
|
defaultMessage='Replying to {accounts}'
|
|
values={{
|
|
accounts: <FormattedList type='conjunction' value={accounts} />,
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default StatusReplyMentions;
|