aboutsummaryrefslogtreecommitdiffstats
path: root/src/services/graphql/helpers/convert-wp-image-to-img.ts
blob: 392aaf99a322e0057a78521b4e18241286e77926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { Img, WPImage } from '../../../types';

export const convertWPImgToImg = ({
  altText,
  mediaDetails,
  sourceUrl,
  title,
}: WPImage): Img => {
  return {
    alt: altText ?? '',
    height: mediaDetails.height,
    src: sourceUrl,
    title: title ?? undefined,
    width: mediaDetails.width,
  };
};