mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-12-28 02:09:08 +00:00
website for peoria
This commit is contained in:
parent
e498f4275e
commit
06be451456
@ -69,7 +69,7 @@ function changeTeam(teamNum) {
|
|||||||
}
|
}
|
||||||
}).then(function() {
|
}).then(function() {
|
||||||
if (currentComp != null) {
|
if (currentComp != null) {
|
||||||
matches = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('scoutsAndSchedule');
|
matches = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('scoutsAndSchedule');
|
||||||
matches.get().then(function(qs) {
|
matches.get().then(function(qs) {
|
||||||
qs.forEach(function(dc) {
|
qs.forEach(function(dc) {
|
||||||
//regex search!
|
//regex search!
|
||||||
@ -98,7 +98,7 @@ function cmatch(matchName) {
|
|||||||
}
|
}
|
||||||
}).then(function() {
|
}).then(function() {
|
||||||
if (currentComp != null) {
|
if (currentComp != null) {
|
||||||
match = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('scoutsAndSchedule').doc('match-' + matchName)
|
match = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('scoutsAndSchedule').doc('match-' + matchName)
|
||||||
match.get().then(function(doc) {
|
match.get().then(function(doc) {
|
||||||
if (doc.exists) {
|
if (doc.exists) {
|
||||||
data = doc.data()
|
data = doc.data()
|
||||||
@ -136,7 +136,7 @@ function cseries(seriesName) {
|
|||||||
if (seriesName == "quantitative") {
|
if (seriesName == "quantitative") {
|
||||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Sandstorm' + "</h3>";
|
document.getElementById('FormData').innerHTML += "<h3>" + 'Sandstorm' + "</h3>";
|
||||||
document.getElementById('FormData').innerHTML += "<div id='repsec1'>";
|
document.getElementById('FormData').innerHTML += "<div id='repsec1'>";
|
||||||
var ss = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuliding').doc('quantitativeSandstorm');
|
var ss = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuilding').doc('quantitativeSandstorm');
|
||||||
ss.get().then(function(doc) {
|
ss.get().then(function(doc) {
|
||||||
if (doc.exists) {
|
if (doc.exists) {
|
||||||
processAndAppendReturn(doc.data())
|
processAndAppendReturn(doc.data())
|
||||||
@ -145,7 +145,7 @@ function cseries(seriesName) {
|
|||||||
}).then(function() {
|
}).then(function() {
|
||||||
document.getElementById('FormData').innerHTML += "<h3>" + 'TeleOp' + "</h3>";
|
document.getElementById('FormData').innerHTML += "<h3>" + 'TeleOp' + "</h3>";
|
||||||
document.getElementById('FormData').innerHTML += "<div id='repsec2'>";
|
document.getElementById('FormData').innerHTML += "<div id='repsec2'>";
|
||||||
var to = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuliding').doc('quantitativeTeleop');
|
var to = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuilding').doc('quantitativeTeleop');
|
||||||
to.get().then(function(doc) {
|
to.get().then(function(doc) {
|
||||||
if (doc.exists) {
|
if (doc.exists) {
|
||||||
processAndAppendReturn(doc.data())
|
processAndAppendReturn(doc.data())
|
||||||
@ -154,7 +154,7 @@ function cseries(seriesName) {
|
|||||||
}).then(function() {
|
}).then(function() {
|
||||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Cycle Times' + "</h3>";
|
document.getElementById('FormData').innerHTML += "<h3>" + 'Cycle Times' + "</h3>";
|
||||||
document.getElementById('FormData').innerHTML += "<div id='repsec3'>";
|
document.getElementById('FormData').innerHTML += "<div id='repsec3'>";
|
||||||
var cyc = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuliding').doc('quantitativeCycleTimes');
|
var cyc = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuilding').doc('quantitativeCycleTimes');
|
||||||
cyc.get().then(function(doc) {
|
cyc.get().then(function(doc) {
|
||||||
if (doc.exists) {
|
if (doc.exists) {
|
||||||
processAndAppendReturn(doc.data())
|
processAndAppendReturn(doc.data())
|
||||||
@ -166,7 +166,7 @@ function cseries(seriesName) {
|
|||||||
} else if (seriesName = "qualitative") {
|
} else if (seriesName = "qualitative") {
|
||||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Sandstorm' + "</h3>";
|
document.getElementById('FormData').innerHTML += "<h3>" + 'Sandstorm' + "</h3>";
|
||||||
document.getElementById('FormData').innerHTML += "<div id='repsec1'>";
|
document.getElementById('FormData').innerHTML += "<div id='repsec1'>";
|
||||||
var ss = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuliding').doc('qualitativeSandstorm');
|
var ss = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuilding').doc('qualitativeSandstorm');
|
||||||
ss.get().then(function(doc) {
|
ss.get().then(function(doc) {
|
||||||
if (doc.exists) {
|
if (doc.exists) {
|
||||||
processAndAppendReturn(doc.data())
|
processAndAppendReturn(doc.data())
|
||||||
@ -175,7 +175,7 @@ function cseries(seriesName) {
|
|||||||
}).then(function() {
|
}).then(function() {
|
||||||
document.getElementById('FormData').innerHTML += "<h3>" + 'TeleOp' + "</h3>";
|
document.getElementById('FormData').innerHTML += "<h3>" + 'TeleOp' + "</h3>";
|
||||||
document.getElementById('FormData').innerHTML += "<div id='repsec2'>";
|
document.getElementById('FormData').innerHTML += "<div id='repsec2'>";
|
||||||
var to = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuliding').doc('qualitativeTeleop');
|
var to = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuilding').doc('qualitativeTeleop');
|
||||||
to.get().then(function(doc) {
|
to.get().then(function(doc) {
|
||||||
if (doc.exists) {
|
if (doc.exists) {
|
||||||
processAndAppendReturn(doc.data())
|
processAndAppendReturn(doc.data())
|
||||||
@ -184,7 +184,7 @@ function cseries(seriesName) {
|
|||||||
}).then(function() {
|
}).then(function() {
|
||||||
document.getElementById('FormData').innerHTML += "<h3>" + 'Strategy' + "</h3>";
|
document.getElementById('FormData').innerHTML += "<h3>" + 'Strategy' + "</h3>";
|
||||||
document.getElementById('FormData').innerHTML += "<div id='repsec3'>";
|
document.getElementById('FormData').innerHTML += "<div id='repsec3'>";
|
||||||
var strat = firebase.firestore().collection('appBuliding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuliding').doc('qualitativeStrategy');
|
var strat = firebase.firestore().collection('appBuilding').doc('team-' + teamNum).collection('competitions').doc(currentComp).collection('appBuilding').doc('qualitativeStrategy');
|
||||||
strat.get().then(function(doc) {
|
strat.get().then(function(doc) {
|
||||||
if (doc.exists) {
|
if (doc.exists) {
|
||||||
processAndAppendReturn(doc.data())
|
processAndAppendReturn(doc.data())
|
||||||
@ -239,7 +239,7 @@ function processAndAppendReturn(data) {
|
|||||||
function updateForm(locString, teamNum, competition) {
|
function updateForm(locString, teamNum, competition) {
|
||||||
seriesList = [];
|
seriesList = [];
|
||||||
document.getElementById('FormData').innerHTML = ""
|
document.getElementById('FormData').innerHTML = ""
|
||||||
loc = firebase.firestore().collection('appBuliding').doc("team-" + teamNum).collection('competitions').doc(competition).collection(lastWord(locString));
|
loc = firebase.firestore().collection('appBuilding').doc("team-" + teamNum).collection('competitions').doc(competition).collection(lastWord(locString));
|
||||||
loc.get().then(function(docs) {
|
loc.get().then(function(docs) {
|
||||||
docs.forEach(function(doc) {
|
docs.forEach(function(doc) {
|
||||||
seriesList.push(doc.data());
|
seriesList.push(doc.data());
|
||||||
|
Loading…
Reference in New Issue
Block a user