/* eslint-disable no-irregular-whitespace */ import { Constants } from '../constants'; import { getSocialTextIV } from '../helpers/socialproof'; import { formatNumber, sanitizeText } from '../helpers/utils'; import { Strings } from '../strings'; enum AuthorActionType { Reply = 'Reply', Original = 'Original', FollowUp = 'FollowUp' } const populateUserLinks = (status: APIStatus, text: string): string => { /* TODO: Maybe we can add username splices to our API so only genuinely valid users are linked? */ text.match(/@(\w{1,15})/g)?.forEach(match => { const username = match.replace('@', ''); text = text.replace( match, `${match}` ); }); return text; }; const generateStatusMedia = (status: APIStatus, author: APIUser): string => { let media = ''; if (status.media?.all?.length) { status.media.all.forEach(mediaItem => { switch (mediaItem.type) { case 'photo': // eslint-disable-next-line no-case-declarations const { altText } = mediaItem as APIPhoto; media += ``.format({ altText: altText ? `alt="${altText}"` : '', url: mediaItem.url }); break; case 'video': media += `