This commit is contained in:
Jacob Levine 2019-02-06 14:51:31 -06:00
parent c591c84c75
commit dc80127dee

View File

@ -10,8 +10,8 @@ var config = {
firebase.initializeApp(config); firebase.initializeApp(config);
// FirebaseUI config. // FirebaseUI config.
var uiConfig = { var uiConfig = {
callbacks:{ callbacks: {
signInSuccessWithAuthResult:function(authResult, redirectUrl) { signInSuccessWithAuthResult: function(authResult, redirectUrl) {
if (authResult.user) { if (authResult.user) {
handleSignedInUser(authResult.user); handleSignedInUser(authResult.user);
} }
@ -32,7 +32,9 @@ var uiConfig = {
// tosUrl and privacyPolicyUrl accept either url string or a callback // tosUrl and privacyPolicyUrl accept either url string or a callback
// function. // function.
// Terms of service url/callback. // Terms of service url/callback.
tosUrl: function(){alert("this is a test app. don't use it");}, tosUrl: function() {
alert("this is a test app. don't use it");
},
// Privacy policy url/callback. // Privacy policy url/callback.
privacyPolicyUrl: function() { privacyPolicyUrl: function() {
alert("we will steal all of the data"); alert("we will steal all of the data");
@ -40,27 +42,27 @@ var uiConfig = {
}; };
var handleSignedInUser = function(user) { var handleSignedInUser = function(user) {
document.getElementById("mainhead").innerHTML = "TitanScout- Create Form"; document.getElementById("mainhead").innerHTML = "TitanScout- Create Form";
if (user.displayName != null){ if (user.displayName != null) {
document.getElementById('status').innerHTML = "You are signed in as: " + user.displayName; document.getElementById('status').innerHTML = "You are signed in as: " + user.displayName;
}else if (user.email != null) { } else if (user.email != null) {
document.getElementById('status').innerHTML = "You are signed in as: " + user.email; document.getElementById('status').innerHTML = "You are signed in as: " + user.email;
}else if (user.phoneNumber != null) { } else if (user.phoneNumber != null) {
document.getElementById('status').innerHTML = "You are signed in as: " + user.phoneNumber; document.getElementById('status').innerHTML = "You are signed in as: " + user.phoneNumber;
}else{ } else {
document.getElementById('status').innerHTML = "You are signed in."; document.getElementById('status').innerHTML = "You are signed in.";
} }
document.getElementById('signout').style.display='inline-block'; document.getElementById('signout').style.display = 'inline-block';
document.getElementById('updpi').style.display='inline-block'; document.getElementById('updpi').style.display = 'inline-block';
document.getElementById('deleteacc').style.display='inline-block'; document.getElementById('deleteacc').style.display = 'inline-block';
document.getElementById('profileupd').style.display='none'; document.getElementById('profileupd').style.display = 'none';
} }
var handleSignedOutUser = function() { var handleSignedOutUser = function() {
document.getElementById("mainhead").innerHTML = "TitanScout- Sign In"; document.getElementById("mainhead").innerHTML = "TitanScout- Sign In";
document.getElementById('status').innerHTML = "You are not signed in."; document.getElementById('status').innerHTML = "You are not signed in.";
document.getElementById('signout').style.display='none'; document.getElementById('signout').style.display = 'none';
document.getElementById('updpi').style.display='none'; document.getElementById('updpi').style.display = 'none';
document.getElementById('deleteacc').style.display='none'; document.getElementById('deleteacc').style.display = 'none';
document.getElementById('profileupd').style.display='none'; document.getElementById('profileupd').style.display = 'none';
ui.start('#firebaseui-auth-container', uiConfig); ui.start('#firebaseui-auth-container', uiConfig);
}; };
@ -85,24 +87,27 @@ var deleteAccount = function() {
} }
} }
}; };
function signout() { function signout() {
var user = firebase.auth().currentUser; var user = firebase.auth().currentUser;
firebase.auth().signOut() firebase.auth().signOut()
handleSignedOutUser() handleSignedOutUser()
} }
function loadupdpi(){
if(firebase.auth().currentUser != null){ function loadupdpi() {
document.getElementById('profileupd').style.display='block'; if (firebase.auth().currentUser != null) {
}else { document.getElementById('profileupd').style.display = 'block';
} else {
setTimeout(function() { setTimeout(function() {
alert('Please sign in to change your account info.'); alert('Please sign in to change your account info.');
}, 1); }, 1);
handleSignedOutUser(); handleSignedOutUser();
} }
} }
function upProfileInfo() { function upProfileInfo() {
if(firebase.auth().currentUser != null){ if (firebase.auth().currentUser != null) {
if(document.getElementById('newDN').value != ''){ if (document.getElementById('newDN').value != '') {
user.updateProfile({ user.updateProfile({
displayName: document.getElementById('newDN').value displayName: document.getElementById('newDN').value
}).then(function() { }).then(function() {
@ -110,7 +115,7 @@ function upProfileInfo() {
user.updateProfile({ user.updateProfile({
photoURL: document.getElementById('newPP').value photoURL: document.getElementById('newPP').value
}).then(function() { }).then(function() {
if(document.getElementById('newEM').value != ''){ if (document.getElementById('newEM').value != '') {
user.updateEmail(document.getElementById('newEM').value).then(function() { user.updateEmail(document.getElementById('newEM').value).then(function() {
handleSignedInUser(); handleSignedInUser();
}).catch(function(error) { }).catch(function(error) {
@ -123,10 +128,10 @@ function upProfileInfo() {
alert('Please sign in again to change your account info.'); alert('Please sign in again to change your account info.');
}, 1); }, 1);
} else { } else {
alert("An Error Occurred: "+error.code) alert("An Error Occurred: " + error.code)
} }
}); });
}else{ } else {
handleSignedInUser(); handleSignedInUser();
} }
}).catch(function(error) { }).catch(function(error) {
@ -139,11 +144,11 @@ function upProfileInfo() {
alert('Please sign in again to change your account info.'); alert('Please sign in again to change your account info.');
}, 1); }, 1);
} else { } else {
alert("An Error Occurred: "+error.code) alert("An Error Occurred: " + error.code)
} }
}); });
}else{ } else {
if(document.getElementById('newEM').value != ''){ if (document.getElementById('newEM').value != '') {
user.updateEmail(document.getElementById('newEM').value).then(function() { user.updateEmail(document.getElementById('newEM').value).then(function() {
handleSignedInUser(); handleSignedInUser();
}).catch(function(error) { }).catch(function(error) {
@ -156,11 +161,12 @@ function upProfileInfo() {
alert('Please sign in again to change your account info.'); alert('Please sign in again to change your account info.');
}, 1); }, 1);
} else { } else {
alert("An Error Occurred: "+error.code) alert("An Error Occurred: " + error.code)
} }
}); });
}else{ } else {
handleSignedInUser();} handleSignedInUser();
}
} }
}).catch(function(error) { }).catch(function(error) {
if (error.code == 'auth/requires-recent-login') { if (error.code == 'auth/requires-recent-login') {
@ -172,15 +178,15 @@ function upProfileInfo() {
alert('Please sign in again to change your account info.'); alert('Please sign in again to change your account info.');
}, 1); }, 1);
} else { } else {
alert("An Error Occurred: "+error.code) alert("An Error Occurred: " + error.code)
} }
}); });
}else{ } else {
if (document.getElementById('newPP').value != '') { if (document.getElementById('newPP').value != '') {
user.updateProfile({ user.updateProfile({
photoURL: document.getElementById('newPP').value photoURL: document.getElementById('newPP').value
}).then(function() { }).then(function() {
if(document.getElementById('newEM').value != ''){ if (document.getElementById('newEM').value != '') {
user.updateEmail(document.getElementById('newEM').value).then(function() { user.updateEmail(document.getElementById('newEM').value).then(function() {
handleSignedInUser(); handleSignedInUser();
}).catch(function(error) { }).catch(function(error) {
@ -193,10 +199,10 @@ function upProfileInfo() {
alert('Please sign in again to change your account info.'); alert('Please sign in again to change your account info.');
}, 1); }, 1);
} else { } else {
alert("An Error Occurred: "+error.code) alert("An Error Occurred: " + error.code)
} }
}); });
}else{ } else {
handleSignedInUser(); handleSignedInUser();
} }
}).catch(function(error) { }).catch(function(error) {
@ -209,11 +215,11 @@ function upProfileInfo() {
alert('Please sign in again to change your account info.'); alert('Please sign in again to change your account info.');
}, 1); }, 1);
} else { } else {
alert("An Error Occurred: "+error.code) alert("An Error Occurred: " + error.code)
} }
}); });
}else{ } else {
if(document.getElementById('newEM').value != ''){ if (document.getElementById('newEM').value != '') {
user.updateEmail(document.getElementById('newEM').value).then(function() { user.updateEmail(document.getElementById('newEM').value).then(function() {
handleSignedInUser(); handleSignedInUser();
}).catch(function(error) { }).catch(function(error) {
@ -226,11 +232,13 @@ function upProfileInfo() {
alert('Please sign in again to change your account info.'); alert('Please sign in again to change your account info.');
}, 1); }, 1);
} else { } else {
alert("An Error Occurred: "+error.code) alert("An Error Occurred: " + error.code)
} }
}); });
}else{ } else {
handleSignedInUser();} handleSignedInUser();
}
}
} }
}else { }else {
setTimeout(function() { setTimeout(function() {