Add altText field on photos

This commit is contained in:
Damien Erambert 2023-05-07 22:16:25 -07:00
parent 623dd0a301
commit ade31ec471
No known key found for this signature in database
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',
url: media.media_url_https,
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') {
/* Find the variant with the highest bitrate */

View file

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

View file

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

View file

@ -86,6 +86,7 @@ interface APIPhoto {
url: string;
width: number;
height: number;
altText: string;
}
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].width).toEqual(950);
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].width).toEqual(1386);
expect(photos[1].height).toEqual(706);
expect(photos[1].altText).toBeTruthy();
expect(tweet.media?.mosaic).toBeTruthy();
const mosaic = tweet.media?.mosaic as APIMosaicPhoto;
expect(mosaic.formats?.jpeg).toEqual(