Compare commits
No commits in common. "51059e6bf32c392c99b6b199be23f222980c0467" and "115ae9357a2fbad48fd0710cea9593d654edd023" have entirely different histories.
51059e6bf3
...
115ae9357a
@ -61,7 +61,7 @@ class ChatsView(APIView):
|
|||||||
continue
|
continue
|
||||||
for member2 in MemberModel.objects.filter(member_id=user_id2):
|
for member2 in MemberModel.objects.filter(member_id=user_id2):
|
||||||
if (member1.channel_id == member2.channel_id):
|
if (member1.channel_id == member2.channel_id):
|
||||||
messages = MessageModel.objects.filter(channel_id=member1.channel_id).order_by("time")
|
messages = MessageModel.objects.filter(channel_id=member1.channel_id)
|
||||||
messages = serializers.serialize("json", messages)
|
messages = serializers.serialize("json", messages)
|
||||||
return Response({'channel_id': member1.channel_id, 'messages':messages}, status=status.HTTP_200_OK)
|
return Response({'channel_id': member1.channel_id, 'messages':messages}, status=status.HTTP_200_OK)
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
body {
|
body {
|
||||||
margin: 10;
|
margin: 10;
|
||||||
font-family: 'Quicksand', sans-serif;
|
font-family: 'Quicksand', sans-serif;
|
||||||
font-size: 3vh;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
#app img
|
#app img
|
||||||
{
|
{
|
||||||
max-height: 10vh;
|
max-height: 100px;
|
||||||
max-width: 10vh;
|
max-width: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#app ul
|
#app ul
|
||||||
{
|
{
|
||||||
font-size: 2vh;
|
|
||||||
margin: 5px 0 0 0;
|
margin: 5px 0 0 0;
|
||||||
padding: 0 0 0 0;
|
padding: 0 0 0 0;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
@ -23,34 +22,17 @@
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
#app #users {
|
#app #users {
|
||||||
margin-right: 5vh;
|
margin-right: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#app #chat {
|
#app #chat {
|
||||||
position: relative;
|
position: relative;
|
||||||
max-height: 80vh;
|
height: 100%;
|
||||||
width: 60%;
|
width: 60%;
|
||||||
/*border: 2px solid green;*/
|
/*border: 4px solid green;*/
|
||||||
overflow: hidden;
|
overflow:hidden;
|
||||||
}
|
/*overflow-y: scroll;
|
||||||
|
overflow-x: hidden;*/
|
||||||
#app #add_chat_off {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
#app #messages {
|
|
||||||
max-height: 50vh;
|
|
||||||
overflow: scroll;
|
|
||||||
overflow-y: scroll;
|
|
||||||
overflow-x: hidden;
|
|
||||||
font-size: 2vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
#app #input_user{
|
|
||||||
color: green;
|
|
||||||
width: 20vh;
|
|
||||||
height: 3vh;
|
|
||||||
font-size: 2vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#app #input_chat{
|
#app #input_chat{
|
||||||
@ -60,10 +42,8 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
border-bottom: 0.5vh solid green;
|
border-bottom: 2px solid green;
|
||||||
caret-color: green;
|
caret-color: green;
|
||||||
color: green;
|
|
||||||
font-size: 2vh;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#app #you {
|
#app #you {
|
||||||
|
@ -3,6 +3,7 @@ import { Client } from "./api/client.js";
|
|||||||
import LoginView from "./views/accounts/LoginView.js";
|
import LoginView from "./views/accounts/LoginView.js";
|
||||||
import Dashboard from "./views/Dashboard.js";
|
import Dashboard from "./views/Dashboard.js";
|
||||||
import Search from "./views/Search.js";
|
import Search from "./views/Search.js";
|
||||||
|
import Chat from "./views/Chat.js";
|
||||||
import HomeView from "./views/HomeView.js";
|
import HomeView from "./views/HomeView.js";
|
||||||
import RegisterView from "./views/accounts/RegisterView.js";
|
import RegisterView from "./views/accounts/RegisterView.js";
|
||||||
import LogoutView from "./views/accounts/LogoutView.js";
|
import LogoutView from "./views/accounts/LogoutView.js";
|
||||||
@ -43,6 +44,7 @@ const router = async (uri) => {
|
|||||||
{ path: "/logout", view: LogoutView },
|
{ path: "/logout", view: LogoutView },
|
||||||
{ path: "/register", view: RegisterView },
|
{ path: "/register", view: RegisterView },
|
||||||
{ path: "/search", view: Search },
|
{ path: "/search", view: Search },
|
||||||
|
{ path: "/chat", view: Chat },
|
||||||
{ path: "/home", view: HomeView },
|
{ path: "/home", view: HomeView },
|
||||||
{ path: "/me", view: MeView },
|
{ path: "/me", view: MeView },
|
||||||
{ path: "/matchmaking", view: MatchMakingView },
|
{ path: "/matchmaking", view: MatchMakingView },
|
||||||
|
56
frontend/static/js/views/Chat.js
Normal file
56
frontend/static/js/views/Chat.js
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
import AbstractView from "./AbstractView.js";
|
||||||
|
|
||||||
|
export default class extends AbstractView {
|
||||||
|
constructor(params) {
|
||||||
|
super(params, "Chat");
|
||||||
|
|
||||||
|
let url = `ws://${window.location.host}/ws/chat/`
|
||||||
|
|
||||||
|
this.chatSocket = new WebSocket(url)
|
||||||
|
this.chatSocket.onmessage = function(e){
|
||||||
|
let data = JSON.parse(e.data)
|
||||||
|
console.log('Data:', data)
|
||||||
|
if (data.type === 'chat') {
|
||||||
|
let messages = document.getElementById('messages')
|
||||||
|
|
||||||
|
let username = data.username === null || data.username.length <= 0 ? "NoName" : data.username;
|
||||||
|
messages.insertAdjacentHTML('beforeend', `
|
||||||
|
<div><p>${username}: ${data.message}</p></div>
|
||||||
|
`)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async postInit() {
|
||||||
|
let form = document.getElementById('form')
|
||||||
|
form.addEventListener('submit', (e)=> {
|
||||||
|
e.preventDefault()
|
||||||
|
let message = e.target.message.value
|
||||||
|
this.chatSocket.send(JSON.stringify({
|
||||||
|
'message':message
|
||||||
|
}))
|
||||||
|
form.reset()
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
async leavePage() {
|
||||||
|
this.chatSocket.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
async getHtml() {
|
||||||
|
return `
|
||||||
|
<h1>Chat</h1>
|
||||||
|
|
||||||
|
<form id="form">
|
||||||
|
<input type="text" name="message" placeholder="message"/>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<div id="messages">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
}
|
@ -45,9 +45,7 @@ export default class extends AbstractView {
|
|||||||
// chat
|
// chat
|
||||||
if (logged && client.me.user_id != user.user_id) {
|
if (logged && client.me.user_id != user.user_id) {
|
||||||
let add_chat = document.createElement("a");
|
let add_chat = document.createElement("a");
|
||||||
add_chat.id = "add_chat_off";
|
|
||||||
add_chat.addEventListener("click", async () => {
|
add_chat.addEventListener("click", async () => {
|
||||||
add_chat.id = "add_chat_off";
|
|
||||||
if (client.channel != undefined) {
|
if (client.channel != undefined) {
|
||||||
client.channel.members_id.forEach((member_id) => {
|
client.channel.members_id.forEach((member_id) => {
|
||||||
if (member_id == user.user_id)
|
if (member_id == user.user_id)
|
||||||
@ -62,20 +60,24 @@ export default class extends AbstractView {
|
|||||||
|
|
||||||
client.channel = await client.channels.createChannel([client.me.user_id , user.user_id], this.chat);
|
client.channel = await client.channels.createChannel([client.me.user_id , user.user_id], this.chat);
|
||||||
this.chat();
|
this.chat();
|
||||||
add_chat.id = "add_chat_on";
|
|
||||||
});
|
});
|
||||||
add_chat.appendChild(document.createTextNode("Chat"));
|
add_chat.appendChild(document.createTextNode("Chat"));
|
||||||
new_user.appendChild(add_chat);
|
new_user.appendChild(add_chat);
|
||||||
|
|
||||||
new_user.appendChild(document.createTextNode(" "));
|
/*new_user.appendChild(document.createTextNode(" "));
|
||||||
|
|
||||||
let block = document.createElement("a");
|
let remove = document.createElement("a");
|
||||||
block.addEventListener("click", async () => {
|
remove.addEventListener("click", async () => {
|
||||||
if (client.me.user_id != user.user_id) {
|
if (client.me.user_id != user.user_id) {
|
||||||
|
await client.channels.deleteChannel([client.me.user_id , user.user_id]);
|
||||||
|
if
|
||||||
|
client.channel.disconnect();
|
||||||
|
client.channel = undefined;
|
||||||
|
this.chat()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
block.appendChild(document.createTextNode("Block"));
|
remove.appendChild(document.createTextNode("Remove"));
|
||||||
new_user.appendChild(block);
|
new_user.appendChild(remove);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
// break line
|
// break line
|
||||||
|
Loading…
Reference in New Issue
Block a user