Merge pull request #262 from eramdam/derambert/alt-text

Add `altText` field on photos
This commit is contained in:
dangered wolf 2023-05-08 05:49:59 -04:00 committed by GitHub
commit 6afecea2a7
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 2 deletions

View file

@ -5,7 +5,8 @@ export const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
type: 'photo', type: 'photo',
url: media.media_url_https, url: media.media_url_https,
width: media.original_info.width, width: media.original_info.width,
height: media.original_info.height height: media.original_info.height,
altText: media.ext_alt_text || ''
}; };
} else if (media.type === 'video' || media.type === 'animated_gif') { } else if (media.type === 'video' || media.type === 'animated_gif') {
/* Find the variant with the highest bitrate */ /* Find the variant with the highest bitrate */

View file

@ -204,7 +204,8 @@ export const handleStatus = async (
height: 0, height: 0,
width: 0, width: 0,
url: tweet.media.mosaic.formats.jpeg, url: tweet.media.mosaic.formats.jpeg,
type: 'photo' type: 'photo',
altText: ''
}; };
/* If mosaic isn't available or the link calls for a specific photo, /* If mosaic isn't available or the link calls for a specific photo,
we'll indicate which photo it is out of the total */ we'll indicate which photo it is out of the total */

View file

@ -71,6 +71,7 @@ type TweetMedia = {
ext_media_color?: { ext_media_color?: {
palette?: MediaPlaceholderColor[]; palette?: MediaPlaceholderColor[];
}; };
ext_alt_text?: string;
id_str: string; id_str: string;
indices: [number, number]; indices: [number, number];
media_key: string; media_key: string;

View file

@ -86,6 +86,7 @@ interface APIPhoto {
url: string; url: string;
width: number; width: number;
height: number; height: number;
altText: string;
} }
interface APIMosaicPhoto { interface APIMosaicPhoto {

View file

@ -173,9 +173,11 @@ test('API fetch multi-photo Tweet', async () => {
expect(photos[0].url).toEqual('https://pbs.twimg.com/media/FA4BaFaXoBUV3di.jpg'); expect(photos[0].url).toEqual('https://pbs.twimg.com/media/FA4BaFaXoBUV3di.jpg');
expect(photos[0].width).toEqual(950); expect(photos[0].width).toEqual(950);
expect(photos[0].height).toEqual(620); expect(photos[0].height).toEqual(620);
expect(photos[0].altText).toBeTruthy();
expect(photos[1].url).toEqual('https://pbs.twimg.com/media/FA4BaUyXEAcAHvK.jpg'); expect(photos[1].url).toEqual('https://pbs.twimg.com/media/FA4BaUyXEAcAHvK.jpg');
expect(photos[1].width).toEqual(1386); expect(photos[1].width).toEqual(1386);
expect(photos[1].height).toEqual(706); expect(photos[1].height).toEqual(706);
expect(photos[1].altText).toBeTruthy();
expect(tweet.media?.mosaic).toBeTruthy(); expect(tweet.media?.mosaic).toBeTruthy();
const mosaic = tweet.media?.mosaic as APIMosaicPhoto; const mosaic = tweet.media?.mosaic as APIMosaicPhoto;
expect(mosaic.formats?.jpeg).toEqual( expect(mosaic.formats?.jpeg).toEqual(