mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Merge pull request #262 from eramdam/derambert/alt-text
Add `altText` field on photos
This commit is contained in:
commit
6afecea2a7
5 changed files with 8 additions and 2 deletions
|
@ -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 */
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
1
src/types/twitterTypes.d.ts
vendored
1
src/types/twitterTypes.d.ts
vendored
|
@ -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;
|
||||||
|
|
1
src/types/types.d.ts
vendored
1
src/types/types.d.ts
vendored
|
@ -86,6 +86,7 @@ interface APIPhoto {
|
||||||
url: string;
|
url: string;
|
||||||
width: number;
|
width: number;
|
||||||
height: number;
|
height: number;
|
||||||
|
altText: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface APIMosaicPhoto {
|
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].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(
|
||||||
|
|
Loading…
Add table
Reference in a new issue