diff --git a/src/api.ts b/src/api.ts index 0ea6a54..5861081 100644 --- a/src/api.ts +++ b/src/api.ts @@ -78,7 +78,6 @@ const populateTweetProperties = async ( mediaList.forEach(media => { let mediaObject = processMedia(media); - console.log('mediaObject', JSON.stringify(mediaObject)); if (mediaObject) { if (mediaObject.type === 'photo') { apiTweet.twitter_card = 'summary_large_image'; @@ -86,7 +85,6 @@ const populateTweetProperties = async ( apiTweet.media.photos = apiTweet.media.photos || []; apiTweet.media.photos.push(mediaObject); - console.log('media', apiTweet.media); } else if (mediaObject.type === 'video' || mediaObject.type === 'gif') { apiTweet.twitter_card = 'player'; apiTweet.media = apiTweet.media || {}; diff --git a/src/palette.ts b/src/palette.ts index 484800a..aa1b50f 100644 --- a/src/palette.ts +++ b/src/palette.ts @@ -14,12 +14,22 @@ export const colorFromPalette = (palette: MediaPlaceholderColor[]) => { const rgb = palette[i].rgb; // We need vibrant colors, grey backgrounds won't do! - if (rgb.red + rgb.green + rgb.blue < 120) { + if ( + rgb.red + rgb.green + rgb.blue < 120 || + rgb.red + rgb.green + rgb.blue > 240 * 3 + ) { continue; } return rgbToHex(rgb.red, rgb.green, rgb.blue); } + /* If no other color passes vibrancy test (not too white or black) + Then we'll use the top color anyway. */ + if (palette?.[0]?.rgb) { + console.log('falling back to top color regardless of vibrancy'); + return rgbToHex(palette[0].rgb.red, palette[0].rgb.green, palette[0].rgb.blue); + } + return Constants.DEFAULT_COLOR; }; diff --git a/src/status.ts b/src/status.ts index 712a402..b60cf32 100644 --- a/src/status.ts +++ b/src/status.ts @@ -4,7 +4,6 @@ import { sanitizeText } from './utils'; import { Strings } from './strings'; import { getAuthorText } from './author'; import { statusAPI } from './api'; -import { calculateTimeLeftString } from './pollHelper'; export const returnError = (error: string): StatusResponse => { return { @@ -63,6 +62,7 @@ export const handleStatus = async ( } } + /* Use quote media if there is no media */ if (!tweet.media && tweet.quote?.media) { tweet.media = tweet.quote.media; tweet.twitter_card = 'summary_large_image'; @@ -79,6 +79,7 @@ export const handleStatus = async ( `` ]; + /* Video renderer */ if (tweet.media?.video) { authorText = encodeURIComponent(tweet.text || ''); @@ -97,6 +98,7 @@ export const handleStatus = async ( ); } + /* Photo renderer */ if (tweet.media?.photos) { const { photos } = tweet.media; let photo = photos[mediaNumber || 0]; @@ -145,6 +147,7 @@ export const handleStatus = async ( ); } + /* External media renderer (i.e. YouTube) */ if (tweet.media?.external) { const { external } = tweet.media; headers.push( @@ -162,6 +165,7 @@ export const handleStatus = async ( let siteName = Constants.BRANDING_NAME; let newText = tweet.text; + /* Poll renderer */ if (tweet.poll) { const { poll } = tweet; let barLength = 34;