mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Add altText
field on photos
This commit is contained in:
parent
623dd0a301
commit
ade31ec471
5 changed files with 8 additions and 2 deletions
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
1
src/types/twitterTypes.d.ts
vendored
1
src/types/twitterTypes.d.ts
vendored
|
@ -71,6 +71,7 @@ type TweetMedia = {
|
|||
ext_media_color?: {
|
||||
palette?: MediaPlaceholderColor[];
|
||||
};
|
||||
ext_alt_text?: string;
|
||||
id_str: string;
|
||||
indices: [number, number];
|
||||
media_key: string;
|
||||
|
|
1
src/types/types.d.ts
vendored
1
src/types/types.d.ts
vendored
|
@ -86,6 +86,7 @@ interface APIPhoto {
|
|||
url: string;
|
||||
width: number;
|
||||
height: number;
|
||||
altText: string;
|
||||
}
|
||||
|
||||
interface APIMosaicPhoto {
|
||||
|
|
|
@ -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(
|
||||
|
|
Loading…
Add table
Reference in a new issue