casibase/web/src/ChatBox.js

62 lines
2.2 KiB
JavaScript

// Copyright 2023 The casbin Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import React from "react";
import {Avatar, ChatContainer, ConversationHeader, MainContainer, Message, MessageInput, MessageList} from "@chatscope/chat-ui-kit-react";
import "@chatscope/chat-ui-kit-styles/dist/default/styles.min.css";
const aiAvatar = "https://cdn.casbin.com/casdoor/static/gpt.png";
class ChatBox extends React.Component {
constructor(props) {
super(props);
}
handleSend = (innerHtml, textContent) => {
this.props.sendMessage(textContent);
};
render() {
let messages = this.props.messages;
if (messages === null) {
messages = [];
}
return (
<MainContainer style={{display: "flex", width: "100%", height: "100%"}} >
<ChatContainer style={{display: "flex", width: "100%", height: "100%"}}>
<ConversationHeader>
<Avatar src={aiAvatar} name="AI" />
<ConversationHeader.Content userName="AI" />
</ConversationHeader>
<MessageList>
{messages.map((message, index) => (
<Message key={index} model={{
message: message.text,
sentTime: "just now",
sender: message.name,
direction: message.author === "AI" ? "incoming" : "outgoing",
}} avatarPosition={message.author === "AI" ? "tl" : "tr"}>
<Avatar src={message.author === "AI" ? aiAvatar : this.props.account.avatar} name="GPT" />
</Message>
))}
</MessageList>
<MessageInput placeholder="Type message here" onSend={this.handleSend} />
</ChatContainer>
</MainContainer>
);
}
}
export default ChatBox;