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.
 
 
 
 
 
 

399 lines
10 KiB

<script lang="ts" context="module">
export interface chatMessagesType {
id: number;
author: string;
text: string;
}
import { createEventDispatcher, onDestroy, onMount } from "svelte";
import { store, API_URL } from "../Auth";
import { io } from "../socket"
import type { ChannelsType } from "./Channels.svelte";
import type User from "./Profile.svelte";
</script>
<script lang="ts">
let blockedUsers: Array<User> = [];
let chatMembers: Array<User> = [];
let chatMessages: Array<chatMessagesType> = [];
export let channel: ChannelsType;
let newText = "";
onMount(async () => {
let res = await fetch(API_URL + "/users/" + $store.ftId + "/blocked", {
credentials: "include",
mode: "cors",
});
if (res.ok) blockedUsers = await res.json();
io.on("messages", (msgs: Array<chatMessagesType>) => {
chatMessages = msgs;
});
io.on("newMessage", (msg: chatMessagesType) => {
chatMessages = [...chatMessages.slice(-5 + 1), msg];
});
onDestroy(() => {
io.emit("leaveChannel", channel.id, $store.ftId);
});
});
//--------------------------------------------------------------------------------/
const sendMessage = () => {
if (newText !== "") {
const newMessage = {
id: chatMessages.length + 1,
author: $store.username,
text: newText,
};
chatMessages = [...chatMessages.slice(-5 + 1)];
io.emit("addMessage", channel.id, $store.ftId, newText);
newText = "";
const messagesDiv = document.querySelector(".messages");
if (messagesDiv) {
messagesDiv.scrollTop = messagesDiv.scrollHeight;
}
}
};
//--------------------------------------------------------------------------------/
const dispatch = createEventDispatcher();
let showProfileMenu = false;
let selectedUser = null;
function openProfile(username: string) {
showProfileMenu = true;
selectedUser = username;
showChatMembers = false;
}
function closeProfileMenu() {
showProfileMenu = false;
selectedUser = "";
}
onMount(closeProfileMenu);
//--------------------------------------------------------------------------------/
let showChatMembers = false;
function toggleChatMembers() {
showChatMembers = !showChatMembers;
}
//--------------------------------------------------------------------------------/
const blockUser = async (username: string) => {
const res1 = await fetch(API_URL + "/users/" + username + "/byname", {
credentials: "include",
mode: "cors",
});
const data1 = await res1.json();
const res2 = await fetch(API_URL + "/users/block/" + data1.ftId, {
credentials: "include",
method: "POST",
mode: "cors",
});
if (res2.ok) {
alert("User blocked");
} else {
alert("Failed to block user");
}
};
//--------------------------------------------------------------------------------/
const unblockUser = async (username: string) => {
const res1 = await fetch(API_URL + "/users/" + username + "/byname", {
credentials: "include",
mode: "cors",
});
const data1 = await res1.json();
const res2 = await fetch(API_URL + "/users/unblock/" + data1.ftId, {
credentials: "include",
method: "DELETE",
mode: "cors",
});
if (res2.ok) {
alert("User unblocked");
} else {
alert("Failed to unblock user");
}
};
//--------------------------------------------------------------------------------/
const banUser = async (username: string) => {
const prompt = window.prompt("Enter ban duration in seconds");
const res1 = await fetch(API_URL + "/users/" + username + "/byname", {
credentials: "include",
mode: "cors",
});
const data1 = await res1.json();
const res2 = await fetch(API_URL + "/channels/" + data1.ftId + "/ban", {
credentials: "include",
method: "POST",
mode: "cors",
});
if (res2.ok) {
io.emit("kickUser", channel.id, $store.ftId, data1.ftId);
alert("User banned");
} else {
alert("Failed to ban user");
}
};
//--------------------------------------------------------------------------------/
const kickUser = async (username: string) => {
const res = await fetch(API_URL + "/users/" + username + "/byname", {
credentials: "include",
mode: "cors",
});
const kickedUser = await res.json();
io.emit("kickUser", channel.id, $store.ftId, kickedUser.ftId);
};
//--------------------------------------------------------------------------------/
const muteUser = async (username: string) => {
const prompt = window.prompt("Enter mute duration in seconds");
const res1 = await fetch(API_URL + "/users/" + username + "/byname", {
credentials: "include",
mode: "cors",
});
const data1 = await res1.json();
const res2 = await fetch(API_URL + "/channels/" + data1.ftId + "/mute", {
credentials: "include",
method: "POST",
mode: "cors",
});
if (res2.ok) {
alert("User muted");
} else {
alert("Failed to mute user");
}
};
//--------------------------------------------------------------------------------/
const adminUser = async (username: string) => {
const res1 = await fetch(API_URL + "/users/" + username + "/byname", {
credentials: "include",
mode: "cors",
});
const data1 = await res1.json();
const res2 = await fetch(API_URL + "/channels/" + data1.ftId + "/admin", {
credentials: "include",
method: "POST",
mode: "cors",
});
if (res2.ok) {
alert("User admined");
} else {
alert("Failed to admin user");
}
};
//--------------------------------------------------------------------------------/
const removeAdminUser = async (username: string) => {
const res1 = await fetch(API_URL + "/users/" + username + "/byname", {
credentials: "include",
mode: "cors",
});
const data1 = await res1.json();
const res2 = await fetch(API_URL + "/channels/" + data1.ftId + "/admin", {
credentials: "include",
method: "DELETE",
mode: "cors",
});
if (res2.ok) {
alert("User admin removed");
} else {
alert("Failed to remove admin user");
}
};
//--------------------------------------------------------------------------------/
</script>
<div class="overlay" >
<div class="chat" on:click|stopPropagation on:keydown|stopPropagation>
<div class="messages" >
{ #each chatMessages as message }
<p class="message" >
{ #if !blockedUsers.filter((user) => user.username == message.author).length }
<span
class="message-name"
on:click = {() => openProfile(message.author)}
on:keydown = {() => openProfile(message.author)}
style = "cursor: pointer;"
>
{ message.author }
</span>: {message.text}
{/if}
</p>
{/each}
</div>
{ #if showProfileMenu }
<div
class="profile-menu"
on:click|stopPropagation
on:keydown|stopPropagation
>
<ul>
<li>
<button on:click = {() => dispatch("send-message", selectedUser)}> Send Message </button>
</li>
<li>
<button on:click = {() => dispatch("view-profile", selectedUser)}> View Profile </button>
</li>
<li>
<button on:click = {() => dispatch("add-friend", selectedUser)}> Add Friend </button>
</li>
<li>
<button on:click = {() => dispatch("invite-to-game", selectedUser)}> Invite to Game </button>
</li>
<li>
{ #if !blockedUsers.filter((user) => user.username = selectedUser).length }
<button on:click = {() => blockUser(selectedUser)}> Block User </button>
{:else }
<button on:click = {() => unblockUser(selectedUser)}> Unblock User </button>
{/if}
</li>
<li> <button on:click = { closeProfileMenu } > Close </button></li >
</ul>
</div>
{/if}
<form on:submit|preventDefault={ sendMessage }>
<input type="text" placeholder = "Type a message..." bind:value={ newText } />
<button>
<img src="img/send.png" alt = "send" />
</button>
</form>
<button on:click|stopPropagation={ toggleChatMembers } on:keydown|stopPropagation > Chat Members </button>
{ #if showChatMembers }
<div
class="chatMembers"
on:click|stopPropagation
on:keydown|stopPropagation
>
</div>
<ul>
{ #each chatMembers as member }
<li>
<p>
{ member.username }
<button on:click = {() => banUser(member.username)}> ban </button>
<button on:click = {() => kickUser(member.username)}> kick </button>
<button on:click = {() => muteUser(member.username)}> mute </button>
<button on:click = {() => adminUser(member.username)}> promote </button>
<button on:click = {() => removeAdminUser(member.username)}> demote </button>
</p>
</li>
{/each}
</ul>
{/if}
</div>
</div>
<style>
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
.chat {
background-color: #5f5e5e;
border: 1px solid #dedede;
border-radius: 5px;
padding: 1rem;
width: 300px;
display: flex;
flex-direction: column;
}
.messages {
height: 200px;
overflow-y: scroll;
border-bottom: 1px solid #dedede;
padding-bottom: 1rem;
margin-bottom: 1rem;
}
.message {
font-size: 14px;
line-height: 1.4;
margin-bottom: 0.5rem;
}
.message-name {
font-weight: 600;
color: #4c4c4c;
}
input[type="text"] {
width: 100%;
padding: 0.5rem;
border: 1px solid #dedede;
border-radius: 5px;
font-size: 14px;
outline: none;
margin-bottom: 1rem;
}
button {
background-color: #6B8E23;
color: #ffffff;
border: none;
border-radius: 5px;
padding: 0.5rem 1rem;
font-size: 14px;
cursor: pointer;
outline: none;
margin-bottom: 1rem;
}
button:last-child {
margin-bottom: 0;
}
img {
width: 16px;
height: 16px;
}
.profile-menu,
.chatMembers {
position: absolute;
background-color: #ffffff;
border: 1px solid #dedede;
border-radius: 5px;
padding: 1rem;
max-height: 100px;
overflow-y: scroll;
z-index: 1;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 0.5rem;
}
li:last-child {
margin-bottom: 0;
}
</style>