import React, { Component } from 'react' import { CURTAIN_COLOR_SELECT_OPTIONS, IMAGE_INLINE_SIZE_OPTIONS } from 'app/constants' import { Select, Checkbox, TextInput } from 'app/common' import { AnnotationFormFullscreen } from './annotationForm.utility' import { makeMediaItems, makeGalleryItems } from 'app/utils/annotation.utils' export const AnnotationFormImage = ({ annotation, media, handleSettingsSelect, handleSettingsChange }) => { if (!media.lookup) return
const image_list_items = makeMediaItems(media, ['image', 'gallery']) const { gallery_items, thumbnail } = makeGalleryItems(annotation, media) console.log(annotation) return (