pleroma/packages/pl-fe/src/utils/status.ts

77 lines
2.6 KiB
TypeScript
Raw Normal View History

import { isIntegerId } from 'pl-fe/utils/numbers';
import type { Status } from 'pl-fe/normalizers';
import type { IntlShape } from 'react-intl';
/** Get the initial visibility of media attachments from user settings. */
const defaultMediaVisibility = (
status: Pick<Status, 'sensitive'>,
2023-06-19 14:49:42 -07:00
displayMedia: string,
): boolean => (displayMedia !== 'hide_all' && !status.sensitive || displayMedia === 'show_all');
2022-04-24 12:28:07 -07:00
/** Grab the first external link from a status. */
const getFirstExternalLink = (status: Pick<Status, 'content'>): HTMLAnchorElement | null => {
try {
// Pulled from Pleroma's media parser
const selector = 'a:not(.mention,.hashtag,.attachment,[rel~="tag"])';
const element = document.createElement('div');
element.innerHTML = status.content;
return element.querySelector(selector);
} catch {
return null;
}
};
2022-04-24 12:28:07 -07:00
/** Whether the status is expected to have a Card after it loads. */
const shouldHaveCard = (status: Pick<Status, 'content'>): boolean =>
Boolean(getFirstExternalLink(status));
2022-04-24 12:28:07 -07:00
/** Whether the media IDs on this status have integer IDs (opposed to FlakeIds). */
// https://gitlab.com/soapbox-pub/soapbox/-/merge_requests/1087
const hasIntegerMediaIds = (status: Pick<Status, 'media_attachments'>): boolean =>
status.media_attachments.some(({ id }) => isIntegerId(id));
/** Sanitize status text for use with screen readers. */
const textForScreenReader = (
2023-06-19 14:49:42 -07:00
intl: IntlShape,
status: Pick<Status, 'account' | 'spoiler_text' | 'hidden' | 'search_index' | 'created_at'>,
rebloggedByText?: string,
): string => {
const { account } = status;
if (!account || typeof account !== 'object') return '';
const displayName = account.display_name;
const values = [
displayName.length === 0 ? account.acct.split('@')[0] : displayName,
status.spoiler_text && status.hidden ? status.spoiler_text : status.search_index.slice(status.spoiler_text.length),
intl.formatDate(status.created_at, { hour: '2-digit', minute: '2-digit', month: 'short', day: 'numeric' }),
2023-06-19 14:49:42 -07:00
account.acct,
];
if (rebloggedByText) {
values.push(rebloggedByText);
}
return values.join(', ');
};
2022-08-08 20:26:30 -07:00
const getStatusIdsFromLinksInContent = (content: string): string[] => {
const urls = content.match(RegExp(`${window.location.origin}/@([a-z\\d_-]+(?:@[^@\\s]+)?)/posts/[a-z0-9]+(?!\\S)`, 'gi'));
if (!urls) return [];
return Array.from(new Set(urls
.map(url => url.split('/').at(-1) as string)
.filter(url => url)));
};
export {
defaultMediaVisibility,
getFirstExternalLink,
shouldHaveCard,
hasIntegerMediaIds,
textForScreenReader,
getStatusIdsFromLinksInContent,
};