import React, { Component } from 'react' import { CURTAIN_COLOR_SELECT_OPTIONS, IMAGE_BACKGROUND_SIZE_OPTIONS } from 'app/constants' import { Select, Checkbox, TextInput, LabelDescription } from 'app/common' import { AnnotationFormFullscreen } from './annotationForm.utility' import { makeMediaItems } from 'app/utils/annotation.utils' export const AnnotationFormVideo = ({ annotation, media, handleSettingsSelect, handleSettingsChange }) => { if (!media.lookup) return
const video_list_items = makeMediaItems(media, ['video']) return (
{'Auto-advances the video to this point when starting'} {(annotation.settings.fullscreen && !annotation.settings.inline) && ( )}
) } export const AnnotationFormVideoSetVolume = ({ annotation, handleSettingsChange }) => { return (
) }