Frontend fixes.

pull/13/head
Luna 2021-07-25 11:56:41 -07:00
parent d88f243ee0
commit df873ec77a
2 changed files with 24 additions and 13 deletions

View File

@ -12,17 +12,21 @@ form.addEventListener("submit", async function (event) {
formMessage = formData.get('message').toString();
//KINDA UNNECESSARY
//CHECKS TO SEE IF THE PERSON IS LOGGED IN IN ORDER TO SEND A MESSAGE.
const response = await fetch(`api/token/${username}/`);
const matches = await response.json();
//YES THIS IS CONFUSING I KNOW.
if (matches.status === "ok") {
sendMessage()
} else {
document.querySelector("#errormessage").innerHTML = 'Username and token mismatch. Try logging in again.'
}
//KINDA UNNECESSARY
//CHECKS TO SEE IF THE PERSON IS LOGGED IN IN ORDER TO SEND A MESSAGE.
const response = await fetch(`api/token/${username}/`);
const matches = await response.json();
//YES THIS IS CONFUSING I KNOW.
if (matches.status === "ok") {
sendMessage()
} else {
const mismatch = 'Username and token mismatch. Try logging in again.'
printText(mismatch.bold())
logout()
localStorage.removeItem('username')
}
})
//SEND MESSAGE FETCH FUNCTION
@ -86,4 +90,11 @@ function loggedIn() {
loggedIn()
//REVIECE USERS PRONOUNS
//REVIECE USERS PRONOUNS
async function getPronouns() {
const response = await fetch(`api/users/${username}/`);
const data = await response.json();
pronouns = data.pronouns
return pronouns;
}

View File

@ -1,4 +1,4 @@
// //VARIBLES
// // //VARIBLES
// myStorage = window.localStorage;
// allCookies = document.cookie;