Merge remote-tracking branch 'origin/websocket' into chat_and_cache

This commit is contained in:
Gabriel Almeida 2023-04-25 21:23:53 -03:00
commit 9138b1c55f
6 changed files with 103 additions and 19 deletions

View file

@ -25,6 +25,7 @@
"ace-builds": "^1.16.0",
"ansi-to-html": "^0.7.2",
"axios": "^1.3.2",
"base64-js": "^1.5.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-ace": "^10.1.0",
@ -5862,6 +5863,25 @@
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
},
"node_modules/batch": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz",

View file

@ -20,6 +20,7 @@
"ace-builds": "^1.16.0",
"ansi-to-html": "^0.7.2",
"axios": "^1.3.2",
"base64-js": "^1.5.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-ace": "^10.1.0",

View file

@ -1,11 +1,10 @@
import {
ChatBubbleOvalLeftEllipsisIcon,
} from "@heroicons/react/24/outline";
import { ChatBubbleOvalLeftEllipsisIcon } from "@heroicons/react/24/outline";
import { useState } from "react";
import { ChatMessageType } from "../../../types/chat";
import { classNames } from "../../../utils";
import AiIcon from "../../../assets/Gooey Ring-5s-271px.svg"
import AiIcon from "../../../assets/Gooey Ring-5s-271px.svg";
import { UserIcon } from "@heroicons/react/24/solid";
import FileCard from "../fileComponent";
var Convert = require("ansi-to-html");
var convert = new Convert({ newline: true });
@ -20,17 +19,16 @@ export default function ChatMessage({ chat }: { chat: ChatMessageType }) {
>
<div
className={classNames(
"rounded-full w-9 h-9 flex items-center my-3 justify-center",chat.isSend?"bg-gray-200":"bg-gray-200"
"rounded-full w-9 h-9 flex items-center my-3 justify-center",
chat.isSend ? "bg-gray-200" : "bg-gray-200"
)}
>
{!chat.isSend && <img className="scale-150" src={AiIcon}/>}
{chat.isSend && <UserIcon/>}
{!chat.isSend && <img className="scale-150" src={AiIcon} />}
{chat.isSend && <UserIcon />}
</div>
{!chat.isSend ? (
<div className="w-full text-start flex items-center">
<div
className=" relative text-start inline-block text-gray-600 text-sm font-normal"
>
<div className=" relative text-start inline-block text-gray-600 text-sm font-normal">
{hidden && chat.thought && chat.thought !== "" && (
<div
onClick={() => setHidden((prev) => !prev)}
@ -42,17 +40,29 @@ export default function ChatMessage({ chat }: { chat: ChatMessageType }) {
{chat.thought && chat.thought !== "" && !hidden && (
<div
onClick={() => setHidden((prev) => !prev)}
className=" text-start inline-block w-full pb-3 pt-3 px-5 cursor-pointer"
className=" text-start inline-block rounded-md h-full border border-gray-300
bg-gray-100 w-[95%] pb-3 pt-3 px-2 ml-3 cursor-pointer scrollbar-hide overflow-scroll"
dangerouslySetInnerHTML={{
__html: convert.toHtml(chat.thought),
}}
></div>
)}
{chat.thought && chat.thought !== "" && !hidden && <br></br>}
<div
className="w-full rounded-b-md px-4 pb-3 pt-3 pr-8"
>
{chat.message}
<div className="w-full px-4 pb-3 pt-3 pr-8">
{chat.file ? (
<div></div>
) : (
<span>
{chat.message}
<div className="my-2 w-full">
<FileCard
fileName={"FileType"}
fileType={"jpeg"}
content={""}
/>
</div>
</span>
)}
</div>
</div>
</div>

View file

@ -0,0 +1,36 @@
import { CloudArrowDownIcon, DocumentIcon } from "@heroicons/react/24/outline";
import * as base64js from 'base64-js';
export default function FileCard({ fileName, content, fileType }) {
const handleDownload = () => {
const byteArray = new Uint8Array(base64js.toByteArray(content));
const blob = new Blob([byteArray], { type: 'application/octet-stream' });
const url = URL.createObjectURL(blob);
const link = document.createElement('a');
link.href = url;
link.download = fileName;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
URL.revokeObjectURL(url);
};
return (
<button
onClick={handleDownload}
className="bg-gray-100 shadow rounded w-1/2 text-gray-700 hover:drop-shadow-lg px-2 py-2 flex justify-between items-center border border-gray-300"
>
<div className="flex gap-2 text-current items-center w-full mr-2">
{" "}
<DocumentIcon className="w-8 h-8" />
<div className="flex flex-col items-start">
{" "}
<div className="truncate text-sm text-current">{fileName}</div>
<div className="truncate text-xs text-gray-500">{fileType}</div>
</div>
<CloudArrowDownIcon className="w-6 h-6 text-current ml-auto" />
</div>
</button>
);
}

View file

@ -34,11 +34,15 @@ export default function ChatModal({
const addChatHistory = (
message: string,
isSend: boolean,
thought?: string
thought?: string,
file?:Blob
) => {
setChatHistory((old) => {
let newChat = _.cloneDeep(old);
if (thought) {
if(file){
newChat.push({ message, isSend,file });
}
else if (thought) {
newChat.push({ message, isSend, thought });
} else {
newChat.push({ message, isSend });
@ -57,7 +61,7 @@ export default function ChatModal({
console.log("Received data:", data);
//get chat history
if (Array.isArray(data)) {
console.log("entrou");
console.log(data);
setChatHistory((_) => {
let newChatHistory: ChatMessageType[] = [];
@ -67,7 +71,16 @@ export default function ChatModal({
is_bot: boolean;
message: string;
type: string;
data?:string;
}) => {
if(chatItem.type==="file"){
newChatHistory.push({
isSend: !chatItem.is_bot,
message: chatItem.message,
thought: chatItem.intermediate_steps,
file:chatItem.data
});
}
newChatHistory.push({
isSend: !chatItem.is_bot,
message: chatItem.message,
@ -82,8 +95,12 @@ export default function ChatModal({
addChatHistory(data.message, false, data.intermediate_steps);
setLockChat(false)
}
if (data.type=="file"){
console.log(data)
}
// Do something with the data received from the WebSocket
};
newWs.onclose=(e)=>{console.log(e.reason)}
setWs(newWs);
return () => {

View file

@ -2,4 +2,4 @@ import { ReactFlowInstance } from 'reactflow';
import { FlowType } from "../flow";
export type ChatType = {flow:FlowType,reactFlowInstance:ReactFlowInstance}
export type ChatMessageType = { message: string; isSend: boolean, thought?:string }
export type ChatMessageType = { message: string; isSend: boolean, thought?:string,file?:string }