Approved-by: Bianca Widstam Approved-by: Chuma Mcphoy (We Ahead) Approved-by: Matilda Landström
16 lines
400 B
TypeScript
16 lines
400 B
TypeScript
import type { ApiImage } from "@scandic-hotels/trpc/types/hotel"
|
|
|
|
export function mapApiImagesToGalleryImages(apiImages: ApiImage[]) {
|
|
return apiImages.map((apiImage) => {
|
|
return {
|
|
src: apiImage.src,
|
|
alt:
|
|
apiImage.altText ||
|
|
apiImage.altText_En ||
|
|
apiImage.title ||
|
|
apiImage.title_En,
|
|
caption: apiImage.title || apiImage.title_En,
|
|
}
|
|
})
|
|
}
|