import React from 'react' import { FormGroup, FormSelect } from 'react-bootstrap' import { setVideoCodecType } from '@/app/actions' import { useAppDispatch, useAppSelector } from '@/app/hooks' import { VIDEO_CODEC_TYPES } from '@/constants' import { checkFormValue, isFormDisabled } from '@/utils' import { TooltipFormLabel } from './TooltipFormLabel' export const VideoCodecTypeForm: React.FC = () => { const videoCodecType = useAppSelector((state) => state.videoCodecType) const connectionStatus = useAppSelector((state) => state.soraContents.connectionStatus) const disabled = isFormDisabled(connectionStatus) const dispatch = useAppDispatch() const onChange = (event: React.ChangeEvent): void => { if (checkFormValue(event.target.value, VIDEO_CODEC_TYPES)) { dispatch(setVideoCodecType(event.target.value)) } } return ( videoCodecType: {VIDEO_CODEC_TYPES.map((value) => { return ( ) })} ) }