import React from 'react' import { Col, FormControl, FormGroup, Row } from 'react-bootstrap' import { setClientId, setEnabledClientId } from '@/app/actions' import { useAppDispatch, useAppSelector } from '@/app/hooks' import { isFormDisabled } from '@/utils' import { TooltipFormCheck } from './TooltipFormCheck' export const ClientIdForm: React.FC = () => { const enabledClientId = useAppSelector((state) => state.enabledClientId) const clientId = useAppSelector((state) => state.clientId) const connectionStatus = useAppSelector((state) => state.soraContents.connectionStatus) const disabled = isFormDisabled(connectionStatus) const dispatch = useAppDispatch() const onChangeSwitch = (event: React.ChangeEvent): void => { dispatch(setEnabledClientId(event.target.checked)) } const onChangeText = (event: React.ChangeEvent): void => { dispatch(setClientId(event.target.value)) } return ( <> clientId {enabledClientId ? ( ) : null} ) }