mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-07 07:27:20 +00:00
restructured file management part 2
This commit is contained in:
5
dep/2019/website/.firebaserc
Normal file
5
dep/2019/website/.firebaserc
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"projects": {
|
||||
"default": "titanscoutandroid"
|
||||
}
|
||||
}
|
65
dep/2019/website/.gitignore
vendored
Normal file
65
dep/2019/website/.gitignore
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
firebase-debug.log*
|
||||
|
||||
# Firebase cache
|
||||
.firebase/
|
||||
|
||||
# Firebase config
|
||||
|
||||
# Uncomment this if you'd like others to create their own Firebase project.
|
||||
# For a team working on the same Firebase project(s), it is recommended to leave
|
||||
# it commented so all members can deploy to the same project(s) in .firebaserc.
|
||||
# .firebaserc
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
0
dep/2019/website/.runtimeconfig.json
Normal file
0
dep/2019/website/.runtimeconfig.json
Normal file
20
dep/2019/website/firebase.json
Normal file
20
dep/2019/website/firebase.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"firestore": {
|
||||
"rules": "firestore.rules",
|
||||
"indexes": "firestore.indexes.json"
|
||||
},
|
||||
"hosting": {
|
||||
"public": "public",
|
||||
"ignore": [
|
||||
"firebase.json",
|
||||
"**/.*",
|
||||
"**/node_modules/**"
|
||||
],
|
||||
"rewrites": [
|
||||
{
|
||||
"source": "**",
|
||||
"destination": "/index.html"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
4
dep/2019/website/firestore.indexes.json
Normal file
4
dep/2019/website/firestore.indexes.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"indexes": [],
|
||||
"fieldOverrides": []
|
||||
}
|
7
dep/2019/website/firestore.rules
Normal file
7
dep/2019/website/firestore.rules
Normal file
@@ -0,0 +1,7 @@
|
||||
service cloud.firestore {
|
||||
match /databases/{database}/documents {
|
||||
match /{document=**} {
|
||||
allow read, write;
|
||||
}
|
||||
}
|
||||
}
|
8
dep/2019/website/functions/index.js
Normal file
8
dep/2019/website/functions/index.js
Normal file
@@ -0,0 +1,8 @@
|
||||
const functions = require('firebase-functions');
|
||||
|
||||
// // Create and Deploy Your First Cloud Functions
|
||||
// // https://firebase.google.com/docs/functions/write-firebase-functions
|
||||
//
|
||||
// exports.helloWorld = functions.https.onRequest((request, response) => {
|
||||
// response.send("Hello from Firebase!");
|
||||
// });
|
3878
dep/2019/website/functions/package-lock.json
generated
Normal file
3878
dep/2019/website/functions/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
16
dep/2019/website/functions/package.json
Normal file
16
dep/2019/website/functions/package.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "functions",
|
||||
"description": "Cloud Functions for Firebase",
|
||||
"scripts": {
|
||||
"serve": "firebase serve --only functions",
|
||||
"shell": "firebase functions:shell",
|
||||
"start": "npm run shell",
|
||||
"deploy": "firebase deploy --only functions",
|
||||
"logs": "firebase functions:log"
|
||||
},
|
||||
"dependencies": {
|
||||
"firebase-admin": "~6.0.0",
|
||||
"firebase-functions": "^2.1.0"
|
||||
},
|
||||
"private": true
|
||||
}
|
3278
dep/2019/website/package-lock.json
generated
Normal file
3278
dep/2019/website/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
24
dep/2019/website/public/index.html
Normal file
24
dep/2019/website/public/index.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>titanscout</title>
|
||||
<script src="https://www.gstatic.com/firebasejs/5.7.2/firebase.js"></script>
|
||||
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.css" />
|
||||
<link rel="stylesheet" href="style.css" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<script type="text/javascript" src="scripts.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="main">
|
||||
<h1 id="mainhead">TitanScout- Sign In</h1>
|
||||
<p id="status">You are not signed in.</p>
|
||||
<div id="firebaseui-auth-container"></div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
53
dep/2019/website/public/profile/index.html
Normal file
53
dep/2019/website/public/profile/index.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>titanscout</title>
|
||||
<script src="https://www.gstatic.com/firebasejs/5.7.2/firebase.js"></script>
|
||||
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.css" />
|
||||
<link rel="stylesheet" href="../style.css" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<script type="text/javascript" src="scripts.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="mySidenav" class="sidenav">
|
||||
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||
<a href="#">Profile</a>
|
||||
<a href="../team">Team</a>
|
||||
<a href="../scout">Scout Matches</a>
|
||||
<a href="../stats">Tournament Stats</a>
|
||||
</div>
|
||||
<div id="main">
|
||||
<span onclick="openNav()" id="topbar">
|
||||
<img id="sideload" src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Hamburger_icon.svg/1200px-Hamburger_icon.svg.png">
|
||||
</span>
|
||||
<h1 id="mainhead">TitanScout- Your Profile</h1>
|
||||
<p id="status">Loading...</p>
|
||||
<input type="button" name="Sign Out" value="Sign Out" onclick="signout();" id="signout" class="btn">
|
||||
<input type="button" name="DelAcc" value="Delete Account" onclick="deleteAccount();" id="deleteacc" class="btn">
|
||||
<h2>Profile info</h2>
|
||||
<table id="profileupd">
|
||||
<tr class="profupdopt">
|
||||
<td>
|
||||
Username: <span contenteditable="true" id="newDN"></span>
|
||||
</td>
|
||||
<td>
|
||||
<input type="button" name="upun" value="Update Username" onclick="updun();" class="btn">
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="profileupdopt">
|
||||
<td>
|
||||
Email: <span contenteditable="true" id="newEM"></span>
|
||||
</td>
|
||||
<td>
|
||||
<input type="button" name="updem" value="Update Email" onclick="updem();" class="btn">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
104
dep/2019/website/public/profile/scripts.js
Normal file
104
dep/2019/website/public/profile/scripts.js
Normal file
@@ -0,0 +1,104 @@
|
||||
/* 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)";
|
||||
for (var i = 0; i < document.getElementsByClassName("btn").length; i++) {
|
||||
document.getElementsByClassName("btn")[i].style.backgroundColor="rgba(0,0,0,.2)"
|
||||
}
|
||||
}
|
||||
|
||||
/* 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";
|
||||
for (var i = 0; i < document.getElementsByClassName("btn").length; i++) {
|
||||
document.getElementsByClassName("btn")[i].style.backgroundColor="buttonface"
|
||||
}
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
document.getElementById('sideload').style.display = 'block';
|
||||
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) {
|
||||
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;
|
||||
} else {
|
||||
document.getElementById('status').innerHTML = "You are signed in.";
|
||||
}
|
||||
if (user.email != null) {
|
||||
document.getElementById('newEM').innerHTML = user.email;
|
||||
}
|
||||
} else {
|
||||
window.location.replace('../');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function signout() {
|
||||
var user = firebase.auth().currentUser;
|
||||
firebase.auth().signOut().then(
|
||||
window.location.href = '../');
|
||||
}
|
||||
|
||||
function deleteAccount() {
|
||||
try {
|
||||
firebase.auth().currentUser.delete().then(
|
||||
window.location.href = '../');
|
||||
} catch (error) {
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
alert("Please sign in again to delete your account.")
|
||||
window.location.href = '../';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function updun() {
|
||||
var user = firebase.auth().currentUser;
|
||||
user.updateProfile({
|
||||
displayName: document.getElementById('newDN').innerHTML,
|
||||
}).then(function() {
|
||||
document.getElementById('newDN').innerHTML = firebase.auth().currentUser.displayName;
|
||||
document.getElementById('status').innerHTML = "You are signed in as: " + firebase.auth().currentUser.displayName;
|
||||
firebase.firestore().collection("users").doc(user.uid).set({alias:firebase.auth().currentUser.displayName}, {
|
||||
merge: true
|
||||
})
|
||||
}).catch(function(error) {
|
||||
alert("there was a problem: " + error)
|
||||
});
|
||||
}
|
||||
|
||||
function updem() {
|
||||
var user = firebase.auth().currentUser;
|
||||
user.updateEmail(document.getElementById('newEM').innerHTML).then(function() {
|
||||
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;
|
||||
}
|
||||
}).catch(function(error) {
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
alert("Please sign in again to delete your account.")
|
||||
window.location.href = '../';
|
||||
} else {
|
||||
alert("there was a problem: " + error)
|
||||
}
|
||||
});
|
||||
}
|
50
dep/2019/website/public/scout/index.html
Normal file
50
dep/2019/website/public/scout/index.html
Normal file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>
|
||||
<meta charset="utf-8">
|
||||
<title>titanscout</title>
|
||||
<script src="https://www.gstatic.com/firebasejs/5.7.2/firebase.js"></script>
|
||||
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.css" />
|
||||
<link rel="stylesheet" href="../style.css" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<script type="text/javascript" src="scripts.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="mySidenav" class="sidenav">
|
||||
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||
<a href="../profile">Profile</a>
|
||||
<a href="../team">Team</a>
|
||||
<a href="#" >Scout Matches</a>
|
||||
<a href="../stats">Tournament Stats</a>
|
||||
</div>
|
||||
<div id="main">
|
||||
<span onclick="openNav()" id="topbar">
|
||||
<img id="sideload" src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Hamburger_icon.svg/1200px-Hamburger_icon.svg.png">
|
||||
</span>
|
||||
<h1 id="mainhead">TitanScout- Scout Matches</h1>
|
||||
<p id="status">Loading...</p>
|
||||
<div>
|
||||
Scouting For: <select id="tns" onchange="changeTeam(document.getElementById('tns').value)"></select>
|
||||
</div>
|
||||
<h2>Submit a Report:</h2>
|
||||
<div class="">
|
||||
Match: <select id="mselect" onchange="cmatch(document.getElementById('mselect').value)"></select>
|
||||
Team: <select id="tselect"></Select>
|
||||
Series: <select id="sselect" onchange="cseries(document.getElementById('sselect').value)">
|
||||
<option value="quantitative">Quantitative</option>
|
||||
<option value="Qualitative">Qualitative</option>
|
||||
</select>
|
||||
</div>
|
||||
<div id=FormData>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
490
dep/2019/website/public/scout/scripts.js
Normal file
490
dep/2019/website/public/scout/scripts.js
Normal file
@@ -0,0 +1,490 @@
|
||||
|
||||
/* 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)";
|
||||
}
|
||||
|
||||
/* 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";
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
document.getElementById('sideload').style.display = 'block';
|
||||
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"
|
||||
};
|
||||
//eventually find a less-jank way to do this tho
|
||||
firebase.initializeApp(config);
|
||||
firebase.auth().onAuthStateChanged(function(user) {
|
||||
if (user != null) {
|
||||
if (user.displayName != null) {
|
||||
document.getElementById('status').innerHTML = "You are signed in as: " + 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;
|
||||
} else {
|
||||
document.getElementById('status').innerHTML = "You are signed in.";
|
||||
}
|
||||
} else {
|
||||
window.location.replace('../../');
|
||||
}
|
||||
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid);
|
||||
teamAssoc.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
list = doc.data()
|
||||
teamNums = Object.keys(list)
|
||||
document.getElementById('tns').innerHTML = ""
|
||||
for (var i = 0; i < teamNums.length; i++) {
|
||||
document.getElementById('tns').innerHTML += "<option value='" + teamNums[i] + "'>" + teamNums[i] + "</option>"
|
||||
}
|
||||
} else {}
|
||||
}).then(function() {
|
||||
changeTeam(document.getElementById('tns').value)
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
function changeTeam(teamNum) {
|
||||
document.getElementById('mselect').innerHTML = ""
|
||||
var user = firebase.auth().currentUser;
|
||||
ti = firebase.firestore().collection('teamData').doc("team-" + teamNum);
|
||||
currentComp = null;
|
||||
ti.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
info = doc.data();
|
||||
currentComp = info['currentCompetition'];
|
||||
} else {
|
||||
alert("Something's wrong with firebase.");
|
||||
throw ("Something's wrong with firebase.");
|
||||
}
|
||||
}).then(function() {
|
||||
if (currentComp != null) {
|
||||
matches = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('scoutsAndSchedule');
|
||||
matches.get().then(function(qs) {
|
||||
var oklist = []
|
||||
qs.forEach(function(dc) {
|
||||
//regex search!
|
||||
var pattern = /\d+/;
|
||||
var name = dc.id;
|
||||
oklist.push(name.match(pattern)[0].toString())
|
||||
});
|
||||
oklist.sort(function(a, b) {
|
||||
return parseInt(a) - parseInt(b)
|
||||
})
|
||||
for (var i = 0; i < oklist.length; i++) {
|
||||
document.getElementById('mselect').innerHTML += "<option value='" + oklist[i] + "'>" + oklist[i] + "</option>";
|
||||
}
|
||||
cmatch(document.getElementById('mselect').value);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function cmatch(matchName) {
|
||||
teamNum = document.getElementById('tns').value;
|
||||
document.getElementById('tselect').innerHTML = ""
|
||||
var user = firebase.auth().currentUser;
|
||||
ti = firebase.firestore().collection('teamData').doc("team-" + teamNum);
|
||||
currentComp = null;
|
||||
ti.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
info = doc.data();
|
||||
currentComp = info['currentCompetition'];
|
||||
} else {
|
||||
alert("Something's wrong with firebase.");
|
||||
throw ("Something's wrong with firebase.");
|
||||
}
|
||||
}).then(function() {
|
||||
if (currentComp != null) {
|
||||
match = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('scoutsAndSchedule').doc('match-' + matchName)
|
||||
match.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
data = doc.data()
|
||||
for (var i = 0; i < Object.keys(data['BLUE']).length; i++) {
|
||||
var pattern = /\d+/;
|
||||
document.getElementById('tselect').innerHTML += "<option value='" + Object.keys(data['BLUE'])[i].match(pattern)[0].toString() + "'>" + Object.keys(data['BLUE'])[i].match(pattern)[0].toString() + "</option>";
|
||||
}
|
||||
for (var i = 0; i < Object.keys(data['RED']).length; i++) {
|
||||
var pattern = /\d+/;
|
||||
document.getElementById('tselect').innerHTML += "<option value='" + Object.keys(data['RED'])[i].match(pattern)[0].toString() + "'>" + Object.keys(data['RED'])[i].match(pattern)[0].toString() + "</option>";
|
||||
}
|
||||
cseries(document.getElementById('sselect').value);
|
||||
}
|
||||
})
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function cseries(seriesName) {
|
||||
document.getElementById('FormData').innerHTML = ""
|
||||
var user = firebase.auth().currentUser;
|
||||
ti = firebase.firestore().collection('teamData').doc("team-" + teamNum);
|
||||
currentComp = null;
|
||||
ti.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
info = doc.data();
|
||||
currentComp = info['currentCompetition'];
|
||||
} else {
|
||||
alert("Something's wrong with firebase.");
|
||||
throw ("Something's wrong with firebase.");
|
||||
}
|
||||
}).then(function() {
|
||||
if (currentComp != null) {
|
||||
|
||||
if (seriesName == "quantitative") {
|
||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Sandstorm' + "</h3>";
|
||||
document.getElementById('FormData').innerHTML += "<div id='repsec1'>" + "</div>";
|
||||
var ss = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appElements').doc('quantitativeSandstorm');
|
||||
ss.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
processAndAppendReturn(doc.data(), 'repsec1')
|
||||
}
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<h3>" + 'TeleOp' + "</h3>";
|
||||
document.getElementById('FormData').innerHTML += "<div id='repsec2'></div>";
|
||||
var to = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appElements').doc('quantitativeTeleop');
|
||||
to.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
processAndAppendReturn(doc.data(), 'repsec2')
|
||||
}
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Cycle Times' + "</h3>";
|
||||
document.getElementById('FormData').innerHTML += "<div id='repsec3'></div>";
|
||||
var cyc = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appElements').doc('quantitativeCycleTimes');
|
||||
cyc.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
processAndAppendReturn(doc.data(), 'repsec3')
|
||||
}
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<br><input type='button' onclick=subReport() value='Submit'>";
|
||||
});
|
||||
});
|
||||
});
|
||||
} else if (seriesName = "qualitative") {
|
||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Sandstorm' + "</h3>";
|
||||
document.getElementById('FormData').innerHTML += "<div id='repsec1'></div>";
|
||||
var ss = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appElements').doc('qualitativeSandstorm');
|
||||
ss.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
processAndAppendReturn(doc.data(), 'repsec1')
|
||||
}
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<h3>" + 'TeleOp' + "</h3>";
|
||||
document.getElementById('FormData').innerHTML += "<div id='repsec2'></div>";
|
||||
var to = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appElements').doc('qualitativeTeleop');
|
||||
to.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
processAndAppendReturn(doc.data(), 'repsec2')
|
||||
}
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Strategy' + "</h3>";
|
||||
document.getElementById('FormData').innerHTML += "<div id='repsec3'></div>";
|
||||
var strat = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appElements').doc('qualitativeStrategy');
|
||||
strat.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
processAndAppendReturn(doc.data(), 'repsec3')
|
||||
}
|
||||
}).then(function() {
|
||||
document.getElementById('FormData').innerHTML += "<input type='button' onclick=subReport() value='Submit'>";
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function processAndAppendReturn(data, newloc) {
|
||||
labels = Object.keys(data);
|
||||
var index = labels.indexOf('header');
|
||||
if (index > -1) {
|
||||
labels.splice(index, 1);
|
||||
}
|
||||
var index = labels.indexOf('observationType');
|
||||
if (index > -1) {
|
||||
labels.splice(index, 1);
|
||||
}
|
||||
var index = labels.indexOf('header');
|
||||
if (index > -1) {
|
||||
labels.splice(index, 1);
|
||||
}
|
||||
var index = labels.indexOf('order');
|
||||
if (index > -1) {
|
||||
labels.splice(index, 1);
|
||||
}
|
||||
var questions = [];
|
||||
for (var j = 0; j < labels.length; j++) {
|
||||
questions.push([labels[j], data[labels[j]]]);
|
||||
}
|
||||
questions.sort(function(a, b) {
|
||||
return a[1].order - b[1].order;
|
||||
})
|
||||
for (var j = 0; j < questions.length; j++) {
|
||||
document.getElementById(newloc).innerHTML += "<div id='" + newloc + j.toString() + "'></div>";
|
||||
document.getElementById(newloc + j.toString()).innerHTML += questions[j][0];
|
||||
if (questions[j][1]['type'] == 'shortText') {
|
||||
document.getElementById(newloc + j.toString()).innerHTML += "<input id=''" + questions[j][0] + "' type='text'></input>";
|
||||
} else if (questions[j][1]['type'] == 'textField') {
|
||||
document.getElementById(newloc + j.toString()).innerHTML += "<br><textarea id='" + questions[j][0] + "' rows='4' cols='50''></textarea>";
|
||||
} else if (questions[j][1]['type'] == 'stepper') {
|
||||
document.getElementById(newloc + j.toString()).innerHTML += "<span id='" + questions[j][0] + "'><input type='button' onclick=\"dec('" + questions[j][0] + "')\" value='-'></input>" + (questions[j][1]['defaultValue']).toString() + "<input type='button' onclick=\"inc('" + questions[j][0] + "')\" value='+'></input></span>";
|
||||
} else if (questions[j][1]['type'] == 'label') {
|
||||
document.getElementById(newloc + j.toString()).innerHTML += "<span id='" + questions[j][0] + "'><input type='button' onclick=\"dec('" + questions[j][0] + "')\" value='-'></input>" + '0' + "<input type='button' onclick=\"inc('" + questions[j][0] + "')\" value='+'></input></span>";
|
||||
} else if (questions[j][1]['type'] == 'slider') {
|
||||
document.getElementById(newloc + j.toString()).innerHTML += " " + questions[j][1]['min'] + " ";
|
||||
document.getElementById(newloc + j.toString()).innerHTML += "<input type='range' min='" + questions[j][1]['min'] + "' max='" + questions[j][1]['max'] + "'>";
|
||||
document.getElementById(newloc + j.toString()).innerHTML += " " + questions[j][1]['max'];
|
||||
} else if (questions[j][1]['type'] == 'segment') {
|
||||
document.getElementById(newloc + j.toString()).innerHTML += "<div id='" + questions[j][0] + "'></div>"
|
||||
for (var k = 0; k < questions[j][1]['elements'].length; k++) {
|
||||
//// TODO: replace with real buttons for good styling
|
||||
document.getElementById(questions[j][0]).innerHTML += questions[j][1]['elements'][k];
|
||||
document.getElementById(questions[j][0]).innerHTML += "<input type='radio' name='" + questions[j][0] + "' value=" + questions[j][1]['elements'][k] + "></input> "
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
function updateForm(locString, teamNum, competition) {
|
||||
seriesList = [];
|
||||
document.getElementById('FormData').innerHTML = ""
|
||||
loc = firebase.firestore().collection('appBuilding').doc("team-" + teamNum).collection('competitions').doc(competition).collection(lastWord(locString));
|
||||
loc.get().then(function(docs) {
|
||||
docs.forEach(function(doc) {
|
||||
seriesList.push(doc.data());
|
||||
});
|
||||
seriesList.sort(function(a, b) {
|
||||
return a.order - b.order;
|
||||
})
|
||||
for (var i = 0; i < seriesList.length; i++) {
|
||||
document.getElementById('FormData').innerHTML += "<h3>"
|
||||
seriesList[i].id + "</h3>";
|
||||
labels = Object.keys(seriesList[i].data());
|
||||
var index = labels.indexOf('order');
|
||||
if (index > -1) {
|
||||
labels.splice(index, 1);
|
||||
}
|
||||
var questions = [];
|
||||
for (var j = 0; j < labels.length; j++) {
|
||||
questions.push([labels[j], seriesList[i].data()[labels[j]]])
|
||||
}
|
||||
questions.sort(function(a, b) {
|
||||
return a[1].order - b[1].order;
|
||||
})
|
||||
for (var j = 0; j < questions.length; j++) {
|
||||
document.getElementById('FormData').innerHTML += "<div>";
|
||||
document.getElementById('FormData').innerHTML += questions[j][1]['title'];
|
||||
if (questions[j][1]['type'] = 'shortText') {
|
||||
document.getElementById('FormData').innerHTML += "<input id=''" + questions[j][0] + "' type='text'></input>";
|
||||
} else if (questions[j][1]['type'] = 'longText') {
|
||||
document.getElementById('FormData').innerHTML += "<textarea id=''" + questions[j][0] + "' rows='4' cols='50''></textarea>";
|
||||
} else if (questions[j][1]['type'] = 'numerical') {
|
||||
document.getElementById('FormData').innerHTML += "<span id='" + questions[j][0] + "'><input type='button' onclick='dec(" + questions[j][0] + ")' value='-'></input>" + (questions[j][1]['default']).toString() + "<input type='button' onclick='inc(" + questions[j][0] + ")' value='+'></input></span>";
|
||||
} else if (questions[j][1]['type'] = 'range') {
|
||||
document.getElementById('FormData').innerHTML += " " + questions[j][1]['min']['text'] + " ";
|
||||
document.getElementById('FormData').innerHTML += "<input type='range' min='" + questions[j][1]['min']['val'] + "' max='" + questions[j][1]['max']['val'] + "'>";
|
||||
document.getElementById('FormData').innerHTML += " " + questions[j][1]['max']['text'];
|
||||
} else if (questions[j][1]['type'] = 'segment') {
|
||||
document.getElementById('FormData').innerHTML += "<div id='" + questions[j][0] + "'>"
|
||||
for (var k = 0; k < questions[j][1]['elements'].length; k++) {
|
||||
//// TODO: replace with real buttons for good styling
|
||||
document.getElementById('FormData').innerHTML += questions[j][1]['elements'][k];
|
||||
document.getElementById('FormData').innerHTML += "<input type='radio' name='" + questions[j][0] + "' value=" + questions[j][1]['elements'][k] + "></input>"
|
||||
}
|
||||
document.getElementById('FormData').innerHTML += "</div>"
|
||||
}
|
||||
document.getElementById('FormData').innerHTML += "</div>";
|
||||
}
|
||||
}
|
||||
document.getElementById('FormData').innerHTML += "<input type='button' onclick=subReport(" + teamNum + "," + competition + "," + firstWord(locString) + ") value='Submit'>"
|
||||
});
|
||||
}
|
||||
*/
|
||||
function dec(id) {
|
||||
document.getElementById(id).innerHTML = "<input type='button' onclick=\"dec('" + id + "')\" value='-'></input>" + (parseInt(document.getElementById(id).textContent) - 1).toString() + "<input type='button' onclick=\"inc('" + id + "')\" value='+'></input>"
|
||||
}
|
||||
|
||||
function inc(id) {
|
||||
document.getElementById(id).innerHTML = "<input type='button' onclick=\"dec('" + id + "')\" value='-'></input>" + (parseInt(document.getElementById(id).textContent) + 1).toString() + "<input type='button' onclick=\"inc('" + id + "')\" value='+'></input>"
|
||||
}
|
||||
|
||||
function capitalizeFirstLetter(string) {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
}
|
||||
|
||||
function subReport() {
|
||||
var user = firebase.auth().currentUser;
|
||||
ti = firebase.firestore().collection('teamData').doc("team-" + teamNum);
|
||||
currentComp = null;
|
||||
ti.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
info = doc.data();
|
||||
currentComp = info['currentCompetition'];
|
||||
} else {
|
||||
alert("Something's wrong with firebase.");
|
||||
throw ("Something's wrong with firebase.");
|
||||
}
|
||||
}).then(function() {
|
||||
if (currentComp != null) {
|
||||
var submitTo = document.getElementById('tns').value.toString();
|
||||
var teamNum = document.getElementById('tselect').value.toString();
|
||||
var matchNum = document.getElementById('mselect').value.toString();
|
||||
var series = capitalizeFirstLetter(document.getElementById('sselect').value).toString();
|
||||
var push = {}
|
||||
push[`${series}-${user.uid.toString()}`.toString()] = {}
|
||||
var x = document.getElementById('repsec1').children;
|
||||
for (var i = 0; i < x.length; i++) {
|
||||
if (x[i].children[0].tagName == "INPUT") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[0].id] = x[i].children[0].tagName;
|
||||
} else if (x[i].children[0].tagName == "SPAN") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[0].id] = x[i].children[0].innerText;
|
||||
} else if (x[i].children[0].tagName == "DIV") {
|
||||
var name = x[i].children[0].id;
|
||||
push[`${series}-${user.uid.toString()}`.toString()][name] = document.querySelector('input[name="' + name + '"]:checked').value;
|
||||
} else if (x[i].children[1].tagName == "TEXTAREA") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[1].id] = x[i].children[1].value;
|
||||
}
|
||||
}
|
||||
var x = document.getElementById('repsec2').children;
|
||||
for (var i = 0; i < x.length; i++) {
|
||||
if (x[i].children[0].tagName == "INPUT") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[0].id] = x[i].children[0].tagName;
|
||||
} else if (x[i].children[0].tagName == "SPAN") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[0].id] = x[i].children[0].innerText;
|
||||
} else if (x[i].children[0].tagName == "DIV") {
|
||||
var name = x[i].children[0].id;
|
||||
push[`${series}-${user.uid.toString()}`.toString()][name] = document.querySelector('input[name="' + name + '"]:checked').value;
|
||||
} else if (x[i].children[1].tagName == "TEXTAREA") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[1].id] = x[i].children[1].value;
|
||||
}
|
||||
}
|
||||
var x = document.getElementById('repsec3').children;
|
||||
for (var i = 0; i < x.length; i++) {
|
||||
if (x[i].children[0].tagName == "INPUT") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[0].id] = x[i].children[0].tagName;
|
||||
} else if (x[i].children[0].tagName == "SPAN") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[0].id] = x[i].children[0].innerText;
|
||||
} else if (x[i].children[0].tagName == "DIV") {
|
||||
var name = x[i].children[0].id;
|
||||
push[`${series}-${user.uid.toString()}`.toString()][name] = document.querySelector('input[name="' + name + '"]:checked').value;
|
||||
} else if (x[i].children[1].tagName == "TEXTAREA") {
|
||||
push[`${series}-${user.uid.toString()}`.toString()][x[i].children[1].id] = x[i].children[1].value;
|
||||
}
|
||||
}
|
||||
push[`${series}-${user.uid.toString()}`.toString()]['match']='match-'+matchNum;
|
||||
push[`${series}-${user.uid.toString()}`.toString()]['teamDBRed']='team-'+teamNum;
|
||||
try {
|
||||
delete push[`${series}-${user.uid.toString()}`.toString()][""]
|
||||
} catch (e) {
|
||||
|
||||
}
|
||||
firebase.firestore().collection("data").doc('team-' + document.getElementById('tns').value).collection(currentComp).doc("team-" + teamNum).collection('matches').doc('match-' + matchNum).set(push, {merge:true}).then(function() {
|
||||
alert('Submitted!')
|
||||
setTimeout(function() {
|
||||
window.location.href = '../scout';
|
||||
}, 500);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
function subReport(team, comp, matchNum) {
|
||||
var push = {}
|
||||
var x = document.getElementById('FormData').children;
|
||||
for (var i = 0; i < x.length; i++) {
|
||||
if (x[i].children[0].tagName == "INPUT") {
|
||||
push[x[i].children[0].id] = x[i].children[0].tagName;
|
||||
} else if (x[i].children[0].tagName == "TEXTAREA") {
|
||||
push[x[i].children[0].id] = x[i].children[0].innerHTML;
|
||||
} else if (x[i].children[0].tagName == "SPAN") {
|
||||
push[x[i].children[0].id] = x[i].children[0].innerText;
|
||||
} else if (x[i].children[0].tagName == "DIV") {
|
||||
var name = x[i].children[0].id;
|
||||
push[name] = document.querySelector('input[name="' + name + '"]:checked').value;
|
||||
}
|
||||
}
|
||||
var user = firebase.auth().currentUser;
|
||||
firebase.firestore().collection("teamData").doc('team-' + team).collection('scouts').doc(user.uid).collection(comp).doc("team-" + scoutedTeamNumber + matchNum).set(push, {
|
||||
merge: true
|
||||
}).then(function() {
|
||||
firebase.firestore().collection("data").doc('team-' + team).collection(comp).doc("team-" + scoutedTeamNumber).collection('matches').doc('match-' + matchNum).set(push, {
|
||||
merge: true
|
||||
});
|
||||
});
|
||||
}
|
||||
function subRes() {
|
||||
firebase.firestore().collection('teamData').doc('team-' + document.getElementById('tns').value).get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
comp = doc.data()['currentCompetition'];
|
||||
}
|
||||
}).then(function() {
|
||||
var user = firebase.auth().currentUser;
|
||||
push = {}
|
||||
push['match'] = 'match-' + document.getElementById('mn').value
|
||||
push['teamDBRef'] = 'team-' + document.getElementById('tsn').value
|
||||
push['speed'] = document.getElementById('speed').value
|
||||
push['sandstormCross'] = document.getElementById('SCross').value
|
||||
push['strategy'] = document.getElementById('strat').value
|
||||
push['contrubution'] = document.getElementById('contrib').value
|
||||
push['startingHatch'] = document.getElementById('habs').value
|
||||
push['size'] = document.getElementById('egs').value
|
||||
push['fillChoice'] = document.getElementById('SFill').value
|
||||
push['functional'] = document.getElementById('DOA').value
|
||||
push['strongMedium'] = document.getElementById('SSO').value
|
||||
push['sandstormCrossBonus'] = document.getElementById('SCross').value
|
||||
push['fillChoiceTeleop'] = document.getElementById('TFill').value
|
||||
push['strongMediumTeleop'] = document.getElementById('TSO').value
|
||||
push['cargoSuccessTeleop'] = document.getElementById('CSSR').value
|
||||
push['hiRocketSuccessTeleop'] = document.getElementById('HRSR').value
|
||||
push['lowRocketSuccessTeleop'] = document.getElementById('LRSR').value
|
||||
push['endingHab'] = document.getElementById('HAB').value
|
||||
firebase.firestore().collection("teamData").doc('team-' + document.getElementById('tns').value).collection('scouts').doc(user.uid).collection(comp).doc("team-" + document.getElementById('tsn').value + "-match-" + document.getElementById('mn').value).set(push, {
|
||||
merge: true
|
||||
})
|
||||
}).then(function() {
|
||||
var user = firebase.auth().currentUser;
|
||||
push = {}
|
||||
push['match'] = 'match-' + document.getElementById('mn').value
|
||||
push['teamDBRef'] = 'team-' + document.getElementById('tsn').value
|
||||
push['speed'] = document.getElementById('speed').value
|
||||
push['sandstormCross'] = document.getElementById('SCross').value
|
||||
push['strategy'] = document.getElementById('strat').value
|
||||
push['contrubution'] = document.getElementById('contrib').value
|
||||
push['startingHatch'] = document.getElementById('habs').value
|
||||
push['size'] = document.getElementById('egs').value
|
||||
push['fillChoice'] = document.getElementById('SFill').value
|
||||
push['functional'] = document.getElementById('DOA').value
|
||||
push['strongMedium'] = document.getElementById('SSO').value
|
||||
push['sandstormCrossBonus'] = document.getElementById('SCross').value
|
||||
push['fillChoiceTeleop'] = document.getElementById('TFill').value
|
||||
push['strongMediumTeleop'] = document.getElementById('TSO').value
|
||||
push['cargoSuccessTeleop'] = document.getElementById('CSSR').value
|
||||
push['hiRocketSuccessTeleop'] = document.getElementById('HRSR').value
|
||||
push['lowRocketSuccessTeleop'] = document.getElementById('LRSR').value
|
||||
push['endingHab'] = document.getElementById('HAB').value
|
||||
firebase.firestore().collection("data").doc('team-' + document.getElementById('tns').value).collection(comp).doc("team-" + document.getElementById('tsn').value).collection('matches').doc('match-' + document.getElementById('mn').value).set(push, {
|
||||
merge: true
|
||||
})
|
||||
}
|
||||
).then(function() {
|
||||
alert('Submitted!')
|
||||
setTimeout(function() {
|
||||
window.location.href = '../scout';
|
||||
}, 500);
|
||||
})
|
||||
}*/
|
184
dep/2019/website/public/scripts-old.js
Normal file
184
dep/2019/website/public/scripts-old.js
Normal file
@@ -0,0 +1,184 @@
|
||||
var handleSignedInUser = function(user) {
|
||||
document.getElementById("mainhead").innerHTML = "TitanScout- User Info";
|
||||
if (user.displayName != null) {
|
||||
document.getElementById('status').innerHTML = "You are signed in as: " + 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;
|
||||
} else {
|
||||
document.getElementById('status').innerHTML = "You are signed in.";
|
||||
}
|
||||
document.getElementById('signout').style.display = 'inline-block';
|
||||
document.getElementById('updpi').style.display = 'inline-block';
|
||||
document.getElementById('deleteacc').style.display = 'inline-block';
|
||||
document.getElementById('profileupd').style.display = 'none';
|
||||
document.getElementById('sideload').style.display = 'block';
|
||||
}
|
||||
var handleSignedOutUser = function() {
|
||||
document.getElementById("mainhead").innerHTML = "TitanScout- Sign In";
|
||||
document.getElementById('status').innerHTML = "You are not signed in.";
|
||||
document.getElementById('signout').style.display = 'none';
|
||||
document.getElementById('updpi').style.display = 'none';
|
||||
document.getElementById('deleteacc').style.display = 'none';
|
||||
document.getElementById('profileupd').style.display = 'none';
|
||||
document.getElementById('sideload').style.display = 'none';
|
||||
ui.start('#firebaseui-auth-container', uiConfig);
|
||||
};
|
||||
|
||||
// Initialize the FirebaseUI Widget using Firebase.
|
||||
var ui = new firebaseui.auth.AuthUI(firebase.auth());
|
||||
|
||||
// The start method will wait until the DOM is loaded.
|
||||
ui.start('#firebaseui-auth-container', uiConfig);
|
||||
var deleteAccount = function() {
|
||||
try {
|
||||
firebase.auth().currentUser.delete()
|
||||
handleSignedOutUser()
|
||||
} catch (error) {
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
// The user's credential is too old. She needs to sign in again.
|
||||
signout()
|
||||
// The timeout allows the message to be displayed after the UI has
|
||||
// changed to the signed out state.
|
||||
setTimeout(function() {
|
||||
alert('Please sign in again to delete your account.');
|
||||
}, 1);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function signout() {
|
||||
var user = firebase.auth().currentUser;
|
||||
firebase.auth().signOut()
|
||||
handleSignedOutUser()
|
||||
}
|
||||
|
||||
function loadupdpi() {
|
||||
if (firebase.auth().currentUser != null) {
|
||||
document.getElementById('profileupd').style.display = 'block';
|
||||
} else {
|
||||
setTimeout(function() {
|
||||
alert('Please sign in to change your account info.');
|
||||
}, 1);
|
||||
handleSignedOutUser();
|
||||
}
|
||||
}
|
||||
|
||||
function upProfileInfo() {
|
||||
if (firebase.auth().currentUser != null) {
|
||||
var user = firebase.auth().currentUser;
|
||||
var newDN = document.getElementById('newDN').value;
|
||||
var newEM = document.getElementById('newEM').value;
|
||||
var newPP = document.getElementById('newPP').value;
|
||||
var si = true
|
||||
if (newDN != '' && newDN != user.displayName) {
|
||||
if (newPP != '' && newPP != user.photoURL) {
|
||||
try {
|
||||
user.updateProfile({
|
||||
displayName: newDN,
|
||||
photoURL: newPP
|
||||
});
|
||||
} catch (error) {
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
si = false;
|
||||
// The user's credential is too old. She needs to sign in again.
|
||||
signout()
|
||||
// The timeout allows the message to be displayed after the UI has
|
||||
// changed to the signed out state.
|
||||
setTimeout(function() {
|
||||
alert('Please sign in again to delete your account.');
|
||||
}, 1);
|
||||
} else {
|
||||
alert("An error occurred: " + error)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
user.updateProfile({
|
||||
displayName: newDN
|
||||
});
|
||||
} catch (error) {
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
si = false;
|
||||
// The user's credential is too old. She needs to sign in again.
|
||||
signout()
|
||||
// The timeout allows the message to be displayed after the UI has
|
||||
// changed to the signed out state.
|
||||
setTimeout(function() {
|
||||
alert('Please sign in again to delete your account.');
|
||||
}, 1);
|
||||
} else {
|
||||
alert("An error occurred: " + error)
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (newPP != '' && newPP != user.photoURL) {
|
||||
try {
|
||||
user.updateProfile({
|
||||
photoURL: newPP
|
||||
});
|
||||
} catch (error) {
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
si = false;
|
||||
// The user's credential is too old. She needs to sign in again.
|
||||
signout()
|
||||
// The timeout allows the message to be displayed after the UI has
|
||||
// changed to the signed out state.
|
||||
setTimeout(function() {
|
||||
alert('Please sign in again to delete your account.');
|
||||
}, 1);
|
||||
} else {
|
||||
alert("An error occurred: " + error)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (newEM != '' && newEM != user.email) {
|
||||
try {
|
||||
user.updateEmail(newEM)
|
||||
} catch (error) {
|
||||
si = false;
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
// The user's credential is too old. She needs to sign in again.
|
||||
signout()
|
||||
// The timeout allows the message to be displayed after the UI has
|
||||
// changed to the signed out state.
|
||||
setTimeout(function() {
|
||||
alert('Please sign in again to delete your account.');
|
||||
}, 1);
|
||||
} else {
|
||||
alert("An error occurred: " + error)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (si) {
|
||||
setTimeout(function(){handleSignedInUser(user);},1)
|
||||
}
|
||||
|
||||
} else {
|
||||
setTimeout(function() {
|
||||
alert('Please sign in to change your account info.');
|
||||
}, 1);
|
||||
handleSignedOutUser();
|
||||
}
|
||||
}
|
||||
/* 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)";
|
||||
}
|
||||
|
||||
/* 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";
|
||||
}
|
||||
window.onload=function(){
|
||||
if(firebase.auth().currentUser!=null){
|
||||
handleSignedInUser(firebase.auth().currentUser)
|
||||
}
|
||||
}
|
39
dep/2019/website/public/scripts.js
Normal file
39
dep/2019/website/public/scripts.js
Normal file
@@ -0,0 +1,39 @@
|
||||
// Initialize Firebase
|
||||
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);
|
||||
// FirebaseUI config.
|
||||
var uiConfig = {
|
||||
signInSuccessUrl: 'profile',
|
||||
signInOptions: [
|
||||
// Leave the lines as is for the providers you want to offer your users.
|
||||
firebase.auth.GoogleAuthProvider.PROVIDER_ID,
|
||||
//firebase.auth.FacebookAuthProvider.PROVIDER_ID,
|
||||
//firebase.auth.TwitterAuthProvider.PROVIDER_ID,
|
||||
firebase.auth.GithubAuthProvider.PROVIDER_ID,
|
||||
firebase.auth.EmailAuthProvider.PROVIDER_ID,
|
||||
firebase.auth.PhoneAuthProvider.PROVIDER_ID,
|
||||
// firebaseui.auth.AnonymousAuthProvider.PROVIDER_ID
|
||||
],
|
||||
// tosUrl and privacyPolicyUrl accept either url string or a callback
|
||||
// function.
|
||||
// Terms of service url/callback.
|
||||
tosUrl: function() {
|
||||
alert("this is a test app. don't use it. If you are a 2022 captian, you agree to name Jacob Levine as your successor.");
|
||||
},
|
||||
// Privacy policy url/callback.
|
||||
privacyPolicyUrl: function() {
|
||||
alert("we will steal all of the data");
|
||||
}
|
||||
};
|
||||
// Initialize the FirebaseUI Widget using Firebase.
|
||||
var ui = new firebaseui.auth.AuthUI(firebase.auth());
|
||||
|
||||
// The start method will wait until the DOM is loaded.
|
||||
ui.start('#firebaseui-auth-container', uiConfig);
|
37
dep/2019/website/public/stats/index.html
Normal file
37
dep/2019/website/public/stats/index.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title><meta charset="utf-8">
|
||||
<title>titanscout</title>
|
||||
<script src="https://www.gstatic.com/firebasejs/5.7.2/firebase.js"></script>
|
||||
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.css" />
|
||||
<link rel="stylesheet" href="../style.css" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<script type="text/javascript" src="scripts.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="mySidenav" class="sidenav">
|
||||
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||
<a href="#">Profile</a>
|
||||
<a href="../team">Team</a>
|
||||
<a href="../scout">Scout Matches</a>
|
||||
<a href="../stats">Tournament Stats</a>
|
||||
</div>
|
||||
<div id="main">
|
||||
<span onclick="openNav()" id="topbar">
|
||||
<img id="sideload" src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Hamburger_icon.svg/1200px-Hamburger_icon.svg.png">
|
||||
</span>
|
||||
<h1 id="mainhead">TitanScout- Tournament Statistics</h1>
|
||||
<p id="status">Loading...</p>
|
||||
<div>
|
||||
<h2>Scouting Report</h2>
|
||||
<embed src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://titanrobotics.ddns.net:60080/files" width="500" height="375"></embed>
|
||||
<h2>Scouting Presentation</h2>
|
||||
<embed src="https://drive.google.com/viewerng/viewer?embedded=true&url=http://titanrobotics.ddns.net:60080/files" width="500" height="375"></embed>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
42
dep/2019/website/public/stats/scripts.js
Normal file
42
dep/2019/website/public/stats/scripts.js
Normal file
@@ -0,0 +1,42 @@
|
||||
/* 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)";
|
||||
}
|
||||
|
||||
/* 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";
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
document.getElementById('sideload').style.display = 'block';
|
||||
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"
|
||||
};
|
||||
//eventually find a less-jank way to do this tho
|
||||
firebase.initializeApp(config);
|
||||
firebase.auth().onAuthStateChanged(function(user) {
|
||||
if (user != null) {
|
||||
if (user.displayName != null) {
|
||||
document.getElementById('status').innerHTML = "You are signed in as: " + 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;
|
||||
} else {
|
||||
document.getElementById('status').innerHTML = "You are signed in.";
|
||||
}
|
||||
} else {
|
||||
window.location.replace('../');
|
||||
}
|
||||
});
|
||||
}
|
107
dep/2019/website/public/style.css
Normal file
107
dep/2019/website/public/style.css
Normal file
@@ -0,0 +1,107 @@
|
||||
|
||||
body{
|
||||
text-align: center;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
#sideload{
|
||||
display: none;
|
||||
width:30px;
|
||||
}
|
||||
.blue{
|
||||
background-color: #d1ecf1;
|
||||
color: #0e0c60;
|
||||
}
|
||||
.red{
|
||||
background-color: #f8d7da;
|
||||
color: #b20515;
|
||||
}
|
||||
table{
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
input,#newDN, #newEM{
|
||||
border: 1px solid black;
|
||||
border-radius: 5px;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
#mn, #tsn{
|
||||
width:50px;
|
||||
}
|
||||
#newDN,#newEM{
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
td{
|
||||
text-align: left;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
/* The side navigation menu */
|
||||
.sidenav {
|
||||
height: 100%; /* 100% Full-height */
|
||||
width: 0; /* 0 width - change this with JavaScript */
|
||||
position: fixed; /* Stay in place */
|
||||
z-index: 1; /* Stay on top */
|
||||
top: 0; /* Stay at the top */
|
||||
left: 0;
|
||||
background-color: #111; /* Black*/
|
||||
overflow-x: hidden; /* Disable horizontal scroll */
|
||||
padding-top: 60px; /* Place content 60px from the top */
|
||||
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
|
||||
}
|
||||
|
||||
/* The navigation menu links */
|
||||
.sidenav a {
|
||||
padding: 8px 8px 8px 30px;
|
||||
text-decoration: none;
|
||||
font-size: 25px;
|
||||
color: #818181;
|
||||
display: block;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
/* When you mouse over the navigation links, change their color */
|
||||
.sidenav a:hover {
|
||||
color: #f1f1f1;
|
||||
}
|
||||
/* The navigation menu links */
|
||||
.sidenav p {
|
||||
padding: 8px 8px 8px 32px;
|
||||
text-decoration: none;
|
||||
font-size: 25px;
|
||||
color: #818181;
|
||||
display: block;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
/* When you mouse over the navigation links, change their color */
|
||||
.sidenav p:hover {
|
||||
color: #f1f1f1;
|
||||
}
|
||||
.scoutMatchLinks{
|
||||
size: 20px;
|
||||
padding: 6px 6px 8px 40px;
|
||||
}
|
||||
|
||||
/* Position and style the close button (top right corner) */
|
||||
.sidenav .closebtn {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 25px;
|
||||
font-size: 36px;
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
|
||||
#main {
|
||||
transition: margin-left .5s;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
|
||||
@media screen and (max-height: 450px) {
|
||||
.sidenav {padding-top: 15px;}
|
||||
.sidenav a {font-size: 18px;}
|
||||
}
|
45
dep/2019/website/public/team/index.html
Normal file
45
dep/2019/website/public/team/index.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>titanscout</title>
|
||||
<script src="https://www.gstatic.com/firebasejs/5.7.2/firebase.js"></script>
|
||||
<script src="https://www.gstatic.com/firebasejs/5.8.0/firebase-firestore.js"></script>
|
||||
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.js"></script>
|
||||
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.5.1/firebaseui.css" />
|
||||
<link rel="stylesheet" href="../style.css" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<script type="text/javascript" src="scripts.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="mySidenav" class="sidenav">
|
||||
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
||||
<a href="#">Profile</a>
|
||||
<a href="../team">Team</a>
|
||||
<a href="../scout">Scout Matches</a>
|
||||
<a href="../stats">Tournament Stats</a>
|
||||
</div>
|
||||
<div id="main">
|
||||
<span onclick="openNav()" id="topbar">
|
||||
<img id="sideload" src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Hamburger_icon.svg/1200px-Hamburger_icon.svg.png">
|
||||
</span>
|
||||
<h1 id="mainhead">TitanScout- Your Teams</h1>
|
||||
<p id="status">Loading...</p>
|
||||
<input type="button" name="Sign Out" value="Sign Out" onclick="signout();" id="signout" class="btn">
|
||||
<input type="button" name="DelAcc" value="Delete Account" onclick="deleteAccount();" id="deleteacc" class="btn">
|
||||
<h2>Team Membership</h2>
|
||||
<div id="newstuff">
|
||||
<div>
|
||||
<input type="button" name="CNT" value="Request to Join a Team" class="btn" onclick="reqjt(document.getElementById('etn').value,document.getElementById('jcn').value);">
|
||||
<input type="text" name="TMN" value="" placeholder="Team Name" id="etn">
|
||||
<input type="text" name="JC" value="" placeholder="Join Code" id="jcn">
|
||||
</div>
|
||||
</div>
|
||||
<table id="teammem">
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
182
dep/2019/website/public/team/scripts.js
Normal file
182
dep/2019/website/public/team/scripts.js
Normal file
@@ -0,0 +1,182 @@
|
||||
/* 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)";
|
||||
for (var i = 0; i < document.getElementsByClassName("btn").length; i++) {
|
||||
document.getElementsByClassName("btn")[i].style.backgroundColor = "rgba(0,0,0,.2)"
|
||||
}
|
||||
}
|
||||
|
||||
/* 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";
|
||||
for (var i = 0; i < document.getElementsByClassName("btn").length; i++) {
|
||||
document.getElementsByClassName("btn")[i].style.backgroundColor = "buttonface"
|
||||
}
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
document.getElementById('sideload').style.display = 'block';
|
||||
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) {
|
||||
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;
|
||||
} else {
|
||||
document.getElementById('status').innerHTML = "You are signed in.";
|
||||
}
|
||||
if (user.email != null) {
|
||||
document.getElementById('newEM').innerHTML = user.email;
|
||||
}
|
||||
} else {
|
||||
window.location.replace('../');
|
||||
}
|
||||
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid);
|
||||
teamAssoc.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
list = doc.data()
|
||||
teamNums = Object.keys(list)
|
||||
document.getElementById('teammem').innerHTML = ""
|
||||
for (var i = 0; i < teamNums.length; i++) {
|
||||
document.getElementById('teammem').innerHTML += "<tr><td>" + teamNums[i] + "</td><td>" + list[teamNums[i]] + "</td>" + "<td><input type='button' class='btn' value='leave' onclick='leaveTeam(" + teamNums[i] + ")'></td></tr>"
|
||||
}
|
||||
} else {
|
||||
document.getElementById('teammem').innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
||||
}
|
||||
})
|
||||
});
|
||||
firebase.firestore.settings({
|
||||
timestampsInSnapshots: true
|
||||
})
|
||||
}
|
||||
|
||||
function cnt(tn) {
|
||||
user = firebase.auth().currentUser;
|
||||
push = {}
|
||||
push[tn] = 'captian'
|
||||
firebase.firestore().collection("UserAssociations").doc(user.uid).set(push, {
|
||||
merge: true
|
||||
}).then(function() {
|
||||
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid)
|
||||
teamAssoc.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
list = doc.data()
|
||||
teamNums = Object.keys(list)
|
||||
document.getElementById('teammem').innerHTML = ""
|
||||
for (var i = 0; i < teamNums.length; i++) {
|
||||
document.getElementById('teammem').innerHTML += "<tr><td>" + teamNums[i] + "</td><td>" + list[teamNums[i]] + "</td>" + "<td><input type='button' class='btn' value='leave' onclick='leaveTeam(" + teamNums[i] + ")'></td></tr>"
|
||||
}
|
||||
} else {
|
||||
document.getElementById('teammem').innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function checkKeyMatch(dt, tn, key) {
|
||||
for (i = 0; i < Object.keys(dt).length; i++) {
|
||||
if (Object.keys(dt)[i] == "code-" + key) {
|
||||
if (dt[Object.keys(dt)[i]] == "team-" + tn) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
function reqjt(tn, tc) {
|
||||
user = firebase.auth().currentUser;
|
||||
firebase.firestore().collection('teamData').doc('joinCodes').get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
dict = doc.data();
|
||||
if (checkKeyMatch(dict, tn, tc)) {
|
||||
push = {};
|
||||
push[tn] = 'scout';
|
||||
firebase.firestore().collection("UserAssociations").doc(user.uid).set(push, {
|
||||
merge: true
|
||||
}).then(function() {
|
||||
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid)
|
||||
teamAssoc.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
list = doc.data()
|
||||
teamNums = Object.keys(list)
|
||||
document.getElementById('teammem').innerHTML = ""
|
||||
for (var i = 0; i < teamNums.length; i++) {
|
||||
document.getElementById('teammem').innerHTML += "<tr><td>" + teamNums[i] + "</td><td>" + list[teamNums[i]] + "</td>" + "<td><input type='button' class='btn' value='leave' onclick='leaveTeam(" + teamNums[i] + ")'></td></tr>"
|
||||
}
|
||||
} else {
|
||||
document.getElementById('teammem').innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
||||
}
|
||||
})
|
||||
})
|
||||
} else {
|
||||
alert("You don't have a correct join key. Please check it and try again.")
|
||||
console.log(dict)
|
||||
}
|
||||
} else {
|
||||
// doc.data() will be undefined in this case
|
||||
console.log("No such document!");
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function leaveTeam(tn) {
|
||||
user = firebase.auth().currentUser;
|
||||
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid)
|
||||
teamAssoc.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
list = doc.data()
|
||||
delete list[tn]
|
||||
firebase.firestore().collection("UserAssociations").doc(user.uid).set(list).then(function() {
|
||||
teamAssoc = firebase.firestore().collection('UserAssociations').doc(user.uid)
|
||||
teamAssoc.get().then(function(doc) {
|
||||
if (doc.exists) {
|
||||
list = doc.data()
|
||||
teamNums = Object.keys(list)
|
||||
document.getElementById('teammem').innerHTML = ""
|
||||
for (var i = 0; i < teamNums.length; i++) {
|
||||
document.getElementById('teammem').innerHTML += "<tr><td>" + teamNums[i] + "</td><td>" + list[teamNums[i]] + "</td>" + "<td><input type='button' class='btn' value='leave' onclick='leaveTeam(" + teamNums[i] + ")'></td></tr>"
|
||||
}
|
||||
} else {
|
||||
document.getElementById('teammem').innerHTML = "<tr><td>You are not part of any teams</td></tr>"
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
function signout() {
|
||||
var user = firebase.auth().currentUser;
|
||||
firebase.auth().signOut().then(
|
||||
window.location.href = '../');
|
||||
}
|
||||
|
||||
function deleteAccount() {
|
||||
try {
|
||||
firebase.auth().currentUser.delete().then(
|
||||
window.location.href = '../');
|
||||
} catch (error) {
|
||||
if (error.code == 'auth/requires-recent-login') {
|
||||
alert("Please sign in again to delete your account.")
|
||||
window.location.href = '../';
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user