Compare commits
2 Commits
e525120a15
...
34c5b35194
Author | SHA1 | Date | |
---|---|---|---|
34c5b35194 | |||
a07c269f15 |
13
main.js
13
main.js
@ -23,6 +23,15 @@ class Conversation {
|
|||||||
this.messages = initialMessages;
|
this.messages = initialMessages;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
addMessage(message) {
|
||||||
|
this.messages.push(message);
|
||||||
|
this.render();
|
||||||
|
|
||||||
|
var elements = document.getElementById("messages").children;
|
||||||
|
var lastElement = elements[elements.length - 1];
|
||||||
|
lastElement.scrollIntoView();
|
||||||
|
}
|
||||||
|
|
||||||
// for the user to send their own messages
|
// for the user to send their own messages
|
||||||
sendUserMessage(text) {
|
sendUserMessage(text) {
|
||||||
|
|
||||||
@ -74,7 +83,7 @@ class Conversation {
|
|||||||
messageText = json.message;
|
messageText = json.message;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.messages.push(new AgentMessage(messageText));
|
this.addMessage(new AgentMessage(messageText));
|
||||||
this.render();
|
this.render();
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
@ -91,7 +100,7 @@ class Conversation {
|
|||||||
// this.render();
|
// this.render();
|
||||||
//}, 5000);
|
//}, 5000);
|
||||||
}, 1000);
|
}, 1000);
|
||||||
this.messages.push(message);
|
this.addMessage(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// update the current HTML based on messages
|
// update the current HTML based on messages
|
||||||
|
@ -72,6 +72,9 @@ body {
|
|||||||
max-width: 300px;
|
max-width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#main-panel {
|
||||||
|
width: calc(100% - 300px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#side-panel .conversation {
|
#side-panel .conversation {
|
||||||
@ -105,7 +108,7 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
width: calc(100% - 300px);
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#page {
|
#page {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user