Add translations to IV

This commit is contained in:
dangered wolf 2023-08-20 22:52:15 -04:00
parent 949210f6c7
commit 7908dbe321
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 27 additions and 2 deletions

View file

@ -42,7 +42,7 @@ export const handleStatus = async (
isTelegram /*&& !tweet.possibly_sensitive*/ &&
!flags?.direct &&
!flags?.api &&
(tweet.media?.mosaic || tweet.is_note_tweet || tweet.quote || flags?.forceInstantView);
(tweet.media?.mosaic || tweet.is_note_tweet || tweet.quote || tweet.translation || flags?.forceInstantView);
let ivbody = '';

View file

@ -1,6 +1,7 @@
import { Constants } from '../constants';
import { getSocialTextIV } from '../helpers/author';
import { sanitizeText } from '../helpers/utils';
import { Strings } from '../strings';
const populateUserLinks = (tweet: APITweet, text: string): string => {
/* TODO: Maybe we can add username splices to our API so only genuinely valid users are linked? */
@ -68,6 +69,28 @@ function paragraphify(text: string, isQuote = false): string {
.join('\n');
}
function getTranslatedText(tweet: APITweet, isQuote = false): string | null {
if (!tweet.translation) {
return null;
}
let text = paragraphify(sanitizeText(tweet.translation?.text), isQuote);
text = htmlifyLinks(text);
text = htmlifyHashtags(text);
text = populateUserLinks(tweet, text);
const formatText =
tweet.translation.target_lang === 'en'
? Strings.TRANSLATE_TEXT.format({
language: tweet.translation.source_lang_en
})
: Strings.TRANSLATE_TEXT_INTL.format({
source: tweet.translation.source_lang.toUpperCase(),
destination: tweet.translation.target_lang.toUpperCase()
});
return `<h4>${formatText}</h4>${text}<h4>Original</h4>`;
}
/* TODO: maybe refactor so all tweets pull from this */
const generateTweet = (tweet: APITweet, isQuote = false): string => {
let text = paragraphify(sanitizeText(tweet.text), isQuote);
@ -75,6 +98,8 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
text = htmlifyHashtags(text);
text = populateUserLinks(tweet, text);
const translatedText = getTranslatedText(tweet, isQuote);
return `
<!-- Embed profile picture, display name, and screen name in table -->
${
@ -95,8 +120,8 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
`
: ''
}
<!-- Embed Tweet text -->
${translatedText ? translatedText : ''}
${text}
${generateTweetMedia(tweet)}
${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : ''}