/** * src/components/TextView/index.jsx * show chat log. User can send message and switch to CallView. * * created by Lynchee on 7/16/23 */ import React, { useEffect, useRef } from 'react'; import './style.css'; import { TbPower, TbMicrophone } from 'react-icons/tb'; import IconButton from '../Common/IconButton'; const TextView = ({ send, isPlaying, stopAudioPlayback, textAreaValue, setTextAreaValue, messageInput, setMessageInput, handleDisconnect, setIsCallView }) => { const chatWindowRef = useRef(null); // always show the latest chat log useEffect(() => { if (chatWindowRef.current) { chatWindowRef.current.scrollTop = chatWindowRef.current.scrollHeight; } }, [textAreaValue]); // send message to server. stop audio if it's playing to interrupt character. const sendMessage = () => { setTextAreaValue(prevState => prevState + `\nYou> ${messageInput}\n`); send(messageInput); setMessageInput(''); if (isPlaying) { stopAudioPlayback(); } } const handleSendClick = () => { if (messageInput.trim() !== '') { sendMessage(); } } const handleKeyDown = (event) => { if (event.key === 'Enter') { handleSendClick(); } }; const handleInputChange = (event) => { setMessageInput(event.target.value); }; return ( <>