Validate stored id with the backend
This commit is contained in:
parent
f47280d432
commit
3e6d2390e6
@ -9,11 +9,41 @@ const usernameKey = "Username";
|
|||||||
|
|
||||||
export function Index() {
|
export function Index() {
|
||||||
const [userInfo, setUserInfo] = createSignal<UserInfo | null>(null);
|
const [userInfo, setUserInfo] = createSignal<UserInfo | null>(null);
|
||||||
|
const [validated, setValidated] = createSignal(false);
|
||||||
|
|
||||||
onMount(() => {
|
onMount(async() => {
|
||||||
// attempt to get userinfo from localstorage
|
// attempt to get userinfo from localstorage
|
||||||
// validate userinfo with backend
|
// validate userinfo with backend
|
||||||
console.log("validating userinfo in localstorage");
|
const UserId = localStorage.getItem(userIdKey);
|
||||||
|
const Username = localStorage.getItem(usernameKey);
|
||||||
|
|
||||||
|
if (UserId === null || Username === null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setUserInfo({
|
||||||
|
UserId,
|
||||||
|
Username,
|
||||||
|
});
|
||||||
|
setValidated(false);
|
||||||
|
|
||||||
|
try {
|
||||||
|
// validate in backend
|
||||||
|
await backend.get("/validate", {
|
||||||
|
headers: {
|
||||||
|
"Authorization": `Bearer ${UserId}`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// If the previous hasn't throw, the token is valid.
|
||||||
|
setValidated(true);
|
||||||
|
} catch (e) {
|
||||||
|
// If this throws, the userid is not validated
|
||||||
|
localStorage.removeItem(userIdKey);
|
||||||
|
localStorage.removeItem(usernameKey);
|
||||||
|
setUserInfo(null);
|
||||||
|
setValidated(false);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -26,10 +56,17 @@ export function Index() {
|
|||||||
<div class="py-4">
|
<div class="py-4">
|
||||||
<h2 class="text-xl py-2 font-black">Play:</h2>
|
<h2 class="text-xl py-2 font-black">Play:</h2>
|
||||||
<Show when={userInfo() === null}>
|
<Show when={userInfo() === null}>
|
||||||
<UserRegistration setUserInfo={setUserInfo} />
|
<UserRegistration setUserInfo={(i) => {
|
||||||
|
setValidated(true);
|
||||||
|
setUserInfo(i);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</Show>
|
</Show>
|
||||||
<Show when={userInfo() !== null}>
|
<Show when={userInfo() !== null && !validated()}>
|
||||||
<p>:D (user registered)</p>
|
<p>Validating user id...</p>
|
||||||
|
</Show>
|
||||||
|
<Show when={userInfo() !== null && validated()}>
|
||||||
|
<LobbyConnection />
|
||||||
</Show>
|
</Show>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
@ -124,3 +161,10 @@ function UserRegistration(props: {setUserInfo: (u: UserInfo) => void}) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function LobbyConnection() {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
Lobby creation :D
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
@ -5,7 +5,7 @@ export const backend = axios.create({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export type UserInfo = {
|
export type UserInfo = {
|
||||||
UserId: number,
|
UserId: string,
|
||||||
Username: string,
|
Username: string,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user