Prettier & improved IV accessibility

This commit is contained in:
dangered wolf 2023-08-21 21:58:29 -04:00
parent 49413d5e49
commit d9e101a740
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
5 changed files with 42 additions and 28 deletions

View file

@ -44,7 +44,7 @@ const populateTweetProperties = async (
const graphQLUser = tweet.core.user_results.result; const graphQLUser = tweet.core.user_results.result;
const apiUser = convertToApiUser(graphQLUser); const apiUser = convertToApiUser(graphQLUser);
console.log(JSON.stringify(graphQLUser)) console.log(JSON.stringify(graphQLUser));
/* Populating a lot of the basics */ /* Populating a lot of the basics */
apiTweet.url = `${Constants.TWITTER_ROOT}/${apiUser.screen_name}/status/${tweet.rest_id}`; apiTweet.url = `${Constants.TWITTER_ROOT}/${apiUser.screen_name}/status/${tweet.rest_id}`;
@ -67,7 +67,7 @@ const populateTweetProperties = async (
likes: apiUser.likes, likes: apiUser.likes,
protected: apiUser.protected, protected: apiUser.protected,
birthday: apiUser.birthday, birthday: apiUser.birthday,
website: apiUser.website, website: apiUser.website
}; };
apiTweet.replies = tweet.legacy.reply_count; apiTweet.replies = tweet.legacy.reply_count;
apiTweet.retweets = tweet.legacy.retweet_count; apiTweet.retweets = tweet.legacy.retweet_count;
@ -88,9 +88,12 @@ const populateTweetProperties = async (
const noteTweetText = tweet.note_tweet?.note_tweet_results?.result?.text; const noteTweetText = tweet.note_tweet?.note_tweet_results?.result?.text;
/* For now, don't include note tweets */ /* For now, don't include note tweets */
if (noteTweetText) { if (noteTweetText) {
tweet.legacy.entities.urls = tweet.note_tweet?.note_tweet_results?.result?.entity_set.urls; tweet.legacy.entities.urls =
tweet.legacy.entities.hashtags = tweet.note_tweet?.note_tweet_results?.result?.entity_set.hashtags; tweet.note_tweet?.note_tweet_results?.result?.entity_set.urls;
tweet.legacy.entities.symbols = tweet.note_tweet?.note_tweet_results?.result?.entity_set.symbols; tweet.legacy.entities.hashtags =
tweet.note_tweet?.note_tweet_results?.result?.entity_set.hashtags;
tweet.legacy.entities.symbols =
tweet.note_tweet?.note_tweet_results?.result?.entity_set.symbols;
console.log('We meet the conditions to use new note tweets'); console.log('We meet the conditions to use new note tweets');
apiTweet.text = unescapeText(linkFixer(tweet, noteTweetText)); apiTweet.text = unescapeText(linkFixer(tweet, noteTweetText));

View file

@ -70,7 +70,7 @@ const populateUserProperties = async (
available for free using api.fxtwitter.com. */ available for free using api.fxtwitter.com. */
export const userAPI = async ( export const userAPI = async (
username: string, username: string,
event: FetchEvent, event: FetchEvent
// flags?: InputFlags // flags?: InputFlags
): Promise<UserAPIResponse> => { ): Promise<UserAPIResponse> => {
const userResponse = await fetchUser(username, event); const userResponse = await fetchUser(username, event);

View file

@ -9,7 +9,10 @@ let wasElongatorDisabled = false;
export const twitterFetch = async ( export const twitterFetch = async (
url: string, url: string,
event: FetchEvent, event: FetchEvent,
useElongator = experimentCheck(Experiment.ELONGATOR_BY_DEFAULT, typeof TwitterProxy !== 'undefined'), useElongator = experimentCheck(
Experiment.ELONGATOR_BY_DEFAULT,
typeof TwitterProxy !== 'undefined'
),
validateFunction: (response: unknown) => boolean validateFunction: (response: unknown) => boolean
): Promise<unknown> => { ): Promise<unknown> => {
let apiAttempts = 0; let apiAttempts = 0;
@ -214,7 +217,10 @@ export const twitterFetch = async (
export const fetchConversation = async ( export const fetchConversation = async (
status: string, status: string,
event: FetchEvent, event: FetchEvent,
useElongator = experimentCheck(Experiment.ELONGATOR_BY_DEFAULT, typeof TwitterProxy !== 'undefined') useElongator = experimentCheck(
Experiment.ELONGATOR_BY_DEFAULT,
typeof TwitterProxy !== 'undefined'
)
): Promise<TweetResultsByRestIdResult> => { ): Promise<TweetResultsByRestIdResult> => {
return (await twitterFetch( return (await twitterFetch(
`${ `${

View file

@ -22,13 +22,16 @@ const generateTweetMedia = (tweet: APITweet): string => {
tweet.media.all.forEach(mediaItem => { tweet.media.all.forEach(mediaItem => {
switch (mediaItem.type) { switch (mediaItem.type) {
case 'photo': case 'photo':
media += `<img src="${mediaItem.url}" alt="${tweet.author.name}'s photo"/>`; // eslint-disable-next-line no-case-declarations
const { altText } = mediaItem as APIPhoto;
// eslint-disable-next-line sonarjs/no-nested-template-literals
media += `<img src="${mediaItem.url}" ${altText ? `alt="${altText}"` : ''}/>`;
break; break;
case 'video': case 'video':
media += `<video src="${mediaItem.url}" alt="${tweet.author.name}'s video"/>`; media += `<video src="${mediaItem.url}" alt="${tweet.author.name}'s video. Alt text not available."/>`;
break; break;
case 'gif': case 'gif':
media += `<video src="${mediaItem.url}" alt="${tweet.author.name}'s gif"/>`; media += `<video src="${mediaItem.url}" alt="${tweet.author.name}'s gif. Alt text not available."/>`;
break; break;
} }
}); });
@ -50,7 +53,7 @@ const formatDate = (date: Date): string => {
const mm = String(date.getMonth() + 1).padStart(2, '0'); // Months are 0-indexed const mm = String(date.getMonth() + 1).padStart(2, '0'); // Months are 0-indexed
const dd = String(date.getDate()).padStart(2, '0'); const dd = String(date.getDate()).padStart(2, '0');
return `${yyyy}/${mm}/${dd}`; return `${yyyy}/${mm}/${dd}`;
} };
const htmlifyLinks = (input: string): string => { const htmlifyLinks = (input: string): string => {
const urlPattern = /\bhttps?:\/\/\S+/g; const urlPattern = /\bhttps?:\/\/\S+/g;
@ -110,8 +113,7 @@ const truncateSocialCount = (count: number): string => {
} else { } else {
return String(count); return String(count);
} }
} };
const generateTweetFooter = (tweet: APITweet, isQuote = false): string => { const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
const { author } = tweet; const { author } = tweet;
@ -123,6 +125,7 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
return ` return `
<p>${getSocialTextIV(tweet)}</p> <p>${getSocialTextIV(tweet)}</p>
<br>${!isQuote ? `<a href="${tweet.url}">View original post</a>` : notApplicableComment}
<!-- Embed profile picture, display name, and screen name in table --> <!-- Embed profile picture, display name, and screen name in table -->
<h3>About author</h3> <h3>About author</h3>
${ ${
@ -134,16 +137,18 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
<h2>${author.name}</h2> <h2>${author.name}</h2>
<p><a href="${author.url}">@${author.screen_name}</a></p> <p><a href="${author.url}">@${author.screen_name}</a></p>
<p><b>${description}</b></p> <p><b>${description}</b></p>
<p>${author.location ? `📌 ${author.location}` : ''}${'' <p>${author.location ? `📌 ${author.location}` : ''}${''}${
}${author.website ? `🔗 <a href=${author.website.url}>${author.website.display_url}</a>` : ''}${'' author.website
}${author.joined ? `📆 ${formatDate(new Date(author.joined))}` : ''}</p> ? `🔗 <a href=${author.website.url}>${author.website.display_url}</a>`
: ''
}${''}${author.joined ? `📆 ${formatDate(new Date(author.joined))}` : ''}</p>
<p>${truncateSocialCount(author.following)} <b>Following</b> <p>${truncateSocialCount(author.following)} <b>Following</b>
${truncateSocialCount(author.followers)} <b>Followers</b> ${truncateSocialCount(author.followers)} <b>Followers</b>
${truncateSocialCount(author.tweets)} <b>Posts</b></p> ${truncateSocialCount(author.tweets)} <b>Posts</b></p>
</table>` </table>`
: '' : ''
}`; }`;
} };
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);
@ -171,7 +176,7 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => {
<!-- Embedded quote tweet --> <!-- Embedded quote tweet -->
${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : notApplicableComment} ${!isQuote && tweet.quote ? generateTweet(tweet.quote, true) : notApplicableComment}
${generateTweetFooter(tweet)} ${generateTweetFooter(tweet)}
<br>${!isQuote ? `<a href="${tweet.url}">View original</a>` : notApplicableComment} <br>${!isQuote ? `<a href="${tweet.url}">View original post</a>` : notApplicableComment}
`; `;
}; };

View file

@ -246,7 +246,7 @@ type GraphQLUser = {
url: string; // "https://t.co/DAtOo6uuHk", url: string; // "https://t.co/DAtOo6uuHk",
indices: [0, 23]; indices: [0, 23];
}[]; }[];
} };
}; };
fast_followers_count: 0; fast_followers_count: 0;
favourites_count: number; // 126708, favourites_count: number; // 126708,
@ -376,7 +376,7 @@ type GraphQLTweet = {
user_results: { user_results: {
result: GraphQLUser; result: GraphQLUser;
}; };
} };
}; };
edit_control: unknown; edit_control: unknown;
edit_perspective: unknown; edit_perspective: unknown;
@ -399,14 +399,14 @@ type GraphQLTweet = {
user_mentions: unknown[]; user_mentions: unknown[];
}; };
media: { media: {
inline_media: unknown[] inline_media: unknown[];
}; };
richtext: { richtext: {
richtext_tags: { richtext_tags: {
from_index: number from_index: number;
to_index: number to_index: number;
richtext_types: string[] richtext_types: string[];
}[] }[];
}; };
text: string; text: string;
}; };