2024-07-23 22:11:08 +10:00
|
|
|
import { useCallback, useRef } from 'react';
|
2024-07-19 00:36:09 +10:00
|
|
|
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
|
|
|
import { useHistory } from 'react-router-dom';
|
|
|
|
|
|
|
|
import type { List as ImmutableList, RecordOf } from 'immutable';
|
|
|
|
|
|
|
|
import BarChart4BarsIcon from '@/material-icons/400-24px/bar_chart_4_bars.svg?react';
|
|
|
|
import PhotoLibraryIcon from '@/material-icons/400-24px/photo_library.svg?react';
|
2024-08-23 03:12:35 +10:00
|
|
|
import { toggleStatusSpoilers } from 'mastodon/actions/statuses';
|
2024-07-19 00:36:09 +10:00
|
|
|
import { Avatar } from 'mastodon/components/avatar';
|
2024-08-23 03:12:35 +10:00
|
|
|
import { ContentWarning } from 'mastodon/components/content_warning';
|
2024-07-19 00:36:09 +10:00
|
|
|
import { DisplayName } from 'mastodon/components/display_name';
|
|
|
|
import { Icon } from 'mastodon/components/icon';
|
|
|
|
import type { Status } from 'mastodon/models/status';
|
2024-08-23 03:12:35 +10:00
|
|
|
import { useAppSelector, useAppDispatch } from 'mastodon/store';
|
2024-07-19 00:36:09 +10:00
|
|
|
|
|
|
|
import { EmbeddedStatusContent } from './embedded_status_content';
|
|
|
|
|
|
|
|
export type Mention = RecordOf<{ url: string; acct: string }>;
|
|
|
|
|
|
|
|
export const EmbeddedStatus: React.FC<{ statusId: string }> = ({
|
|
|
|
statusId,
|
|
|
|
}) => {
|
|
|
|
const history = useHistory();
|
2024-07-23 22:11:08 +10:00
|
|
|
const clickCoordinatesRef = useRef<[number, number] | null>();
|
2024-08-23 03:12:35 +10:00
|
|
|
const dispatch = useAppDispatch();
|
2024-07-19 00:36:09 +10:00
|
|
|
|
|
|
|
const status = useAppSelector(
|
|
|
|
(state) => state.statuses.get(statusId) as Status | undefined,
|
|
|
|
);
|
|
|
|
|
|
|
|
const account = useAppSelector((state) =>
|
|
|
|
state.accounts.get(status?.get('account') as string),
|
|
|
|
);
|
|
|
|
|
2024-07-23 22:11:08 +10:00
|
|
|
const handleMouseDown = useCallback<React.MouseEventHandler<HTMLDivElement>>(
|
|
|
|
({ clientX, clientY }) => {
|
|
|
|
clickCoordinatesRef.current = [clientX, clientY];
|
|
|
|
},
|
|
|
|
[clickCoordinatesRef],
|
|
|
|
);
|
|
|
|
|
|
|
|
const handleMouseUp = useCallback<React.MouseEventHandler<HTMLDivElement>>(
|
|
|
|
({ clientX, clientY, target, button }) => {
|
|
|
|
const [startX, startY] = clickCoordinatesRef.current ?? [0, 0];
|
|
|
|
const [deltaX, deltaY] = [
|
|
|
|
Math.abs(clientX - startX),
|
|
|
|
Math.abs(clientY - startY),
|
|
|
|
];
|
|
|
|
|
|
|
|
let element: HTMLDivElement | null = target as HTMLDivElement;
|
|
|
|
|
|
|
|
while (element) {
|
|
|
|
if (
|
|
|
|
element.localName === 'button' ||
|
|
|
|
element.localName === 'a' ||
|
|
|
|
element.localName === 'label'
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
element = element.parentNode as HTMLDivElement | null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (deltaX + deltaY < 5 && button === 0 && account) {
|
|
|
|
history.push(`/@${account.acct}/${statusId}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
clickCoordinatesRef.current = null;
|
|
|
|
},
|
|
|
|
[clickCoordinatesRef, statusId, account, history],
|
|
|
|
);
|
2024-07-19 00:36:09 +10:00
|
|
|
|
2024-07-23 22:11:08 +10:00
|
|
|
const handleMouseEnter = useCallback<React.MouseEventHandler<HTMLDivElement>>(
|
|
|
|
({ currentTarget }) => {
|
|
|
|
const emojis =
|
|
|
|
currentTarget.querySelectorAll<HTMLImageElement>('.custom-emoji');
|
|
|
|
|
|
|
|
for (const emoji of emojis) {
|
|
|
|
const newSrc = emoji.getAttribute('data-original');
|
|
|
|
if (newSrc) emoji.src = newSrc;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
[],
|
|
|
|
);
|
|
|
|
|
|
|
|
const handleMouseLeave = useCallback<React.MouseEventHandler<HTMLDivElement>>(
|
|
|
|
({ currentTarget }) => {
|
|
|
|
const emojis =
|
|
|
|
currentTarget.querySelectorAll<HTMLImageElement>('.custom-emoji');
|
|
|
|
|
|
|
|
for (const emoji of emojis) {
|
|
|
|
const newSrc = emoji.getAttribute('data-static');
|
|
|
|
if (newSrc) emoji.src = newSrc;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
[],
|
|
|
|
);
|
2024-07-19 00:36:09 +10:00
|
|
|
|
2024-08-23 03:12:35 +10:00
|
|
|
const handleContentWarningClick = useCallback(() => {
|
|
|
|
dispatch(toggleStatusSpoilers(statusId));
|
|
|
|
}, [dispatch, statusId]);
|
|
|
|
|
2024-07-19 00:36:09 +10:00
|
|
|
if (!status) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assign status attributes to variables with a forced type, as status is not yet properly typed
|
|
|
|
const contentHtml = status.get('contentHtml') as string;
|
2024-08-23 03:12:35 +10:00
|
|
|
const contentWarning = status.get('spoilerHtml') as string;
|
2024-07-19 00:36:09 +10:00
|
|
|
const poll = status.get('poll');
|
|
|
|
const language = status.get('language') as string;
|
|
|
|
const mentions = status.get('mentions') as ImmutableList<Mention>;
|
2024-08-23 03:12:35 +10:00
|
|
|
const expanded = !status.get('hidden') || !contentWarning;
|
2024-07-19 00:36:09 +10:00
|
|
|
const mediaAttachmentsSize = (
|
|
|
|
status.get('media_attachments') as ImmutableList<unknown>
|
|
|
|
).size;
|
|
|
|
|
|
|
|
return (
|
2024-07-23 22:11:08 +10:00
|
|
|
<div
|
|
|
|
className='notification-group__embedded-status'
|
|
|
|
role='button'
|
|
|
|
tabIndex={-1}
|
|
|
|
onMouseDown={handleMouseDown}
|
|
|
|
onMouseUp={handleMouseUp}
|
|
|
|
onMouseEnter={handleMouseEnter}
|
|
|
|
onMouseLeave={handleMouseLeave}
|
|
|
|
>
|
2024-07-19 00:36:09 +10:00
|
|
|
<div className='notification-group__embedded-status__account'>
|
|
|
|
<Avatar account={account} size={16} />
|
|
|
|
<DisplayName account={account} />
|
|
|
|
</div>
|
|
|
|
|
2024-08-23 03:12:35 +10:00
|
|
|
{contentWarning && (
|
|
|
|
<ContentWarning
|
|
|
|
text={contentWarning}
|
|
|
|
onClick={handleContentWarningClick}
|
|
|
|
expanded={expanded}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{(!contentWarning || expanded) && (
|
|
|
|
<EmbeddedStatusContent
|
|
|
|
className='notification-group__embedded-status__content reply-indicator__content translate'
|
|
|
|
content={contentHtml}
|
|
|
|
language={language}
|
|
|
|
mentions={mentions}
|
|
|
|
/>
|
|
|
|
)}
|
2024-07-19 00:36:09 +10:00
|
|
|
|
2024-08-23 03:12:35 +10:00
|
|
|
{expanded && (poll || mediaAttachmentsSize > 0) && (
|
2024-07-19 00:36:09 +10:00
|
|
|
<div className='notification-group__embedded-status__attachments reply-indicator__attachments'>
|
|
|
|
{!!poll && (
|
|
|
|
<>
|
|
|
|
<Icon icon={BarChart4BarsIcon} id='bar-chart-4-bars' />
|
|
|
|
<FormattedMessage
|
|
|
|
id='reply_indicator.poll'
|
|
|
|
defaultMessage='Poll'
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{mediaAttachmentsSize > 0 && (
|
|
|
|
<>
|
|
|
|
<Icon icon={PhotoLibraryIcon} id='photo-library' />
|
|
|
|
<FormattedMessage
|
|
|
|
id='reply_indicator.attachments'
|
|
|
|
defaultMessage='{count, plural, one {# attachment} other {# attachments}}'
|
|
|
|
values={{ count: mediaAttachmentsSize }}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|