From d9e101a740dbc659d80d98224b7f6de5aaf9c738 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 21 Aug 2023 21:58:29 -0400 Subject: [PATCH] Prettier & improved IV accessibility --- src/api/status.ts | 13 ++++++++----- src/api/user.ts | 2 +- src/fetch.ts | 10 ++++++++-- src/render/instantview.ts | 31 ++++++++++++++++++------------- src/types/twitterTypes.d.ts | 14 +++++++------- 5 files changed, 42 insertions(+), 28 deletions(-) diff --git a/src/api/status.ts b/src/api/status.ts index 5e511ec..a52306c 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -44,7 +44,7 @@ const populateTweetProperties = async ( const graphQLUser = tweet.core.user_results.result; const apiUser = convertToApiUser(graphQLUser); - console.log(JSON.stringify(graphQLUser)) + console.log(JSON.stringify(graphQLUser)); /* Populating a lot of the basics */ apiTweet.url = `${Constants.TWITTER_ROOT}/${apiUser.screen_name}/status/${tweet.rest_id}`; @@ -67,7 +67,7 @@ const populateTweetProperties = async ( likes: apiUser.likes, protected: apiUser.protected, birthday: apiUser.birthday, - website: apiUser.website, + website: apiUser.website }; apiTweet.replies = tweet.legacy.reply_count; apiTweet.retweets = tweet.legacy.retweet_count; @@ -88,9 +88,12 @@ const populateTweetProperties = async ( const noteTweetText = tweet.note_tweet?.note_tweet_results?.result?.text; /* For now, don't include note tweets */ if (noteTweetText) { - tweet.legacy.entities.urls = tweet.note_tweet?.note_tweet_results?.result?.entity_set.urls; - 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; + tweet.legacy.entities.urls = + tweet.note_tweet?.note_tweet_results?.result?.entity_set.urls; + 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'); apiTweet.text = unescapeText(linkFixer(tweet, noteTweetText)); diff --git a/src/api/user.ts b/src/api/user.ts index 09cadf1..9f3e811 100644 --- a/src/api/user.ts +++ b/src/api/user.ts @@ -70,7 +70,7 @@ const populateUserProperties = async ( available for free using api.fxtwitter.com. */ export const userAPI = async ( username: string, - event: FetchEvent, + event: FetchEvent // flags?: InputFlags ): Promise => { const userResponse = await fetchUser(username, event); diff --git a/src/fetch.ts b/src/fetch.ts index 149ee61..02aa9be 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -9,7 +9,10 @@ let wasElongatorDisabled = false; export const twitterFetch = async ( url: string, event: FetchEvent, - useElongator = experimentCheck(Experiment.ELONGATOR_BY_DEFAULT, typeof TwitterProxy !== 'undefined'), + useElongator = experimentCheck( + Experiment.ELONGATOR_BY_DEFAULT, + typeof TwitterProxy !== 'undefined' + ), validateFunction: (response: unknown) => boolean ): Promise => { let apiAttempts = 0; @@ -214,7 +217,10 @@ export const twitterFetch = async ( export const fetchConversation = async ( status: string, event: FetchEvent, - useElongator = experimentCheck(Experiment.ELONGATOR_BY_DEFAULT, typeof TwitterProxy !== 'undefined') + useElongator = experimentCheck( + Experiment.ELONGATOR_BY_DEFAULT, + typeof TwitterProxy !== 'undefined' + ) ): Promise => { return (await twitterFetch( `${ diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 8829b56..dbbffc0 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -22,13 +22,16 @@ const generateTweetMedia = (tweet: APITweet): string => { tweet.media.all.forEach(mediaItem => { switch (mediaItem.type) { case 'photo': - media += `${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 += ``; break; case 'video': - media += `