${tweet.author.name} (@${tweet.author.screen_name})
Instant View (✨ Beta) - View original
${generateTweet(tweet)}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 += ``;
break;
case 'video':
media += ``;
break;
case 'gif':
media += ``;
break;
}
});
}
return media;
};
// const formatDateTime = (date: Date): string => {
// const yyyy = date.getFullYear();
// const mm = String(date.getMonth() + 1).padStart(2, '0'); // Months are 0-indexed
// const dd = String(date.getDate()).padStart(2, '0');
// const hh = String(date.getHours()).padStart(2, '0');
// const min = String(date.getMinutes()).padStart(2, '0');
// return `${hh}:${min} - ${yyyy}/${mm}/${dd}`;
// }
const htmlifyLinks = (input: string): string => {
const urlPattern = /\bhttps?:\/\/\S+/g;
return input.replace(urlPattern, url => {
return `${url}`;
});
};
const htmlifyHashtags = (input: string): string => {
const hashtagPattern = /#([a-zA-Z_]\w*)/g;
return input.replace(hashtagPattern, (match, hashtag) => {
const encodedHashtag = encodeURIComponent(hashtag);
return `${match}`;
});
};
/* TODO: maybe refactor so all tweets pull from this */
const generateTweet = (tweet: APITweet, isQuote = false): string => {
let text = sanitizeText(tweet.text).replace(/\n/g, '
');
text = htmlifyLinks(text);
text = htmlifyHashtags(text);
text = populateUserLinks(tweet, text);
return `
${!isQuote ? `
' : ''} ${text} ${isQuote ? '' : ''} ${generateTweetMedia(tweet)} ${(!isQuote && tweet.quote) ? generateTweet(tweet.quote, true) : ''}
Instant View (✨ Beta) - View original
${generateTweet(tweet)}