Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server based reader + New data points #5

Merged
merged 32 commits into from
May 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8adc5c1
Added what match the maximum performance happened in.
ajayyy Apr 17, 2019
daf8a06
Added ability to get striaght to the raw data when clicking on the su…
ajayyy Apr 19, 2019
fe75397
Added ability to get what position a robot is in for averages of stat…
ajayyy Apr 21, 2019
d18149a
Added the top # indicator for all items (extra details as well).
ajayyy Apr 21, 2019
7c4df57
Fixed maximum performance in match indicator being off by one match.
ajayyy Apr 21, 2019
047d7b7
Added a top # indicator for maximum performance as well.
ajayyy Apr 23, 2019
3df6b72
Created the first server version of the reader.
ajayyy Apr 24, 2019
d53f513
Added basic scouting data uploading system to the server
ajayyy Apr 25, 2019
d544c5d
Made uploading require a password and only allow .csv files
ajayyy Apr 25, 2019
fd05962
Moved upload to another page
ajayyy Apr 25, 2019
15f5995
Added a multi view page
ajayyy Apr 25, 2019
3995b71
Added multi robot view on the main page
ajayyy Apr 25, 2019
5aa6dba
Closed form tags properly.
ajayyy Apr 25, 2019
524b79c
Published the data to the web
ajayyy Apr 25, 2019
7a0f2c9
Added get data files endpoint
ajayyy Apr 25, 2019
8bbc415
Fixed folder not being specified
ajayyy Apr 25, 2019
ec0c911
Made the desktop app be able to pull periodically from the server
ajayyy Apr 25, 2019
2b68987
Made data publish on the right endpoint
ajayyy Apr 25, 2019
1236e95
Added endpoint to get list of photos
ajayyy Apr 25, 2019
5157bb3
Added a try catch
ajayyy Apr 25, 2019
8d6ba2e
Added back accidentally removed getDataForLabel.
ajayyy Apr 25, 2019
b4a2712
Added missing semi colon
ajayyy Apr 25, 2019
c155829
Made the data reload when data is uploaded
ajayyy Apr 26, 2019
34aa8b4
Increase file size limit
ajayyy Apr 26, 2019
752e007
Made the window title contain the robot number
ajayyy Apr 26, 2019
2a05ae8
Raised file size limit
ajayyy Apr 26, 2019
691d87e
Made the upload success and fail screen bring you back to the upload …
ajayyy Apr 26, 2019
a171a92
Added more try catches
ajayyy Apr 26, 2019
aaa2a13
Made an error during reading not crash the whole program.
ajayyy Apr 26, 2019
c8a1902
Adde timeout to reload data after upload
ajayyy Apr 26, 2019
1e0527a
Fixed load data not resetting the right thing
ajayyy Apr 26, 2019
19fae05
Made password load from config file instead of being hardcoded
ajayyy May 1, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ dist
data

photos
build
build

certificates
3 changes: 3 additions & 0 deletions failed.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<h1> Upload Failed!</h1>

<a href="/upload"><h2>Back</h2></a>
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
<!–– Button to view data about the current robot !––>
<button onclick="loadData()">View Data</button>

<button id="downloadData" onclick="downloadData()" style="display: none">Download Data From The Internet</button>

<form action="/multiview" style="float: right;">
<input type="submit" value="Multi Robot View"/>
</form>

<!–– What match this data was last updated (latest match of data) !––>
<span id="lastUpdated">

Expand All @@ -22,7 +28,7 @@ <h3>Overall (click to hide/show)</h3>

<div id="overallSummaryContainer" class="dataBox">
<p>
<img id="robot" width="48%" style="float: right; margin-right: 15;"/>
<img id="robot" width="38%" style="float: right; margin-right: 15;"/>
<div id="overallSummary" class="summary">

</div>
Expand Down
Loading