-
Notifications
You must be signed in to change notification settings - Fork 0
/
scoutingxtreme.py
1293 lines (831 loc) · 43.6 KB
/
scoutingxtreme.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# To Do:
#
# Add data comparison and visual representation functionality
# Finish Data Editor
# Implement a working system log
# Add code modularity with easily modifiable functions or objects
# Add columns separator, column items and expanders to the Question Editor (columns)
############################################################################################################################################################################################################################################################################################
# Importing necessities
import streamlit as st
import os
import time
# Total rounds for the game
totalrounds = 0
# Modules that need to be installed
requiredmodules = [
"pandas",
"matplotlib",
"seaborn",
"minio"
]
requirements = ""
for module in requiredmodules:
requirements = requirements+f"\n{module}"
with open("requirements.txt", "w") as file:
file.write(requirements)
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sn
from io import StringIO
############################################################################################################################################################################################################################################################################################
# Program Start
import scoutingsrc as src
import scoutingbackup as backup
import questions
import cloudSave
st.set_page_config("Scouting XTREME", layout="wide", page_icon="icon.png", initial_sidebar_state="expanded")
pd.set_option("display.max_rows", None, "display.max_columns", None)
sidebar = st.sidebar
if ["pitq", "matchq", "pitdata", "matchdata", "admin"] not in st.session_state:
st.session_state.pitq = questions.pitq
st.session_state.matchq = questions.matchq
st.session_state.pitdata = src.pitdata
st.session_state.matchdata = src.matchdata
st.session_state.admin = False
def gitpull(repo: str = None):
if repo:
os.system(f"git pull {repo}")
else:
os.system("git pull")
def gitpush(savemsg: str ="Update GitHub"):
os.system("git add .")
os.system(f"git commit -m \"{savemsg}\"")
os.system("git push")
os.system("git pull")
def savequestions(pitq=st.session_state.pitq, matchq=st.session_state.matchq):
writequestions = f"""
pitq = {pitq}
matchq = {matchq}
"""
print(writequestions)
try:
with open("questions.py", "w") as file:
file.write(writequestions)
print("Questions Saved.")
except:
print("Questions could not be saved.")
def savedata(pitdata=st.session_state.pitdata, matchdata=st.session_state.matchdata):
writedata = f"""
pitdata = {pitdata}
matchdata = {matchdata}
"""
print(writedata)
try:
with open("scoutingsrc.py", "w") as file:
file.write(writedata)
print("Data Saved.")
except:
print("Data could not be saved.")
def toCSV(data):
return data.to_csv(index=False).encode()
if st.session_state.pitdata == {}:
for i in st.session_state.pitq:
st.session_state.pitdata[i] = []
if st.session_state.matchdata == {}:
for i in st.session_state.matchq:
st.session_state.matchdata[i] = []
hometext = {
}
access = sidebar.expander("**:red[Login as Admin...]**")
accesslvl = access.radio("**Access Level:**", ["User", "Admin"])
pages = {
"user": [":red[**Home**]", "**Add a Data Entry**", "**View Data**"],
"admin": [":red[**Home**]", "**Add a Data Entry**", "**View Data**", "**Data Comparison**", "**Edit Items**", "**Edit Data**"],
"full": [":red[**Home**]", "**Add a Data Entry**", "**View Data**", "**Data Comparison**", "**Visual Analysis**", "**Edit Items**", "**Edit Data**"]
}
if accesslvl == "Admin":
password = access.text_input("**Enter Admin Password:**", placeholder="Enter Password")
if password == st.secrets.adminpassword:
st.session_state.admin = True
if st.session_state.admin:
sect = sidebar.radio("Navigation:", pages['admin'])
else:
sect = sidebar.radio("Navigation:", pages['user'])
pitcols = []
for i in st.session_state.pitdata.keys():
pitcols.append(i)
matchcols = []
for i in st.session_state.matchdata.keys():
matchcols.append(i)
if sidebar.button("Refresh Page"):
pass
if sect == ":red[**Home**]":
st.title(":blue[Scouting]:red[XTREME]")
st.subheader("**Use the sidebar on the left to navigate the site.**")
st.write("---")
else:
st.title(sect)
st.write("---")
if sect == "**Add a Data Entry**":
datasect = st.radio("Which data would you like to add to?", ["Pit Data", "Match Data"])
inputs = []
if datasect == "Pit Data":
for q in st.session_state.pitq:
if st.session_state.pitq[q]["Type"] in ["Header", "Columns Separator", "Columns Item"]:
if st.session_state.pitq[q]["Type"] == "Header":
st.write("---")
st.header(q)
st.write("---")
else:
if st.session_state.pitq[q]["Type"] == "Number Input":
uin = str(st.number_input(f"**{q}**", st.session_state.pitq[q]["Minimum"], st.session_state.pitq[q]["Maximum"], step=1))
elif st.session_state.pitq[q]["Type"] == "Text Input":
uin = st.text_input(f"**{q}**", max_chars=st.session_state.pitq[q]["Character Limit"])
elif st.session_state.pitq[q]["Type"] == "Multiple Choice":
uin = st.radio(f"**{q}**", st.session_state.pitq[q]["Options"], index=st.session_state.pitq[q]["DefaultIndex"])
elif st.session_state.pitq[q]["Type"] == "Selection Box":
uin = st.selectbox(f"**{q}**", st.session_state.pitq[q]["Options"], index=st.session_state.pitq[q]["DefaultIndex"])
inputs.append(uin)
st.subheader("")
if st.button("Submit"):
for x, y in zip(st.session_state.pitdata.keys(), inputs):
st.session_state.pitdata[x].append(y)
write = f"""
pitdata = {st.session_state.pitdata}
matchdata = {st.session_state.matchdata}
"""
with open("scoutingsrc.py", "w") as file:
file.write(write)
else:
for q in st.session_state.matchq:
if st.session_state.matchq[q]["Type"] in ["Header", "Columns Separator", "Columns Item"]:
if st.session_state.matchq[q]["Type"] == "Header":
st.write("---")
st.header(q)
st.write("---")
else:
if st.session_state.matchq[q]["Type"] == "Number Input":
uin = str(st.number_input(f"**{q}**", st.session_state.matchq[q]["Minimum"], st.session_state.matchq[q]["Maximum"], step=1))
elif st.session_state.matchq[q]["Type"] == "Text Input":
uin = st.text_input(f"**{q}**", max_chars=st.session_state.matchq[q]["Character Limit"])
elif st.session_state.matchq[q]["Type"] == "Multiple Choice":
uin = st.radio(f"**{q}**", st.session_state.matchq[q]["Options"], index=st.session_state.matchq[q]["DefaultIndex"])
elif st.session_state.matchq[q]["Type"] == "Selection Box":
uin = st.selectbox(f"**{q}**", st.session_state.matchq[q]["Options"], index=st.session_state.matchq[q]["DefaultIndex"])
inputs.append(uin)
st.subheader("")
if st.button("Submit"):
for x, y in zip(st.session_state.matchdata.keys(), inputs):
st.session_state.matchdata[x].append(y)
write = f"""
pitdata = {st.session_state.pitdata}
matchdata = {st.session_state.matchdata}
"""
with open("scoutingsrc.py", "w") as file:
file.write(write)
elif sect == "**View Data**":
viewdata = sidebar.radio("Which data would you like to view?", ["Pit Data", "Match Data"])
st.header(viewdata)
if viewdata == "Pit Data":
data = st.session_state.pitdata
if viewdata == "Match Data":
data = st.session_state.matchdata
if type(data["Team No."]) == str:
teamnums = [data["Team No."]]
else:
teamnums = data["Team No."]
team = st.selectbox("Select a Team To View", pd.Series(["All"]+teamnums).unique())
ex1 = sidebar.expander("Selected Columns:")
st.write("---")
selectedcols = []
selectall = ex1.checkbox("Select All", value=True)
for i in data.keys():
if selectall:
checkbox = ex1.checkbox(i, value=True)
else:
checkbox = ex1.checkbox(i)
if checkbox:
selectedcols.append(i)
if type(data["Team No."]) == str:
teamnums = [data["Team No."]]
else:
teamnums = data["Team No."]
df = pd.DataFrame().from_dict(data)
rows = [i for i in range(len(df[selectedcols])) if df["Team No."][i] == team or team == "All"]
st.dataframe(df[selectedcols].iloc[rows], use_container_width=True, hide_index=True)
st.write("*Note: Double click on a cell to view all of its contents if it is cut off.*")
st.write("---")
c1, c2, c3, c4 = st.columns(4)
c1.write(f"**Teams Scouted:** {len(df['Team No.'].unique())}")
c2.write(f"**Total Entries:** {len(df)}")
c3.write(f"**Rounds Scouted:** {len(pd.Series(st.session_state.matchdata['Round No.']).unique())}")
c4.write(f"**Total Rounds:** {totalrounds}")
c1, c2 = st.columns(2)
ex1, ex2 = c1.expander("Download Data"), c2.expander("Import Data")
datatxt = str(df[selectedcols])
datacsv = toCSV(df[selectedcols])
ex1.subheader("Download Data")
filename = ex1.text_input("Data File Name (no extension):", "scoutingdata")
downloadtxt = ex1.download_button("Download as Text File", datatxt, filename+".txt")
downloadcsv = ex1.download_button("Download as CSV File", datacsv, filename+".csv")
ex2.subheader("Import CSV Data")
ex2.write("**FILE COLUMN NAMES MUST MATCH DATA COLUMN NAMES**")
datafiles = []
for file in os.listdir():
if '.csv' in file[-4:]:
datafiles.append(file)
userfile = ex2.file_uploader("")
if userfile != None:
if userfile.name[-4:] != ".csv":
st.subheader("This is not a valid .csv data file. Please use a different file.")
else:
strio = StringIO(userfile.getvalue().decode("utf-8"))
with open(userfile.name, "w") as file:
file.write(strio.read())
dataset = ex2.radio("**Import To:**", ["Pit Data", "Match Data"])
mode = ex2.radio("**Do you want to add to or replace the existing data?**", ["Add Data", "Replace Data"])
newdata = pd.read_csv(userfile.name).to_dict()
for col in newdata:
coldata = []
for row in newdata[col]:
coldata.append(str(newdata[col][row]))
newdata[col] = coldata
if ex2.button("Import Data"):
if mode == "Replace Data":
if dataset == "Pit Data":
st.session_state.pitdata = newdata
if dataset == "Match Data":
st.session_state.matchdata = newdata
if mode == "Add Data":
if dataset == "Pit Data":
for col in newdata:
st.session_state.pitdata[col] += newdata[col]
if dataset == "Match Data":
for col in newdata:
st.session_state.matchdata[col] += newdata[col]
if downloadtxt:
c1.write(f"**Successfully downloaded data as {filename}.txt**")
if downloadcsv:
c1.write(f"**Successfully downloaded data as {filename}.txt**")
elif sect == "**Data Comparison**":
viewdata = sidebar.radio("Which data would you like to analyze?", ["Pit Data", "Match Data"])
criteria = sidebar.expander("**Data Selection**")
selectedcols = []
criteria.write("**What data do you want to see?**")
with st.expander(f"**{viewdata}**"):
st.header(viewdata)
if viewdata == "Pit Data":
data = st.session_state.pitdata
dataq = st.session_state.pitq
if viewdata == "Match Data":
data = st.session_state.matchdata
dataq = st.session_state.matchq
for col in data:
if "Text Input" != dataq[col]["Type"] and criteria.checkbox(col, True):
selectedcols.append(col)
df = pd.DataFrame().from_dict(data)
st.dataframe(df[selectedcols], use_container_width=True, hide_index=True)
compareval = criteria.radio("**What data do you want to compare by?**", [col for col in df.columns if "Text Input" != dataq[col]["Type"]])
viewmode = criteria.radio("**Viewing Mode:**", ["Occurrences", "Percentages"])
showavg = criteria.checkbox("Show Averages For Numerical Values", True)
st.subheader(f"Comparison By `{compareval}`")
c1, c2 = st.columns(2)
val1 = c1.selectbox(f"Value 1", df[compareval].unique())
for col in [col for col in selectedcols if col not in (compareval, "Team No.", "Round No.")]:
write = f"`{col}`: `"
if dataq[col]["Type"] == "Number Input" and showavg:
avg = sum([float(val) for val in data[col]])/len(data[col])
write += f"{avg} AVG."
c1.write(write+"`")
else:
items = {}
for val in df[col].unique():
items[val] = 0
for item in range(len(data[col])):
if data[compareval][item] == val1:
items[data[col][item]] += 1
totalvals = 0
for val in items.values():
totalvals += val
for item, val in zip(items, items.values()):
if viewmode == "Percentages":
write += f"{item}: {round(val/totalvals*100, 2)}%, "
else:
write += f"{item}: {val}, "
c1.write(write[:-2]+"`")
val2 = c2.selectbox(f"Value 2", df[compareval].unique())
for col in [col for col in selectedcols if col not in (compareval, "Team No.", "Round No.")]:
write = f"`{col}`: `"
if dataq[col]["Type"] == "Number Input" and showavg:
avg = sum([float(val) for val in data[col]])/len(data[col])
write += f"{avg} AVG."
c2.write(write+"`")
else:
items = {}
for val in df[col].unique():
items[val] = 0
for item in range(len(data[col])):
if data[compareval][item] == val2:
items[data[col][item]] += 1
totalvals = 0
for val in items.values():
totalvals += val
for item, val in zip(items, items.values()):
if viewmode == "Percentages":
write += f"{item}: {round(val/totalvals*100, 2)}%, "
else:
write += f"{item}: {val}, "
c2.write(write[:-2]+"`")
elif sect == "**Visual Analysis**":
st.header("COMING SOON")
'''
plt.style.use('seaborn-dark-palette')
opts = sidebar.expander("Options")
stat = opts.selectbox("Select A Data Catagory:", [i for i in cols if i not in ["Match No.", "Team No.", "Extra Notes"]])
numofteams = opts.number_input("How many teams do you want to show?", 1, 4)
teams = []
st.title(f"Shown Statistic: *{stat}*")
c1, c2 = st.columns(2)
for t in range(numofteams):
team = opts.selectbox(f"Team {t+1}:", [i for i in pd.Series(data["Team No."]).unique() if i not in teams])
teams.append(team)
cats = pd.Series(data[stat]).unique()
statdata = [data[stat][i] for i in range(len(data[stat])) if data["Team No."][i] == team]
piedata = [0 for i in cats]
datainc = []
for x in range(len(cats)):
for y in statdata:
if y == cats[x]:
piedata[x] += 1
if piedata[x] > 0:
datainc.append(cats[x])
if t % 2 == 0:
c1.write("---")
tc1, tc2, tc3 = c1.columns(3)
tc2.title(f"{team}")
fig = plt.figure(figsize=(15, 3), frameon=False, edgecolor="white")
plt.pie([i for i in piedata if i > 0], labels=[i for i in cats if i in datainc], explode=[0.05 for i in range(len(datainc))], autopct="%.2f")
c1.pyplot(fig)
else:
c2.write("---")
tc1, tc2, tc3 = c2.columns(3)
tc2.title(f"{team}")
fig = plt.figure(figsize=(15, 3), frameon=False, edgecolor="white")
plt.pie([i for i in piedata if i > 0], labels=[i for i in cats if i in datainc], explode=[0.05 for i in range(len(datainc))], autopct="%.2f")
c2.pyplot(fig)
'''
elif sect == "**Edit Items**":
c1, c2 = st.columns(2)
ex1 = c1.expander("Current Pit Items")
if len(st.session_state.pitq) == 0:
ex1.header("No Pit Items Added Yet.")
else:
ex1.header("Current Pit Items")
for m in st.session_state.pitq:
items = [i for i in st.session_state.pitq.keys()]
num = items.index(m)
if st.session_state.pitq[m]["Type"] == "Header":
ex1.subheader(f":blue[{num+1}. {m}] - :red[Header]")
else:
ex1.subheader(f"{num+1}. {m}")
for x, y in st.session_state.pitq[m].items():
if x == "Options":
msg = f" - **{x}**: "
for i in st.session_state.pitq[m][x]:
msg += f"{i}, "
msg = msg[:-2]
ex1.write(msg)
elif st.session_state.pitq[m]["Type"] != "Header":
ex1.write(f" - **{x}**: {y}")
ex1.write("---")
ex2 = c2.expander("Current Match Items")
if len(st.session_state.matchq) == 0:
ex2.header("No Match Items Added Yet.")
else:
ex2.header("Current Match Items")
for m in st.session_state.matchq:
items = [i for i in st.session_state.matchq.keys()]
num = items.index(m)
if st.session_state.matchq[m]["Type"] == "Header":
ex2.subheader(f":blue[{num+1}. {m}] - :red[Header]")
else:
ex2.subheader(f"{num+1}. {m}")
for x, y in st.session_state.matchq[m].items():
if x == "Options":
msg = f" - **{x}**: "
for i in st.session_state.matchq[m][x]:
msg += f"{i}, "
msg = msg[:-2]
ex2.write(msg)
elif st.session_state.matchq[m]["Type"] != "Header":
ex2.write(f" - **{x}**: {y}")
ex2.write("---")
qsect = sidebar.radio("**Which set of questions would you like to edit?**", ["Pit", "Match"])
qedit = sidebar.radio("**What would you like to do?**", ["Add a question", "Remove a question", "Insert a question into a specific position"])
if qedit == "Remove a question":
if qsect == "Pit":
st.write("**Note: Removing items will remove ALL DATA associated with that item. The first 2 items cannot be removed, as they are necessary for the software to function, and are universal questions.**")
if len(st.session_state.pitq) == 0:
st.header("There are no pit questions yet.")
else:
try:
itemnum = st.number_input("**Enter the number of the item you'd like to remove:**", 3, len(st.session_state.pitq), step=1)-1
items = [i for i in st.session_state.pitq]
if sidebar.button("Remove Item"):
if items[itemnum] in st.session_state.pitdata:
del st.session_state.pitdata[items[itemnum]]
if items[itemnum] in st.session_state.pitq:
del st.session_state.pitq[items[itemnum]]
savedata()
savequestions()
sidebar.subheader("Item Removed Successfully.")
except:
st.write(f"**There are no existing items that can be removed in the {qsect} Data.**")
if qsect == "Match":
st.write("**Note: Removing items will remove ALL DATA associated with that item. The first 3 items cannot be removed, as they are necessary for the software to function, and are universal questions.**")
try:
itemnum = st.number_input("**Enter the number of the item you'd like to remove:**", 4, len(st.session_state.matchq), step=1)-1
items = [i for i in st.session_state.matchq]
if sidebar.button("Remove Item"):
if items[itemnum] in st.session_state.matchdata:
del st.session_state.matchdata[items[itemnum]]
if items[itemnum] in st.session_state.matchq:
del st.session_state.matchq[items[itemnum]]
savedata()
savequestions()
sidebar.subheader("Item Removed Successfully.")
except:
st.write(f"**There are no existing items that can be removed in the {qsect} Data.**")
elif qedit == "Insert a question into a specific position":
st.write("**Note: Inserting a question in a certain position will cause the question in its spot (as well as those after it) to be pushed one position forward (towards the end).**")
pitqnames = [q for q in st.session_state.pitq]
matchqnames = [q for q in st.session_state.matchq]
if qsect == "Pit":
if len(st.session_state.pitq) == 0:
st.subheader(f"No {qsect} Items Added Yet.")
qtypes = ["Header", "Selection Box", "Multiple Choice", "Number Input", "Text Input"]
qtype = c1.selectbox("**What type of element would you like to add?**", qtypes)
if qtype == "Header":
qname = c2.text_input("**What should the header say?**")
pos = st.number_input("What position do you want to insert this at?", step=1, min_value=1, max_value=len(st.session_state.pitq))
if sidebar.button("Add Item"):
newq = {"Type": qtype}
tempq = {}
endq = {}
for q in pitqnames[:pos]:
tempq[q] = st.session_state.pitq[q]
for q in pitqnames[pos:]:
endq[q] = st.session_state.pitq[q]
tempq[qname] = newq
st.session_state.pitq = tempq
for q in endq.keys():
st.session_state.pitq[q] = endq[q]
savedata()
savequestions()
else:
qname = c2.text_input("**What should this question ask?**")
additem = sidebar.button("Add Item")
if qtype in "Text Input":
if additem:
newq = {"Type": qtype, "Character Limit": 200}
elif qtype in "Number Input":
qmin = c1.number_input("**Minimum Value**", step=1)
qmax = c2.number_input("**Maximum Value**", step=1)
if additem:
newq = {"Type": qtype, "Minimum": qmin, "Maximum": qmax}
else:
qoptsnum = c1.number_input("**How many options should this question have?**", min_value=2, step=1)
qdefindex = c2.number_input("**Enter the number of the option that this question should default to:**", min_value=1, max_value=qoptsnum, step=1)-1
qopts = []
if qoptsnum > 0:
for q in range(qoptsnum):
qopts.append(st.text_input(f"Option {q+1}:"))
newq = {"Type": qtype, "Options": qopts, "DefaultIndex": qdefindex}
pos = st.number_input("What position do you want to insert this at?", step=1, min_value=1, max_value=len(st.session_state.pitq))-1
if additem:
newcol = ["N/A" for i in range(len(st.session_state.pitdata['Team No.']))]
tempdata = {}
enddata = {}
for q in pitcols[:pos]:
tempdata[q] = st.session_state.pitdata[q]
for q in pitcols[pos:]:
enddata[q] = st.session_state.pitdata[q]
tempdata[qname] = newcol
st.session_state.pitdata = tempdata
for q in enddata.keys():
st.session_state.pitdata[q] = enddata[q]
tempq = {}
endq = {}
for q in pitqnames[:pos]:
tempq[q] = st.session_state.pitq[q]
for q in pitqnames[pos:]:
endq[q] = st.session_state.pitq[q]
tempq[qname] = newq
st.session_state.pitq = tempq
for q in endq.keys():
st.session_state.pitq[q] = endq[q]
savedata()
savequestions()
if qsect == "Match":
if len(st.session_state.matchq) == 0:
st.subheader(f"No {qsect} Items Added Yet.")
qtypes = ["Header", "Selection Box", "Multiple Choice", "Number Input", "Text Input"]
qtype = c1.selectbox("**What type of element would you like to add?**", qtypes)
if qtype == "Header":
qname = c2.text_input("**What should the header say?**")
pos = st.number_input("What position do you want to insert this at?", step=1, min_value=1, max_value=len(st.session_state.matchq))
if sidebar.button("Add Item"):
newq = {"Type": qtype}
tempq = {}
endq = {}
for q in matchqnames[:pos]:
tempq[q] = st.session_state.matchq[q]
for q in matchqnames[pos:]:
endq[q] = st.session_state.matchq[q]
tempq[qname] = newq
st.session_state.matchq = tempq
for q in endq.keys():
st.session_state.matchq[q] = endq[q]
savedata()
savequestions()
else:
qname = c2.text_input("**What should this question ask?**")
additem = sidebar.button("Add Item")
if qtype in "Text Input":
if additem:
newq = {"Type": qtype, "Character Limit": 200}
elif qtype in "Number Input":
qmin = c1.number_input("**Minimum Value**", step=1)
qmax = c2.number_input("**Maximum Value**", step=1)
if additem:
newq = {"Type": qtype, "Minimum": qmin, "Maximum": qmax}
else:
qoptsnum = c1.number_input("**How many options should this question have?**", 2, step=1)
qdefindex = c2.number_input("**Enter the number of the option that this question should default to:**", min_value=1, max_value=qoptsnum, step=1)-1
qopts = []
if qoptsnum > 0:
for q in range(qoptsnum):
qopts.append(st.text_input(f"Option {q+1}:"))
newq = {"Type": qtype, "Options": qopts, "DefaultIndex": qdefindex}
pos = st.number_input("What position do you want to insert this at?", step=1, min_value=1, max_value=len(st.session_state.matchq))-1
if additem:
newcol = ["N/A" for i in range(len(st.session_state.matchdata['Team No.']))]
tempdata = {}
enddata = {}
for q in matchcols[:pos]:
tempdata[q] = st.session_state.matchdata[q]
for q in matchcols[pos:]:
enddata[q] = st.session_state.matchdata[q]
tempdata[qname] = newcol
st.session_state.matchdata = tempdata
for q in enddata.keys():
st.session_state.matchdata[q] = enddata[q]
tempq = {}
endq = {}
for q in matchqnames[:pos]:
tempq[q] = st.session_state.matchq[q]
for q in matchqnames[pos:]:
endq[q] = st.session_state.matchq[q]
tempq[qname] = newq
st.session_state.matchq = tempq
for q in endq.keys():
st.session_state.matchq[q] = endq[q]
savedata()
savequestions()
else:
additem = sidebar.button("Add Item")
if qsect == "Pit":
if len(st.session_state.pitq) == 0:
st.subheader(f"No {qsect} Items Added Yet.")
qtypes = ["Header", "Selection Box", "Multiple Choice", "Number Input", "Text Input"]
qtype = c1.selectbox("**What type of element would you like to add?**", qtypes)
if qtype == "Header":
qname = c2.text_input("**What should the header say?**")
if additem:
st.session_state.pitq[qname] = {"Type": qtype}
savedata()
savequestions()
else:
qname = c2.text_input("**What should this question ask?**")
if qtype in "Text Input":
if additem:
st.session_state.pitq[qname] = {"Type": qtype, "Character Limit": 200}
newcol = ["N/A" for i in range(len(st.session_state.pitdata['Team No.']))]
st.session_state.pitdata[qname] = newcol
savedata()
savequestions()
elif qtype in "Number Input":
qmin = c1.number_input("**Minimum Value**", step=1)
qmax = c2.number_input("**Maximum Value**", step=1)
if additem:
st.session_state.pitq[qname] = {"Type": qtype, "Minimum": qmin, "Maximum": qmax}
newcol = ["N/A" for i in range(len(st.session_state.pitdata['Team No.']))]
st.session_state.pitdata[qname] = newcol
savedata()
savequestions()
else:
qoptsnum = c1.number_input("**How many options should this question have?**", 2, step=1)
qdefindex = c2.number_input("**Enter the number of the option that this question should default to:**", min_value=1, max_value=qoptsnum, step=1)-1
qopts = []
if qoptsnum > 0:
for q in range(qoptsnum):
qopts.append(st.text_input(f"Option {q+1}:"))
if additem:
st.session_state.pitq[qname] = {"Type": qtype, "Options": qopts, "DefaultIndex": qdefindex}
newcol = ["N/A" for i in range(len(st.session_state.pitdata['Team No.']))]
st.session_state.pitdata[qname] = newcol
savedata()
savequestions()
if qsect == "Match":
if len(st.session_state.matchq) == 0:
st.subheader(f"No {qsect} Items Added Yet.")