Skip to content
Snippets Groups Projects
Unverified Commit a2e45e89 authored by Avanish Singh's avatar Avanish Singh Committed by GitHub
Browse files

Create Chatbotcomponent.jsx

parent 2e8db504
No related branches found
No related tags found
No related merge requests found
import React from "react";
import { Launcher } from "react-chat-window"
import io from "socket.io-client";
class ChatBotRobot extends React.Component {
constructor(props) {
super(props);
this.state = {
messageList: [],
socket: io("http://localhost:3000"),
room: "user1",
}
}
UNSAFE_componentWillMount() {
this._sendMessage("Hello! Welcome to 'RESWHIZ'. I am your RECIPE recommendation assistance. Would you like to see what can I do?Type 'start' to get started. !");
}
componentDidMount() {
this.state.socket.connect(true);
this.state.socket.emit('join', this.state.room);
this.state.socket.on("send-msg-response", async (msg) => {
this.state.messageList.pop();
await this.setState({
messageList: [...this.state.messageList]
})
this._sendMessage(msg);
})
}
async _onMessageWasSent(message) {
await this.setState({
messageList: [...this.state.messageList, message]
})
this._sendMessage("••••");
console.log(message.data.text);
await this.state.socket.emit('new-msg', { msg: message.data.text, room: this.state.room })
}
_sendMessage(text) {
if (text.length > 0) {
this.setState({
messageList: [...this.state.messageList, {
author: 'them',
type: 'text',
data: { text }
},]
})
}
}
render() {
return (
<div id="chatbox" className="chatbox">
<Launcher
agentProfile={{
teamName: 'RESWHIZ',
image: 'Chatbot.png'
}}
onMessageWasSent={this._onMessageWasSent.bind(this)}
messageList={this.state.messageList}
showEmoji
/>
</div>
);
}
}
export default ChatBotRobot;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment