import { Constants } from '../constants'; import { getSocialTextIV } from '../helpers/author'; import { sanitizeText } from '../helpers/utils'; const populateUserLinks = (tweet: APITweet, 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 generateTweetMedia = (tweet: APITweet): string => { let media = ''; if (tweet.media?.all?.length) { tweet.media.all.forEach(mediaItem => { switch (mediaItem.type) { case 'photo': media += `${tweet.author.name}'s photo`; break; case 'video': media += `