2019-02-06 23:51:58 +00:00
|
|
|
/* Set the width of the side navigation to 250px and the left margin of the page content to 250px and add a black background color to body */
|
|
|
|
function openNav() {
|
|
|
|
document.getElementById("mySidenav").style.width = "250px";
|
|
|
|
document.getElementById("main").style.marginLeft = "250px";
|
|
|
|
document.body.style.backgroundColor = "rgba(0,0,0,0.4)";
|
2019-02-13 02:20:30 +00:00
|
|
|
for (var i = 0; i < document.getElementsByClassName("btn").length; i++) {
|
2019-02-13 02:34:05 +00:00
|
|
|
document.getElementsByClassName("btn")[i].style.backgroundColor = "rgba(0,0,0,.2)"
|
2019-02-13 02:20:30 +00:00
|
|
|
}
|
2019-02-06 23:51:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the width of the side navigation to 0 and the left margin of the page content to 0, and the background color of body to white */
|
|
|
|
function closeNav() {
|
|
|
|
document.getElementById("mySidenav").style.width = "0";
|
|
|
|
document.getElementById("main").style.marginLeft = "0";
|
|
|
|
document.body.style.backgroundColor = "white";
|
2019-02-13 02:20:30 +00:00
|
|
|
for (var i = 0; i < document.getElementsByClassName("btn").length; i++) {
|
2019-02-13 02:34:05 +00:00
|
|
|
document.getElementsByClassName("btn")[i].style.backgroundColor = "buttonface"
|
2019-02-13 02:20:30 +00:00
|
|
|
}
|
2019-02-06 23:51:58 +00:00
|
|
|
}
|
2019-02-07 00:19:18 +00:00
|
|
|
|
2019-02-09 19:57:48 +00:00
|
|
|
window.onload = function() {
|
2019-02-07 00:19:18 +00:00
|
|
|
document.getElementById('sideload').style.display = 'block';
|
2019-02-09 19:57:48 +00:00
|
|
|
var config = {
|
|
|
|
apiKey: "(insert the TitanScout Api Key Here)",
|
|
|
|
authDomain: "titanscoutandroid.firebaseapp.com",
|
|
|
|
databaseURL: "https://titanscoutandroid.firebaseio.com",
|
|
|
|
projectId: "titanscoutandroid",
|
|
|
|
storageBucket: "titanscoutandroid.appspot.com",
|
|
|
|
messagingSenderId: "1097635313476"
|
|
|
|
};
|
|
|
|
firebase.initializeApp(config);
|
|
|
|
firebase.auth().onAuthStateChanged(function(user) {
|
2019-02-13 02:37:50 +00:00
|
|
|
if (user != null) {
|
|
|
|
if (user.displayName != null) {
|
|
|
|
document.getElementById('status').innerHTML = "You are signed in as: " + user.displayName;
|
|
|
|
document.getElementById('newDN').innerHTML = user.displayName;
|
|
|
|
} else if (user.email != null) {
|
|
|
|
document.getElementById('status').innerHTML = "You are signed in as: " + user.email;
|
|
|
|
} else if (user.phoneNumber != null) {
|
|
|
|
document.getElementById('status').innerHTML = "You are signed in as: " + user.phoneNumber;
|
2019-02-09 19:57:48 +00:00
|
|
|
} else {
|
2019-02-13 02:37:50 +00:00
|
|
|
document.getElementById('status').innerHTML = "You are signed in.";
|
|
|
|
}
|
|
|
|
if (user.email != null) {
|
|
|
|
document.getElementById('newEM').innerHTML = user.email;
|
2019-02-09 19:57:48 +00:00
|
|
|
}
|
2019-02-13 02:37:50 +00:00
|
|
|
} else {
|
|
|
|
window.location.replace('../');
|
|
|
|
}
|
|
|
|
teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid);
|
|
|
|
teamAssoc.get().then(function(doc) {
|
|
|
|
if (doc.exists) {
|
|
|
|
list = doc.data()
|
|
|
|
teamNums = Object.keys(list)
|
|
|
|
document.getElementById(teammem).innerHTML = ""
|
2019-02-13 02:41:43 +00:00
|
|
|
for (var i = 0; i < teammem.length; i++) {
|
|
|
|
document.getElementById(teammem).innerHTML += "<tr><td>" + teammem[i] + "</td><td>" + list.teammem[i] + "</td></tr>"
|
2019-02-13 02:20:30 +00:00
|
|
|
}
|
2019-02-13 02:37:50 +00:00
|
|
|
} else {
|
|
|
|
document.getElementById(teammem).innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
|
|
|
}
|
|
|
|
})
|
2019-02-09 19:57:48 +00:00
|
|
|
});
|
2019-02-07 00:19:18 +00:00
|
|
|
}
|
2019-02-13 02:34:05 +00:00
|
|
|
|
2019-02-13 02:20:30 +00:00
|
|
|
function cnt(tn) {
|
2019-02-13 02:34:05 +00:00
|
|
|
firebase.firestore().collection("UserAssociations").doc(user.id).set({
|
|
|
|
tn: 'captain'
|
|
|
|
}, {
|
|
|
|
merge: true
|
|
|
|
}).then(
|
|
|
|
teamAssoc = firebase.firestore().collections('UserAssociations').doc(user.uid) teamAssoc.get().then(function(doc) {
|
|
|
|
if (doc.exists) {
|
|
|
|
list = doc.data()
|
|
|
|
teamNums = Object.keys(list)
|
2019-02-13 02:20:30 +00:00
|
|
|
document.getElementById(teammem).innerHTML = ""
|
2019-02-13 02:41:43 +00:00
|
|
|
for (var i = 0; i < teammem.length; i++) {
|
|
|
|
document.getElementById(teammem).innerHTML += "<tr><td>" + teammem[i] + "</td><td>" + list.teammem[i] + "</td></tr>"
|
2019-02-13 02:20:30 +00:00
|
|
|
}
|
2019-02-13 02:34:05 +00:00
|
|
|
} else {
|
2019-02-13 02:20:30 +00:00
|
|
|
document.getElementById(teammem).innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
2019-02-13 02:34:05 +00:00
|
|
|
|
2019-02-13 02:20:30 +00:00
|
|
|
function signout() {
|
|
|
|
var user = firebase.auth().currentUser;
|
|
|
|
firebase.auth().signOut().then(
|
2019-02-13 02:34:05 +00:00
|
|
|
window.location.href = '../');
|
2019-02-13 02:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function deleteAccount() {
|
|
|
|
try {
|
|
|
|
firebase.auth().currentUser.delete().then(
|
2019-02-13 02:34:05 +00:00
|
|
|
window.location.href = '../');
|
2019-02-13 02:20:30 +00:00
|
|
|
} catch (error) {
|
|
|
|
if (error.code == 'auth/requires-recent-login') {
|
|
|
|
alert("Please sign in again to delete your account.")
|
|
|
|
window.location.href = '../';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|