1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
import React, { useCallback } from "react";
import { Routes, Route } from "react-router-dom";
import { Helmet } from "react-helmet";
import { UserProfile } from "@customTypes/Profile";
import Sidebar from "./components/Sidebar/Sidebar";
import "./App.css";
import Profile from "@pages/Profile/Profile.tsx";
import Games from "@pages/Games/Games.tsx";
import Maps from "@pages/Maps/Maps.tsx";
import User from "@pages/User/User.tsx";
import Homepage from "@pages/Home/Homepage.tsx";
import UploadRunDialog from "./components/UploadRunDialog";
import Rules from "@pages/Rules/Rules.tsx";
import About from "@pages/About/About.tsx";
import { Game } from "@customTypes/Game";
import { API } from "./api/Api";
import Maplist from "@pages/Maplist/Maplist.tsx";
import Rankings from "@pages/Rankings/Rankings.tsx";
import { get_user_id_from_token, get_user_mod_from_token } from "./utils/Jwt";
const App: React.FC = () => {
const [token, setToken] = React.useState<string | undefined>(undefined);
const [profile, setProfile] = React.useState<UserProfile | undefined>(
undefined
);
const [isModerator, setIsModerator] = React.useState<boolean>(false);
const [games, setGames] = React.useState<Game[]>([]);
const [uploadRunDialog, setUploadRunDialog] = React.useState<boolean>(false);
const _fetch_token = async () => {
const token = await API.get_token();
setToken(token);
};
const _fetch_games = async () => {
const games = await API.get_games();
setGames(games);
};
const _set_profile = useCallback(
async (user_id?: string) => {
if (user_id && token) {
const user = await API.get_profile(token);
setProfile(user);
}
},
[token]
);
React.useEffect(() => {
if (token === undefined) {
setProfile(undefined);
setIsModerator(false);
} else {
setProfile({} as UserProfile); // placeholder before we call actual user profile
_set_profile(get_user_id_from_token(token));
const modStatus = get_user_mod_from_token(token);
if (modStatus) {
setIsModerator(true);
} else {
setIsModerator(false);
}
}
}, [token, _set_profile]);
React.useEffect(() => {
_fetch_token();
_fetch_games();
}, []);
return (
<>
<Helmet>
<title>LPHUB</title>
<meta name="description" content="Least Portals Hub" />
</Helmet>
<UploadRunDialog
token={token}
open={uploadRunDialog}
onClose={updateProfile => {
setUploadRunDialog(false);
if (updateProfile) {
_set_profile(get_user_id_from_token(token));
}
}}
games={games}
/>
<div className="flex flex-row not-md:flex-col h-screen">
<Sidebar
setToken={setToken}
profile={profile}
setProfile={setProfile}
onUploadRun={() => setUploadRunDialog(true)}
/>
<main className="w-full h-screen">
<Routes>
<Route path="/" element={<Homepage />} />
<Route
path="/profile"
element={
<Profile
profile={profile}
token={token}
gameData={games}
onDeleteRecord={() => _set_profile(get_user_id_from_token(token))}
/>
}
/>
<Route
path="/users/*"
element={<User profile={profile} token={token} gameData={games} />}
/>
<Route path="/games" element={<Games games={games} />} />
<Route path="/games/:id" element={<Maplist />}></Route>
<Route
path="/maps/*"
element={<Maps token={token} isModerator={isModerator} />}
/>
<Route path="/rules" element={<Rules />} />
<Route path="/about" element={<About />} />
<Route path="/rankings" element={<Rankings />}></Route>
<Route path="*" element={"404"} />
</Routes>
</main>
</div>
</>
);
};
export default App;
|