'update'
[vchess.git] / client / src / components / Chat.vue
CommitLineData
cf2343ce 1<template lang="pug">
a1c48034 2div
4f887105
BA
3 input#inputChat(type="text" :placeholder="st.tr['Type here']"
4 @keyup.enter="sendChat")
5 button#sendChatBtn(@click="sendChat") {{ st.tr["Send"] }}
a1c48034
BA
6 p(v-for="chat in pastChats" :class="classObject(chat)"
7 v-html="chat.name + ': ' + chat.msg")
8 p(v-for="chat in chats" :class="classObject(chat)"
9 v-html="chat.name + ': ' + chat.msg")
cf2343ce
BA
10</template>
11
12<script>
5c8e044f
BA
13import { store } from "@/store";
14
cf2343ce
BA
15export default {
16 name: "my-chat",
3837d4f7
BA
17 // Prop 'pastChats' for corr games where chats are on server
18 props: ["players","pastChats"],
cf2343ce
BA
19 data: function() {
20 return {
5c8e044f 21 st: store.state,
cf2343ce
BA
22 chats: [], //chat messages after human game
23 };
24 },
5c8e044f 25 created: function() {
cd0d7743 26 const curMsgListener = this.st.conn.onmessage; //from Game or Hall
5c8e044f 27 const socketMessageListener = msg => {
cd0d7743 28 curMsgListener(msg);
5c8e044f
BA
29 const data = JSON.parse(msg.data);
30 if (data.code == "newchat") //only event at this level
31 {
9ca1e26b 32 this.chats.unshift({msg:data.msg,
c6788ecf 33 name:data.name || "@nonymous", sid:data.from});
a1c48034 34 this.$emit("newchat-received"); //data not required here
5c8e044f
BA
35 }
36 };
37 const socketCloseListener = () => {
38 store.socketCloseListener(); //reinitialize connexion (in store.js)
39 this.st.conn.addEventListener('message', socketMessageListener);
40 this.st.conn.addEventListener('close', socketCloseListener);
41 };
42 this.st.conn.onmessage = socketMessageListener;
43 this.st.conn.onclose = socketCloseListener;
cf2343ce 44 },
5c8e044f
BA
45 methods: {
46 classObject: function(chat) {
47 return {
48 "my-chatmsg": chat.sid == this.st.user.sid,
49 "opp-chatmsg": this.players.some(
50 p => p.sid == chat.sid && p.sid != this.st.user.sid)
51 };
52 },
53 sendChat: function() {
54 let chatInput = document.getElementById("inputChat");
55 const chatTxt = chatInput.value;
56 chatInput.value = "";
57 const chat = {msg:chatTxt, name: this.st.user.name || "@nonymous",
58 sid:this.st.user.sid};
a1c48034 59 this.$emit("newchat-sent", chat); //useful for corr games
9ca1e26b 60 this.chats.unshift(chat);
5c8e044f
BA
61 this.st.conn.send(JSON.stringify({
62 code:"newchat", msg:chatTxt, name:chat.name}));
63 },
64 },
65};
66</script>
67
4f887105 68<style lang="sass" scoped>
5c8e044f
BA
69.my-chatmsg
70 color: grey
71.opp-chatmsg
72 color: black
4f887105
BA
73#chat
74 max-width: 100%
5c8e044f 75</style>