mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
1.7 KiB
106 lines
1.7 KiB
6 years ago
|
<script>
|
||
|
import Eliza from 'elizanode';
|
||
|
import { beforeUpdate, afterUpdate } from 'svelte';
|
||
|
|
||
|
let div;
|
||
|
|
||
|
beforeUpdate(() => {
|
||
|
// determine whether we should auto-scroll
|
||
|
// once the DOM is updated...
|
||
|
});
|
||
|
|
||
|
afterUpdate(() => {
|
||
|
// ...the DOM is now in sync with the data
|
||
|
});
|
||
|
|
||
|
const eliza = new Eliza();
|
||
|
|
||
|
let comments = [
|
||
|
{ author: 'eliza', text: eliza.getInitial() }
|
||
|
];
|
||
|
|
||
|
function handleKeydown(event) {
|
||
|
if (event.which === 13) {
|
||
|
const text = event.target.value;
|
||
|
if (!text) return;
|
||
|
|
||
|
comments = comments.concat({
|
||
|
author: 'user',
|
||
|
text
|
||
|
});
|
||
|
|
||
|
event.target.value = '';
|
||
|
|
||
|
const reply = eliza.transform(text);
|
||
|
|
||
|
setTimeout(() => {
|
||
|
comments = comments.concat({
|
||
|
author: 'eliza',
|
||
|
text: '...',
|
||
|
placeholder: true
|
||
|
});
|
||
|
|
||
|
setTimeout(() => {
|
||
|
comments = comments.filter(comment => !comment.placeholder).concat({
|
||
|
author: 'eliza',
|
||
|
text: reply
|
||
|
});
|
||
|
}, 500 + Math.random() * 500);
|
||
|
}, 200 + Math.random() * 200);
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.chat {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
max-width: 320px;
|
||
|
}
|
||
|
|
||
|
.scrollable {
|
||
|
flex: 1 1 auto;
|
||
|
border-top: 1px solid #eee;
|
||
|
margin: 0 0 0.5em 0;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
article {
|
||
|
margin: 0.5em 0;
|
||
|
}
|
||
|
|
||
|
.user {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
padding: 0.5em 1em;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.eliza span {
|
||
|
background-color: #eee;
|
||
|
border-radius: 1em 1em 1em 0;
|
||
|
}
|
||
|
|
||
|
.user span {
|
||
|
background-color: #0074D9;
|
||
|
color: white;
|
||
|
border-radius: 1em 1em 0 1em;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<div class="chat">
|
||
|
<h1>Eliza</h1>
|
||
|
|
||
|
<div class="scrollable" bind:this={div}>
|
||
|
{#each comments as comment}
|
||
|
<article class={comment.author}>
|
||
|
<span>{comment.text}</span>
|
||
|
</article>
|
||
|
{/each}
|
||
|
</div>
|
||
|
|
||
|
<input on:keydown={handleKeydown}>
|
||
|
</div>
|