Simplify instant view html templates

This commit is contained in:
dangered wolf 2023-08-22 02:45:16 -04:00
parent 1a442359fc
commit 6170bdc683
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -124,29 +124,41 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
description = populateUserLinks(tweet, description); description = populateUserLinks(tweet, description);
return ` return `
<p>${getSocialTextIV(tweet)}</p> <p>{socialText}</p>
<br>${!isQuote ? `<a href="${tweet.url}">View original post</a>` : notApplicableComment} <br>{viewOriginal}
<!-- Embed profile picture, display name, and screen name in table --> <!-- Embed profile picture, display name, and screen name in table -->
<h3>About author</h3> {aboutSection}
${ `.format({
!isQuote socialText: getSocialTextIV(tweet) || '',
? ` viewOriginal: !isQuote
<img src="${author.avatar_url?.replace('_200x200', '_400x400')}" alt="${ ? `<a href="${tweet.url}">View original post</a>`
author.name : notApplicableComment,
}'s profile picture" /> aboutSection: isQuote
<h2>${author.name}</h2> ? ''
<p><a href="${author.url}">@${author.screen_name}</a></p> : `<h3>About author</h3>
<p><b>${description}</b></p> {pfp}
<p>${author.location ? `📌 ${author.location}` : ''}${''}${ <h2>${author.name}</h2>
author.website <p><a href="${author.url}">@${author.screen_name}</a></p>
? `🔗 <a href=${author.website.url}>${author.website.display_url}</a>` <p><b>${description}</b></p>
: '' <p>{location} {website} {joined}</p>
}${''}${author.joined ? `📆 ${formatDate(new Date(author.joined))}` : ''}</p> <p>
<p>${truncateSocialCount(author.following)} <b>Following</b> {following} <b>Following</b>
${truncateSocialCount(author.followers)} <b>Followers</b> {followers} <b>Followers</b>
${truncateSocialCount(author.tweets)} <b>Posts</b></p>` {tweets} <b>Posts</b>
: '' </p>`.format({
}`; pfp: `<img src="${author.avatar_url?.replace('_200x200', '_400x400')}" alt="${
author.name
}'s profile picture" />`,
location: author.location ? `📌 ${author.location}` : '',
website: author.website
? `🔗 <a href=${author.website.url}>${author.website.display_url}</a>`
: '',
joined: author.joined ? `📆 ${formatDate(new Date(author.joined))}` : '',
following: truncateSocialCount(author.following),
followers: truncateSocialCount(author.followers),
tweets: truncateSocialCount(author.tweets)
})
});
}; };
const generateTweet = (tweet: APITweet, isQuote = false): string => { const generateTweet = (tweet: APITweet, isQuote = false): string => {
@ -158,14 +170,7 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
const translatedText = getTranslatedText(tweet, isQuote); const translatedText = getTranslatedText(tweet, isQuote);
return `<!-- Telegram Instant View --> return `<!-- Telegram Instant View -->
${ {quoteHeader}
isQuote
? `
<h4><a href="${tweet.url}">Quoting</a> ${tweet.author.name}
(<a href="${Constants.TWITTER_ROOT}/${tweet.author.screen_name}">@${tweet.author.screen_name}</a>)</h4>
`
: ''
}
<!-- Embed Tweet media --> <!-- Embed Tweet media -->
${generateTweetMedia(tweet)} ${generateTweetMedia(tweet)}
<!-- Translated text (if applicable) --> <!-- Translated text (if applicable) -->
@ -176,7 +181,11 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : notApplicableComment} ${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : notApplicableComment}
${!isQuote ? generateTweetFooter(tweet) : ''} ${!isQuote ? generateTweetFooter(tweet) : ''}
<br>${!isQuote ? `<a href="${tweet.url}">View original post</a>` : notApplicableComment} <br>${!isQuote ? `<a href="${tweet.url}">View original post</a>` : notApplicableComment}
`; `.format({
quoteHeader: isQuote
? `<h4><a href="${tweet.url}">Quoting</a> ${tweet.author.name} (<a href="${Constants.TWITTER_ROOT}/${tweet.author.screen_name}">@${tweet.author.screen_name}</a>)</h4>`
: ''
});
}; };
export const renderInstantView = (properties: RenderProperties): ResponseInstructions => { export const renderInstantView = (properties: RenderProperties): ResponseInstructions => {