|
|
|
<script lang="ts" context="module">
|
|
|
|
export enum APPSTATE {
|
|
|
|
HOME = "/",
|
|
|
|
PROFILE = "/profile",
|
|
|
|
HISTORY = "/history",
|
|
|
|
HISTORY_ID = "/history_id",
|
|
|
|
FRIENDS = "/friends",
|
|
|
|
CHANNELS = "/channels",
|
|
|
|
LEADERBOARD = "/leaderboard",
|
|
|
|
CREATE_GAME = "/create-game",
|
|
|
|
MATCHMAKING = "/matchmaking",
|
|
|
|
PROFILE_ID = "/profile_id",
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { onMount } from "svelte";
|
|
|
|
import Navbar from "./components/NavBar.svelte";
|
|
|
|
|
|
|
|
import Profile from "./components/Profile.svelte";
|
|
|
|
import MatchHistory from "./components/MatchHistory.svelte";
|
|
|
|
import Friends, { addFriend } from "./components/Friends.svelte";
|
|
|
|
import Chat from "./components/Chat.svelte";
|
|
|
|
import Channels from "./components/Channels.svelte";
|
|
|
|
import Leaderboard from "./components/Leaderboard.svelte";
|
|
|
|
|
|
|
|
import Pong from "./components/Pong/Pong.svelte";
|
|
|
|
import type { ChannelsType } from "./components/Channels.svelte";
|
|
|
|
|
|
|
|
import { store, getUser, login, verify } from "./Auth";
|
|
|
|
import FakeLogin from "./FakeLogin.svelte";
|
|
|
|
|
|
|
|
// Single Page Application config
|
|
|
|
let appState: string = APPSTATE.HOME;
|
|
|
|
|
|
|
|
history.replaceState({ appState: "" }, "", "/");
|
|
|
|
window.onpopstate = (e: PopStateEvent) => {
|
|
|
|
if (e.state) {
|
|
|
|
appState = e.state.appState;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function resetAppState() {
|
|
|
|
setAppState(APPSTATE.HOME);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setAppState(newState: APPSTATE | string) {
|
|
|
|
if (newState === appState) return;
|
|
|
|
appState = newState;
|
|
|
|
history.pushState({ appState }, "", appState);
|
|
|
|
}
|
|
|
|
|
|
|
|
onMount(() => {
|
|
|
|
getUser();
|
|
|
|
});
|
|
|
|
setInterval(() => {
|
|
|
|
getUser();
|
|
|
|
}, 15000);
|
|
|
|
|
|
|
|
function clickProfile() {
|
|
|
|
setAppState(APPSTATE.PROFILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
let profileUsername: string = "";
|
|
|
|
async function openIdProfile(event: CustomEvent<string>) {
|
|
|
|
profileUsername = event.detail;
|
|
|
|
setAppState(APPSTATE.PROFILE_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function clickHistory() {
|
|
|
|
setAppState(APPSTATE.HISTORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function clickFriends() {
|
|
|
|
setAppState(APPSTATE.FRIENDS);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function clickLeaderboard() {
|
|
|
|
setAppState(APPSTATE.LEADERBOARD);
|
|
|
|
}
|
|
|
|
|
|
|
|
function clickChannels() {
|
|
|
|
setAppState(APPSTATE.CHANNELS);
|
|
|
|
}
|
|
|
|
let selectedChannel: ChannelsType;
|
|
|
|
const handleSelectChannel = (channel: ChannelsType) => {
|
|
|
|
selectedChannel = channel;
|
|
|
|
setAppState(APPSTATE.CHANNELS + "#" + channel.name);
|
|
|
|
};
|
|
|
|
|
|
|
|
// GAME
|
|
|
|
let pong: Pong;
|
|
|
|
|
|
|
|
// FAKE LOGIN
|
|
|
|
let usernameFake = "test";
|
|
|
|
let ftIdFake = "42";
|
|
|
|
let fakemenu = true;
|
|
|
|
let fakeUser = false;
|
|
|
|
function impersonate() {
|
|
|
|
const user = {
|
|
|
|
username: usernameFake,
|
|
|
|
socketKey: ftIdFake,
|
|
|
|
};
|
|
|
|
store.set(user);
|
|
|
|
fakeUser = true;
|
|
|
|
fakemenu = false;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{#if $store === null}
|
|
|
|
<div class="login-div">
|
|
|
|
<h3 class="test">Please log in with 42 api to access the website.</h3>
|
|
|
|
<img
|
|
|
|
class="img-42"
|
|
|
|
src="https://translate.intra.42.fr/assets/42_logo-7dfc9110a5319a308863b96bda33cea995046d1731cebb735e41b16255106c12.svg"
|
|
|
|
alt="logo_42"
|
|
|
|
/>
|
|
|
|
<button class="login-button" type="button" on:click={login}>Log In</button
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
{:else if $store.twoFA === true && $store.isVerified === false}
|
|
|
|
<h1><button type="button" on:click={verify}>verify</button></h1>
|
|
|
|
{:else}
|
|
|
|
<Navbar
|
|
|
|
{clickProfile}
|
|
|
|
{clickHistory}
|
|
|
|
{clickFriends}
|
|
|
|
{clickChannels}
|
|
|
|
{clickLeaderboard}
|
|
|
|
/>
|
|
|
|
{#if appState.includes(APPSTATE.CHANNELS)}
|
|
|
|
{#if appState.replace(APPSTATE.CHANNELS, "") !== ""}
|
|
|
|
<div
|
|
|
|
on:click={() => setAppState(APPSTATE.CHANNELS)}
|
|
|
|
on:keydown={() => setAppState(APPSTATE.CHANNELS)}
|
|
|
|
>
|
|
|
|
<Chat
|
|
|
|
on:view-profile={openIdProfile}
|
|
|
|
on:add-friend={addFriend}
|
|
|
|
on:invite-to-game={pong.inviteToGame}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{:else}
|
|
|
|
<div on:click={resetAppState} on:keydown={resetAppState}>
|
|
|
|
<Channels onSelectChannel={handleSelectChannel} />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{/if}
|
|
|
|
{#if appState === APPSTATE.LEADERBOARD}
|
|
|
|
<div on:click={resetAppState} on:keydown={resetAppState}>
|
|
|
|
<Leaderboard />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{#if appState === APPSTATE.FRIENDS}
|
|
|
|
<div on:click={resetAppState} on:keydown={resetAppState}>
|
|
|
|
<Friends />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{#if appState === APPSTATE.HISTORY}
|
|
|
|
<div on:click={resetAppState} on:keydown={resetAppState}>
|
|
|
|
<MatchHistory />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{#if appState === APPSTATE.HISTORY_ID}
|
|
|
|
<div
|
|
|
|
on:click={() => setAppState(APPSTATE.PROFILE)}
|
|
|
|
on:keydown={() => setAppState(APPSTATE.PROFILE)}
|
|
|
|
>
|
|
|
|
<MatchHistory username={profileUsername} />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{#if appState === APPSTATE.PROFILE}
|
|
|
|
<div on:click={resetAppState} on:keydown={resetAppState}>
|
|
|
|
<Profile on:view-history={() => setAppState(APPSTATE.HISTORY_ID)} />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
{#if appState === APPSTATE.PROFILE_ID}
|
|
|
|
<div
|
|
|
|
on:click={() =>
|
|
|
|
setAppState(APPSTATE.CHANNELS + "#" + selectedChannel.name)}
|
|
|
|
on:keydown={() =>
|
|
|
|
setAppState(APPSTATE.CHANNELS + "#" + selectedChannel.name)}
|
|
|
|
>
|
|
|
|
<Profile
|
|
|
|
username={profileUsername}
|
|
|
|
on:view-history={() => setAppState(APPSTATE.HISTORY_ID)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{#if fakemenu}
|
|
|
|
<FakeLogin bind:username={usernameFake} bind:ftId={ftIdFake} />
|
|
|
|
<button on:click={impersonate}>Impersonate</button>
|
|
|
|
<button on:click={() => (fakemenu = false)}>No impersonate</button>
|
|
|
|
{:else}
|
|
|
|
<Pong bind:this={pong} {appState} {setAppState} {fakeUser} />
|
|
|
|
{/if}
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.login-div {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 10vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img-42 {
|
|
|
|
-webkit-filter: invert(100%);
|
|
|
|
filter: invert(100%);
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-button {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
</style>
|