|
| 1 | +import { DarkContext } from "@/context/DarkContext"; |
| 2 | +import { useState, useEffect, useRef, useContext } from "react"; |
| 3 | + |
| 4 | +import Image from "next/image"; |
| 5 | + |
| 6 | +import TypeWriter from "./typeWriter"; |
| 7 | + |
| 8 | +const Container = () => { |
| 9 | + const { darkMode, toggleDarkMode }: any = useContext(DarkContext); |
| 10 | + |
| 11 | + const scrollContainer = useRef(null); |
| 12 | + const focus = useRef<any>(null); |
| 13 | + |
| 14 | + const [messageText, setMessageText] = useState(""); |
| 15 | + |
| 16 | + const [isLoading, setIsLoading] = useState(false); |
| 17 | + |
| 18 | + const [userChat, setUserChat] = useState<string[]>([]); |
| 19 | + const [botChat, setBotChat] = useState<string[]>([]); |
| 20 | + |
| 21 | + const botResponse = async () => { |
| 22 | + setIsLoading(true); |
| 23 | + const response = await fetch("/api/generate", { |
| 24 | + method: "POST", |
| 25 | + headers: { |
| 26 | + "Content-Type": "application/json", |
| 27 | + }, |
| 28 | + body: JSON.stringify({ |
| 29 | + messageText, |
| 30 | + }), |
| 31 | + }); |
| 32 | + console.log("Edge function returned."); |
| 33 | + |
| 34 | + if (!response.ok) { |
| 35 | + throw new Error(response.statusText); |
| 36 | + } |
| 37 | + |
| 38 | + // This data is a ReadableStream |
| 39 | + const data = response.body; |
| 40 | + if (!data) { |
| 41 | + return; |
| 42 | + } |
| 43 | + |
| 44 | + const reader = data.getReader(); |
| 45 | + const decoder = new TextDecoder(); |
| 46 | + let done = false; |
| 47 | + |
| 48 | + let botReply = ""; |
| 49 | + |
| 50 | + while (!done) { |
| 51 | + const { value, done: doneReading } = await reader.read(); |
| 52 | + done = doneReading; |
| 53 | + const botMessage = decoder.decode(value); |
| 54 | + botReply += botMessage; |
| 55 | + } |
| 56 | + botReply += "\n"; |
| 57 | + setBotChat([...botChat, botReply]); |
| 58 | + setIsLoading(false); |
| 59 | + }; |
| 60 | + |
| 61 | + const handleScroll = (ref: any) => { |
| 62 | + ref.scrollTo({ |
| 63 | + top: ref.scrollHeight, |
| 64 | + left: 0, |
| 65 | + behavior: "smooth", |
| 66 | + }); |
| 67 | + }; |
| 68 | + |
| 69 | + const sendMessage = () => { |
| 70 | + if (isLoading) return; |
| 71 | + if (messageText.trim().length !== 0) { |
| 72 | + botResponse(); |
| 73 | + } |
| 74 | + setUserChat( |
| 75 | + messageText.trim().length === 0 ? userChat : [...userChat, messageText] |
| 76 | + ); |
| 77 | + setMessageText(""); |
| 78 | + }; |
| 79 | + |
| 80 | + const handleEnterKey = (e: any) => { |
| 81 | + if (e.key === "Enter" && !e.shiftKey) { |
| 82 | + sendMessage(); |
| 83 | + } |
| 84 | + }; |
| 85 | + |
| 86 | + useEffect(() => { |
| 87 | + if (isLoading === false) { |
| 88 | + focus?.current?.focus(); |
| 89 | + } |
| 90 | + }, [isLoading]); |
| 91 | + |
| 92 | + useEffect(() => { |
| 93 | + handleScroll(scrollContainer.current); |
| 94 | + }, [userChat, botChat]); |
| 95 | + |
| 96 | + return ( |
| 97 | + <div className={`bg-${darkMode}`}> |
| 98 | + <div |
| 99 | + className={`flex gap-8 items-center justify-center h-[10vh] relative header-${darkMode}`} |
| 100 | + > |
| 101 | + <h1 |
| 102 | + className={`text-${darkMode} text-2xl font-bold text-center py-7`} |
| 103 | + > |
| 104 | + ChatGPT Demo |
| 105 | + </h1> |
| 106 | + <div className="absolute right-4" onClick={toggleDarkMode}> |
| 107 | + {darkMode ? ( |
| 108 | + <Image |
| 109 | + src="/assets/images/icons/light-sun.svg" |
| 110 | + alt="tool" |
| 111 | + width={0} |
| 112 | + height={0} |
| 113 | + className="w-12 h-12 p-2" |
| 114 | + /> |
| 115 | + ) : ( |
| 116 | + <Image |
| 117 | + src="/assets/images/icons/dark-moon.svg" |
| 118 | + alt="tool" |
| 119 | + width={0} |
| 120 | + height={0} |
| 121 | + className="w-12 h-12 p-2" |
| 122 | + /> |
| 123 | + )} |
| 124 | + </div> |
| 125 | + </div> |
| 126 | + <div className={`container-bg-${darkMode}`}> |
| 127 | + <div |
| 128 | + className="container mx-auto px-12 max-sm:px-6 py-6 overflow-auto h-[80vh] chat-container" |
| 129 | + ref={scrollContainer} |
| 130 | + > |
| 131 | + {userChat.map((ele, key) => { |
| 132 | + return ( |
| 133 | + <div key={`blockchat-${key}`}> |
| 134 | + <div |
| 135 | + key={`userchat-${key}`} |
| 136 | + className="flex flex-col my-2 items-end justify-center" |
| 137 | + > |
| 138 | + <div |
| 139 | + className={`input-user-chat-bg-${darkMode} input-user-chat-color-${darkMode} rounded-2xl px-6 py-2 max-w-[50%] max-lg:max-w-full break-words`} |
| 140 | + > |
| 141 | + {ele} |
| 142 | + </div> |
| 143 | + </div> |
| 144 | + {botChat[key] && ( |
| 145 | + <div |
| 146 | + key={`botchat-${key}`} |
| 147 | + className="flex flex-col my-2 items-start justify-center break-words" |
| 148 | + > |
| 149 | + <div |
| 150 | + className={`input-bot-chat-bg-${darkMode} input-user-chat-color-${darkMode} rounded-2xl px-6 py-2 max-w-[50%] max-lg:max-w-full`} |
| 151 | + > |
| 152 | + {botChat[key].split("\n").map((ele: any, indkey: any) => { |
| 153 | + return <p key={`indkey-${indkey}`}>{ele}</p>; |
| 154 | + })} |
| 155 | + </div> |
| 156 | + </div> |
| 157 | + )} |
| 158 | + </div> |
| 159 | + ); |
| 160 | + })} |
| 161 | + {isLoading && ( |
| 162 | + <div className="lds-ellipsis"> |
| 163 | + <div></div> |
| 164 | + <div></div> |
| 165 | + <div></div> |
| 166 | + <div></div> |
| 167 | + </div> |
| 168 | + )} |
| 169 | + </div> |
| 170 | + </div> |
| 171 | + <div className="container mx-auto px-12 max-sm:px-2 flex justify-center h-[10vh] relative"> |
| 172 | + {isLoading ? ( |
| 173 | + <div className="relative w-1/2 items-center max-sm:py-2 max-xl:w-full flex justify-center max-md:flex-col max-md:items-center gap-4"> |
| 174 | + <textarea |
| 175 | + disabled |
| 176 | + value={messageText} |
| 177 | + onChange={(e) => setMessageText(e.target.value)} |
| 178 | + onKeyUp={handleEnterKey} |
| 179 | + className={`input-bg-${darkMode} rounded-full outline-none border input-border-${darkMode} input-text-${darkMode} w-full h-14 px-6 py-3 resize-none`} |
| 180 | + placeholder="PLEASE TYPE YOUR TEXT HERE ..." |
| 181 | + /> |
| 182 | + <Image |
| 183 | + src="/assets/images/icons/send-message.png" |
| 184 | + width={32} |
| 185 | + height={32} |
| 186 | + className={`absolute right-4 active:translate-y-1 p-1`} |
| 187 | + onClick={sendMessage} |
| 188 | + alt="" |
| 189 | + /> |
| 190 | + </div> |
| 191 | + ) : ( |
| 192 | + <div className="relative w-1/2 items-center max-sm:py-2 max-xl:w-full flex justify-center max-md:flex-col max-md:items-center gap-4"> |
| 193 | + <textarea |
| 194 | + ref={focus} |
| 195 | + value={messageText} |
| 196 | + onChange={(e) => setMessageText(e.target.value)} |
| 197 | + onKeyUp={handleEnterKey} |
| 198 | + className={`input-bg-${darkMode} rounded-full outline-none border input-border-${darkMode} input-text-${darkMode} w-full h-14 px-6 py-3 resize-none`} |
| 199 | + placeholder="PLEASE TYPE YOUR TEXT HERE ..." |
| 200 | + /> |
| 201 | + <Image |
| 202 | + src="/assets/images/icons/send-message.png" |
| 203 | + width={32} |
| 204 | + height={32} |
| 205 | + className={`absolute right-4 active:translate-y-1 p-1`} |
| 206 | + onClick={sendMessage} |
| 207 | + alt="" |
| 208 | + /> |
| 209 | + </div> |
| 210 | + )} |
| 211 | + </div> |
| 212 | + </div> |
| 213 | + ); |
| 214 | +}; |
| 215 | + |
| 216 | +export default Container; |
0 commit comments