forked from thezyrie/promptly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStepper.js
526 lines (495 loc) · 23.1 KB
/
Stepper.js
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
import * as React from 'react';
import Box from '@mui/material/Box';
import Stepper from '@mui/material/Stepper';
import Step from '@mui/material/Step';
import StepLabel from '@mui/material/StepLabel';
import Button from '@mui/material/Button';
import Typography from '@mui/material/Typography';
import ChatGPT from './ChatGPT';
import repeat from './visuals/repeat.png';
import initials from './visuals/initials.png';
import zeros from './visuals/zeros.png';
import tween from './visuals/tween.png';
import judge from './visuals/judge.png';
import scramble from './visuals/scramble.png';
import arrange from './visuals/arrange.png';
import speak from './visuals/speak.png';
import InputHello from './visuals/InputHello.gif';
import age from './visuals/age.gif';
import judgy from './visuals/judgy.gif';
import averageList from './visuals/averageList.png';
import sumEven from './visuals/sumEven.png';
import lastZero from './visuals/lastZero.png';
import simplifiedQueen from './visuals/simplifiedQueen.png';
import leafEater from './visuals/leafEater.png';
import fullQueen from './visuals/fullQueen.png';
import phoneBook from './visuals/phoneBook.png';
import keysInRange from './visuals/keysInRange.png';
import rubiks from './visuals/rubiks.png';
import salary from './visuals/salary.png';
import morse from './visuals/morse.png';
import pretest1 from './visuals/pre_test_prob_1.png';
import pretest2 from './visuals/pre_test_prob_2.png';
import pretest3 from './visuals/pre_test_prob_3.png';
import pretest4 from './visuals/pre_test_prob_4.png';
import pretest5 from './visuals/pre_test_prob_5.png';
import pretest6 from './visuals/pre_test_prob_6.png';
import posttest1 from './visuals/post_test_prob_1.png';
import posttest2 from './visuals/post_test_prob_2.png';
import posttest3 from './visuals/post_test_prob_3.png';
import posttest4 from './visuals/post_test_prob_4.png';
import posttest5 from './visuals/post_test_prob_5.png';
import posttest6 from './visuals/post_test_prob_6.png';
import practest1 from './visuals/practice_prob_1.png';
import practest2 from './visuals/practice_prob_2.png';
import practest3 from './visuals/practice_prob_3.png';
import practest4 from './visuals/practice_prob_4.png';
import practest5 from './visuals/practice_prob_5.png';
import { getFunctions, httpsCallable } from "firebase/functions";
import { getApp } from "firebase/app";
import Autocomplete from '@mui/material/Autocomplete';
import TextField from '@mui/material/TextField';
import { useTranslation } from 'react-i18next';
import { LinearProgress } from '@mui/material';
const languages = [
{ code: 'en', name: 'English' },
{ code: 'pt', name: 'Portuguese' },
{ code: 'ar', name: 'Arabic' },
// Add more languages as needed
];
export default function ExerciseStepper({ currUser, group }) {
const { i18n } = useTranslation();
const { t } = useTranslation();
const [activeStep, setActiveStep] = React.useState(0);
const [currClass, setcurrClass] = React.useState(null);
const [error, setError] = React.useState(null);
const [loading, setLoading] = React.useState(false);
const [completedSteps, setCompletedSteps] = React.useState([false, false, false]);
let codingLanguage = 'Python'
let steps = [t("Class Registration"), t("Exercise #1"), t("Exercise #2"), t("Exercise #3")];
//let options = ['ACU CS 120 (Programming 1)', 'COMPSCI 747', 'Java']
let options = ['Practice Problems: Pilot Class - Intro to Coding', 'Prettest: Pilot Class - Intro to Coding', 'Posttest: Pilot Class - Intro to Coding'];// 'COMPSCI 101 Lab 10', 'COMPSCI 101 Lab 11', 'COMPSCI 101 Lab 12'];
const [selectedLanguage, setSelectedLanguage] = React.useState({ code: 'en', name: 'English' });
if (window.location.href.includes('sigcse')) {
options = [
'Intro Python Functions Part 1',
'Intro Python Functions Part 2',
'Intro Python Dictionary +',
'Intro Python Scripting',
'Intro C - simple',
'Intro C - advanced'
]
}
if (currClass == '#2: PA2 (Programação e Algoritmos 2 - Programming and Algorithms 2)'
|| currClass == 'Intro Python Dictionary +'
|| currClass == 'Practice Problems: Pilot Class - Intro to Coding'
) {
steps = [t("Class Registration"), t("Exercise #1"), t("Exercise #2"), t("Exercise #3"), t("Exercise #4"), t("Exercise #5")];
// setCompletedSteps([false, false, false, false, false]);
}
if (currClass === 'Prettest: Pilot Class - Intro to Coding'
|| currClass === 'Posttest: Pilot Class - Intro to Coding'
) {
steps = [t("Class Registration"), t("Exercise #1"), t("Exercise #2"), t("Exercise #3"), t("Exercise #4"), t("Exercise #5"), t("Exercise #6")];
// setCompletedSteps([false, false, false, false, false, false]);
// console.log('fml', completedSteps);
}
if (currClass == 'COMPSCI 747') {
steps = [t("Class Registration"), t("Exercise #1"), t("Exercise #2"), t("Exercise #3"), t("Exercise #4"), t("Exercise #5"), "Exercise #6", "Exercise #7", "Exercise #8"];
}
function Download() {
const [error, setError] = React.useState();
const [loading, setLoading] = React.useState(false);
const handleDownload = async () => {
setLoading(true);
try {
const functions = getFunctions(getApp());
const callableReturnMessage = httpsCallable(functions, 'downloadDataAsJson');
console.log(currUser);
callableReturnMessage({ user: currUser.uid, class: currClass })
.then((response) => {
const data = response;
const json = JSON.stringify(data);
const blob = new Blob([json], { type: 'application/json' });
const timestamp = new Date().toISOString();
const nospaceclass = currClass.replace(/\s+/g, '');
const filename = `${nospaceclass}-${timestamp}.json`;
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
})
.catch((error) => {
console.log(error);
setError(error);
})
.finally(() => {
setLoading(false);
});
} catch (e) {
console.log(e);
setLoading(false);
}
};
const handleSuccessDownload = async () => {
setLoading(true);
try {
const functions = getFunctions(getApp());
const callableReturnMessage = httpsCallable(functions, 'downloadSuccessAsJson');
console.log(currUser);
callableReturnMessage({ user: currUser.uid, class: currClass })
.then((response) => {
const data = response;
const json = JSON.stringify(data);
const blob = new Blob([json], { type: 'application/json' });
const timestamp = new Date().toISOString();
const nospaceclass = currClass.replace(/\s+/g, '');
const filename = `${nospaceclass}-${timestamp}.json`;
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
})
.catch((error) => {
console.log(error);
setError(error);
})
.finally(() => {
setLoading(false);
});
} catch (e) {
console.log(e);
setLoading(false);
}
};
if (exclusivity.includes(currUser.email)) {
return (<React.Fragment>
<div>
{!error && !loading && <Button loading={loading} onClick={handleDownload}>Download JSON</Button>}
{!error && loading && <p>Fetching data, please wait</p>}
{!error && !loading && <Button loading={loading} onClick={handleSuccessDownload}>Download Success Record</Button>}
{error && <p>Something went wrong while fetching the data, please try again later</p>}
</div>
</React.Fragment>
);
}
};
function Exercise() {
const [passed, setPassed] = React.useState(false);
let file = null;
let animation = null;
if (currClass == 'Prettest: Pilot Class - Intro to Coding') {
if (activeStep === 1) {
file = pretest1;
} else if (activeStep === 2) {
file = pretest2;
} else if (activeStep === 3) {
file = pretest3;
} else if (activeStep === 4) {
file = pretest4;
} else if (activeStep === 5) {
file = pretest5;
} else if (activeStep === 6) {
file = pretest6;
}
}
if (currClass == 'Posttest: Pilot Class - Intro to Coding') {
if (activeStep === 1) {
file = posttest1;
} else if (activeStep === 2) {
file = posttest2;
} else if (activeStep === 3) {
file = posttest3;
} else if (activeStep === 4) {
file = posttest4;
} else if (activeStep === 5) {
file = posttest5;
} else if (activeStep === 6) {
file = posttest6;
}
}
if (currClass == 'Practice Problems: Pilot Class - Intro to Coding') {
if (activeStep === 5) {
file = practest1;
} else if (activeStep === 1) {
file = practest2;
} else if (activeStep === 2) {
file = practest3;
} else if (activeStep === 3) {
file = practest4;
} else if (activeStep === 4) {
file = practest5;
}
}
if (currClass == 'COMPSCI 101 Lab 12') {
if (activeStep === 1) {
file = rubiks;
} else if (activeStep === 2) {
file = morse;
} else if (activeStep === 3) {
file = salary;
}
}
if (currClass == 'ACU CS 120 (Programming 1)' || currClass == 'COMPSCI 101 Lab 11') {
if (activeStep === 1) {
file = scramble;
} else if (activeStep === 2) {
file = arrange;
} else if (activeStep === 3) {
file = speak;
}
}
if (currClass == 'Java') {
codingLanguage = 'Java'
if (activeStep === 1) {
file = scramble;
} else if (activeStep === 2) {
file = arrange;
} else if (activeStep === 3) {
file = speak;
}
}
if (currClass == '#2: PA2 (Programação e Algoritmos 2 - Programming and Algorithms 2)'
|| currClass == 'Intro Python Dictionary +'
) {
if (activeStep === 4) {
file = keysInRange;
} else if (activeStep === 5) {
file = phoneBook;
} else if (activeStep === 1) {
file = scramble;
} else if (activeStep === 2) {
file = arrange;
} else if (activeStep === 3) {
file = speak;
}
}
if (currClass == 'PA2 (Programação e Algoritmos 2 - Programming and Algorithms 2)') {
if (activeStep === 1) {
file = zeros;
} else if (activeStep === 2) {
file = initials;
} else if (activeStep === 3) {
file = repeat;
}
}
if (currClass == 'COMPSCI101' || currClass == 'Intro Python Scripting') {
if (activeStep === 1) {
animation = InputHello;
} else if (activeStep === 2) {
animation = age;
file = tween;
} else if (activeStep === 3) {
animation = judgy;
file = judge;
}
}
if (currClass == 'COMPSCI130 - Lab 11' || currClass == 'Intro Python Functions Part 2') {
if (activeStep === 1) {
file = scramble;
} else if (activeStep === 2) {
file = arrange;
} else if (activeStep === 3) {
file = speak;
}
}
if (currClass == 'COMPSCI 747') {
if (activeStep === 1) {
file = zeros;
} else if (activeStep === 2) {
file = initials;
} else if (activeStep === 3) {
file = repeat;
} else if (activeStep === 7) {
file = keysInRange;
} else if (activeStep === 8) {
file = phoneBook;
} else if (activeStep === 4) {
file = scramble;
} else if (activeStep === 5) {
file = arrange;
} else if (activeStep === 6) {
file = speak;
}
}
if (currClass == 'COMPSCI130 - Lab 10'
|| currClass == 'Intro Python Functions Part 1' || currClass == 'COMPSCI 101 Lab 10') {
if (activeStep === 1) {
file = zeros;
} else if (activeStep === 2) {
file = initials;
} else if (activeStep === 3) {
file = repeat;
}
}
if (currClass == 'ENGGEN 131 - LAB 9' || currClass == 'Intro C - simple') {
codingLanguage = 'C'
if (activeStep === 1) {
file = averageList;
} else if (activeStep === 2) {
file = sumEven;
} else if (activeStep === 3) {
file = lastZero;
}
}
if (currClass == 'ENGGEN 131 - LAB 12' || currClass == 'Intro C - advanced') {
codingLanguage = 'C'
if (activeStep === 3) {
file = leafEater;
} else if (activeStep === 1) {
file = simplifiedQueen;
} else if (activeStep === 2) {
file = fullQueen;
}
}
if (activeStep === 0) {
return (<React.Fragment>
<Typography sx={{ mt: 2, mb: 1 }}>
Please select below the class you are currently enrolled in!
</Typography>
<Autocomplete
value={currClass}
onChange={(event, newValue) => {
setcurrClass(newValue);
}}
options={options}
sx={{ width: 300 }}
renderInput={(params) => <TextField {...params} label="Select class code" />}
/>
<Typography sx={{ mt: 2, mb: 1 }}>
Please select language:
</Typography>
<Autocomplete
options={languages}
getOptionLabel={(option) => option.name}
value={selectedLanguage}
sx={{ width: 300 }}
onChange={handleLanguageChange}
renderInput={(params) => <TextField {...params} label="Select Language" />}
/>
<Box sx={{ display: 'flex', flexDirection: 'row', pt: 2 }}>
<Button onClick={handleNext} disabled={!currClass} >
{'Enter'}
</Button>
</Box>
</React.Fragment>
);
} else {
return (<React.Fragment>
<Download currClass={currClass} currUser={currUser} />
<Typography sx={{ mt: 2, mb: 1 }} dir={selectedLanguage.code === 'ar' ? 'rtl' : 'ltr'}>{t("View the problem")}</Typography>
<img style={{ margin: "20px", direction: selectedLanguage.code === 'ar' ? 'rtl' : 'ltr', ...(selectedLanguage.code === 'ar' && { float: "right" }) }} src={animation} />
<img style={{ margin: "20px", direction: selectedLanguage.code === 'ar' ? 'rtl' : 'ltr', ...(selectedLanguage.code === 'ar' && { float: "right" }) }} src={file} />
<ChatGPT exercise={activeStep} currUser={currUser} setPassed={setPassed} currClass={currClass} group={group} language={selectedLanguage} />
<Box sx={{ display: 'flex', flexDirection: 'row', pt: 2 }}>
<Button
color="inherit"
disabled={activeStep === 0}
onClick={handleBack}
sx={{ mr: 1 }}
>
{t('Back')}
</Button>
<Button onClick={handleNext} disabled={!passed} >
{activeStep === steps.length - 1 ? t('Finish') : t('Next')}
</Button>
</Box>
</React.Fragment>
);
}
};
const handleNext = () => {
if (activeStep == 0) {
setLoading(true);
try {
const functions = getFunctions(getApp());
const callableReturnMessage = httpsCallable(functions, 'userState');
callableReturnMessage({ user: currUser.uid, class: currClass })
.then((result) => {
const newCompletedSteps = [...completedSteps];
for (let i = 0; i < result.data.documents.length; i++) {
console.log(result.data.documents[i].questionId, 'result.data.documents[i].questionId ');
newCompletedSteps[result.data.documents[i].questionId - 1] = true;
}
setCompletedSteps(newCompletedSteps);
console.log(completedSteps);
})
.catch((error) => {
console.log(error);
setError(error);
})
.finally(() => {
setLoading(false);
});
} catch (e) {
console.log(e);
setLoading(false);
}
} else {
const newCompletedSteps = [...completedSteps];
newCompletedSteps[activeStep - 1] = true;
setCompletedSteps(newCompletedSteps);
}
setActiveStep((prevActiveStep) => prevActiveStep + 1);
};
const handleBack = () => {
setActiveStep((prevActiveStep) => prevActiveStep - 1);
};
const handleReset = () => {
setActiveStep(0);
};
const handleLanguageChange = (event, value) => {
if (value) {
i18n.changeLanguage(value.code);
setSelectedLanguage(value);
}
};
return (
<div>
<div style={{ maxWidth: '900px', textAlign: 'center', justifyContent: 'center', margin: '20px', display: 'flex', alignItems: 'center', flexDirection: 'column' }}>
<p style={{ margin: "20px", direction: selectedLanguage.code === 'ar' ? 'rtl' : 'ltr' }}>
{t("FirstBlurb")}
</p>
<p style={{ margin: "20px", direction: selectedLanguage.code === 'ar' ? 'rtl' : 'ltr' }}>
{t("SecondBlurb", { language: codingLanguage })}
</p>
<p style={{ margin: "20px", direction: selectedLanguage.code === 'ar' ? 'rtl' : 'ltr' }}>
{t('ThirdBlurb', { language: codingLanguage })}
</p>
</div>
<Box sx={{ width: '900px', margin: '20px' }}>
<Stepper activeStep={activeStep} direction={selectedLanguage.code === 'ar' ? 'rtl' : 'ltr'}>
{steps.map((label, index) => {
const stepProps = {};
const labelProps = {};
return (
<Step key={label} {...stepProps}>
<StepLabel {...labelProps}>{label}</StepLabel>
</Step>
);
})}
</Stepper>
{activeStep === steps.length ? (
<React.Fragment>
<Typography sx={{ mt: 2, mb: 1 }}>
All steps are completed - you are finished. Thank you for using Promptly!
</Typography>
<Box sx={{ display: 'flex', flexDirection: 'row', pt: 2 }}>
<Box sx={{ flex: '1 1 auto' }} />
<Button onClick={handleReset}>Reset</Button>
</Box>
</React.Fragment>
) : (<Exercise exercise={activeStep} currUser={currUser} group={group} />)}
</Box>
</div >
);
}