mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Add translations to IV
This commit is contained in:
parent
949210f6c7
commit
7908dbe321
2 changed files with 27 additions and 2 deletions
|
@ -42,7 +42,7 @@ export const handleStatus = async (
|
||||||
isTelegram /*&& !tweet.possibly_sensitive*/ &&
|
isTelegram /*&& !tweet.possibly_sensitive*/ &&
|
||||||
!flags?.direct &&
|
!flags?.direct &&
|
||||||
!flags?.api &&
|
!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 = '';
|
let ivbody = '';
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import { Constants } from '../constants';
|
import { Constants } from '../constants';
|
||||||
import { getSocialTextIV } from '../helpers/author';
|
import { getSocialTextIV } from '../helpers/author';
|
||||||
import { sanitizeText } from '../helpers/utils';
|
import { sanitizeText } from '../helpers/utils';
|
||||||
|
import { Strings } from '../strings';
|
||||||
|
|
||||||
const populateUserLinks = (tweet: APITweet, text: string): string => {
|
const populateUserLinks = (tweet: APITweet, text: string): string => {
|
||||||
/* TODO: Maybe we can add username splices to our API so only genuinely valid users are linked? */
|
/* 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');
|
.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 */
|
/* TODO: maybe refactor so all tweets pull from this */
|
||||||
const generateTweet = (tweet: APITweet, isQuote = false): string => {
|
const generateTweet = (tweet: APITweet, isQuote = false): string => {
|
||||||
let text = paragraphify(sanitizeText(tweet.text), isQuote);
|
let text = paragraphify(sanitizeText(tweet.text), isQuote);
|
||||||
|
@ -75,6 +98,8 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
|
||||||
text = htmlifyHashtags(text);
|
text = htmlifyHashtags(text);
|
||||||
text = populateUserLinks(tweet, text);
|
text = populateUserLinks(tweet, text);
|
||||||
|
|
||||||
|
const translatedText = getTranslatedText(tweet, isQuote);
|
||||||
|
|
||||||
return `
|
return `
|
||||||
<!-- Embed profile picture, display name, and screen name in table -->
|
<!-- Embed profile picture, display name, and screen name in table -->
|
||||||
${
|
${
|
||||||
|
@ -95,8 +120,8 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
|
||||||
`
|
`
|
||||||
: ''
|
: ''
|
||||||
}
|
}
|
||||||
|
|
||||||
<!-- Embed Tweet text -->
|
<!-- Embed Tweet text -->
|
||||||
|
${translatedText ? translatedText : ''}
|
||||||
${text}
|
${text}
|
||||||
${generateTweetMedia(tweet)}
|
${generateTweetMedia(tweet)}
|
||||||
${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : ''}
|
${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : ''}
|
||||||
|
|
Loading…
Add table
Reference in a new issue