2021-07-22 14:01:28 +00:00
|
|
|
|
|
|
|
//DECLARING VARIABLES AND GRABBING VALUES FROM FORM.
|
|
|
|
|
|
|
|
let uname = document.querySelector('#uname').value;
|
|
|
|
let pin = document.querySelector('#pin').value;
|
2021-07-17 22:50:58 +00:00
|
|
|
let selected = document.querySelector('#selected').value;
|
|
|
|
let custom = document.querySelector('#custom').value;
|
|
|
|
let pronouns = ''
|
|
|
|
let responseText;
|
2021-07-22 14:01:28 +00:00
|
|
|
const form = document.querySelector('form');
|
2021-07-17 22:50:58 +00:00
|
|
|
|
2021-07-22 14:01:28 +00:00
|
|
|
//SUBMIT FUNCTION &CHECKING IF USERNAME IS TAKEN
|
2021-07-17 22:50:58 +00:00
|
|
|
|
2021-07-22 14:01:28 +00:00
|
|
|
form.addEventListener("submit", async function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
const formData = new FormData(form);
|
2021-07-17 22:50:58 +00:00
|
|
|
|
2021-07-22 14:01:28 +00:00
|
|
|
uname = formData.get('uname');
|
|
|
|
pin = formData.get('pin');
|
|
|
|
selected = formData.get('selected');
|
|
|
|
custom = formData.get('custom')
|
|
|
|
|
|
|
|
if (custom !== '') {
|
|
|
|
pronouns = custom
|
|
|
|
} else {
|
|
|
|
pronouns = selected
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-07-17 22:50:58 +00:00
|
|
|
const isTaken = await getUname();
|
|
|
|
|
|
|
|
if (isTaken === `User ${uname}`) {
|
|
|
|
console.log("This username is taken.")
|
2021-07-22 14:01:28 +00:00
|
|
|
document.querySelector("#errormessage").innerHTML = `${uname} is already taken.`
|
2021-07-17 22:50:58 +00:00
|
|
|
} else {
|
|
|
|
register()
|
|
|
|
}
|
2021-07-22 14:01:28 +00:00
|
|
|
} catch {
|
|
|
|
document.querySelector("#errormessage").innerHTML = 'An Error has Occurred. Try again later.'
|
|
|
|
}
|
2021-07-17 22:50:58 +00:00
|
|
|
})
|
|
|
|
|
2021-07-22 14:01:28 +00:00
|
|
|
//FETCH FUNCTIONS. GETTING USERNAME FROM API & REGISTERING USER ASSIGNED NAME AND PIN.
|
|
|
|
|
2021-07-17 22:50:58 +00:00
|
|
|
async function getUname() {
|
2021-07-18 16:39:55 +00:00
|
|
|
let response = await fetch(`$/api/users/${uname}`);
|
2021-07-17 22:50:58 +00:00
|
|
|
responseText = await response.text();
|
|
|
|
return responseText;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function register() {
|
2021-07-22 14:01:28 +00:00
|
|
|
const rawResponse = await fetch(`/api/register/${uname.toString().toLowerCase()}/${pin.toString()}/${pronouns.toString().toLowerCase().replace("/", ".")}`, {
|
2021-07-17 22:50:58 +00:00
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
},
|
|
|
|
body: ""
|
2021-07-22 14:01:28 +00:00
|
|
|
});
|
|
|
|
document.querySelector("#errormessage").innerHTML = 'Registered!'
|
|
|
|
//window.location.replace("/login.html")
|
2021-07-17 22:50:58 +00:00
|
|
|
}
|
|
|
|
|