mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Readd ID to mosaic
This commit is contained in:
parent
748a480b70
commit
2d77ea4b62
2 changed files with 5 additions and 4 deletions
|
@ -99,7 +99,7 @@ const populateTweetProperties = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((apiTweet.media?.photos?.length || 0) > 1) {
|
if ((apiTweet.media?.photos?.length || 0) > 1) {
|
||||||
const mosaic = await handleMosaic(apiTweet.media?.photos || []);
|
const mosaic = await handleMosaic(apiTweet.media?.photos || [], tweet.id_str);
|
||||||
if (typeof apiTweet.media !== 'undefined' && mosaic !== null) {
|
if (typeof apiTweet.media !== 'undefined' && mosaic !== null) {
|
||||||
apiTweet.media.mosaic = mosaic;
|
apiTweet.media.mosaic = mosaic;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import { Constants } from './constants';
|
import { Constants } from './constants';
|
||||||
|
|
||||||
export const handleMosaic = async (
|
export const handleMosaic = async (
|
||||||
mediaList: APIPhoto[]
|
mediaList: APIPhoto[],
|
||||||
|
id: string
|
||||||
): Promise<APIMosaicPhoto | null> => {
|
): Promise<APIMosaicPhoto | null> => {
|
||||||
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
const mosaicDomains = Constants.MOSAIC_DOMAIN_LIST;
|
||||||
let selectedDomain: string | null = null;
|
let selectedDomain: string | null = null;
|
||||||
|
@ -47,8 +48,8 @@ export const handleMosaic = async (
|
||||||
height: mediaList.reduce((acc, media) => acc + media.height, 0),
|
height: mediaList.reduce((acc, media) => acc + media.height, 0),
|
||||||
width: mediaList.reduce((acc, media) => acc + media.width, 0),
|
width: mediaList.reduce((acc, media) => acc + media.width, 0),
|
||||||
formats: {
|
formats: {
|
||||||
jpeg: `${baseUrl}jpeg${path}`,
|
jpeg: `${baseUrl}jpeg/${id}${path}`,
|
||||||
webp: `${baseUrl}webp${path}`
|
webp: `${baseUrl}webp/${id}${path}`
|
||||||
}
|
}
|
||||||
} as APIMosaicPhoto;
|
} as APIMosaicPhoto;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue