-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtests.store.js
More file actions
1456 lines (1337 loc) · 42.5 KB
/
tests.store.js
File metadata and controls
1456 lines (1337 loc) · 42.5 KB
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
import { Store } from "vuex";
import uuid from "uuid-random";
import { analytics, db } from "../../main";
import { getNowISOString } from "../../utils/date";
import { createErrorLog, showErrorMessage } from "../../utils/errors";
/**
* @typedef {import('./questions.store.js').Question} Question
*/
/**
* @typedef {Object} Time
* @property {number} hours Defines how many hours.
* @property {number} minutes Defines how many minutes.
* @property {number} seconds Defines how many seconds.
*/
/**
* @typedef {Object} AttemptAnswers
* @property {number} answer Defines what answer was selected (1 - 4).
* @property {boolean} correct Defines whether the selected answer is correct.
* @property {string} questionName Defines the question name that contains the answer.
*/
/**
* @typedef {Object} AttemptSubject
* @property {string} subject Defines the subject name.
* @property {string[]} questions Defines an array with all questions names from this subject.
*/
/**
* @typedef {Object} Attempt
* @property {boolean} approved Defines whether the attempt was successful.
* @property {AttemptAnswers[]} answers Defines an array that contains all the quiz answers.
* @property {Date} date Defines when the attempt was finished.
* @property {string} mode Defines the attempt mode. Ex.: 'practice'.
* @property {string[]} questions Defines an array that contains all questions names from the quiz.
* @property {AttemptSubject[]} subjects Defines an array of subjects that contains their name and questions.
* @property {string} quizId Defines the quiz id.
* @property {number} score Defines the percentage (%) of correct answers.
* @property {Time} timeTaken Defines how many hours, minutes and seconds the attempt has taken.
* @property {string} userId Defines the id of the user that finished the attempt.
*/
/**
* @typedef {Object} Level
* @property {number} index Defines the level index.
* @property {'beginner' | 'intermediary' | 'advanced' | 'expert'} name Defines the level name.
*/
/**
* @typedef {Object} DeleteStatus
* @property {boolean} toDelete.status If true, the question can be restored. If false, it will be deleted.
* @property {string|undefined} toDelete.userEmail Define the user that marked the question to be deleted.
*/
/**
* @typedef {Object} TestCreation
* @property {string} userId Defines the user that created the quiz.
* @property {string} title Defines the quiz title.
* @property {string} instructions Defines the quiz instructions.
* @property {"selected"|"random"} type Defines the quiz type.
* @property {Question[]} questions Defines the quiz questions.
*/
/**
* @typedef {Object} Test
* @property {string} id Defines the quiz id.
* @property {string} created Defines the quiz creation date.
* @property {string} updated Defines the quiz edition date.
* @property {string} userId Defines the user that created the quiz.
* @property {string} title Defines the quiz title.
* @property {string} instructions Defines the quiz instructions.
* @property {number} questionsAmount Defines how many questions the quiz have.
* @property {number} approvalPercentage Defines how much of the quiz must be correct to approve the user.
* @property {boolean} unlimitedTime Defines whether the quiz has unlimited time.
* @property {Time} time Defines the quiz timer.
* @property {Level} level Defines the quiz level.
* @property {"selected"|"random"|"auto"} type Defines the quiz type.
* @property {Question[]} questions Defines an array of questions.
* @property {string[]} questionsNames Defines an array that contains all questions names added to the quiz.
* @property {Object<string, number>} userAttempts Defines an object containing all user attempts (id and number of attempts).
* @property {DeleteStatus|undefined} toDelete Defines the quiz deletion status.
*/
/**
* @typedef {Object} TestsState
* @property {Object.<string, Test[]>} tests Defines the pages with it's quizzes list.
* @property {Test[]} filteredTests Defines an array of quizzes filtered by id.
* @property {Test[]} currentTestsPage Defines an array of quizzes of the current page.
* @property {[string, string]|null} lastTestDocument Defines an array with the first and last quiz id from the last request.
* @property {Question[]} testQuestions Defines an array of questions from a specific quiz.
* @property {Test[]} deleteMarkTests Defines an array of quizzes that were marked to be deleted.
* @property {Test[]} lastTests Defines an array of the most recent quizzes.
*/
/**
* Gets the initial state of tests state.
*
* @returns {TestsState} The initial state of tests state.
*/
const initialState = () => ({
tests: {},
filteredTests: [],
currentTestsPage: [],
lastTestDocument: null,
testQuestions: [],
deleteMarkTests: [],
lastTests: []
});
const state = initialState();
const mutations = {
/**
* Sets a page of tests according to the given data.
*
* @param {TestsState} state - The tests state.
* @param {Object} data - The data containing the page number and it's data.
* @param {string} data.page - The page number.
* @param {Test[]} data.data - An array of tests.
*/
setTestPage(state, data) {
state.tests[data.page] = data.data;
},
/**
* Sets the filtered tests.
*
* @param {TestsState} state - The tests state.
* @param {Test[]} data - An array of filtered tests.
*/
setFilteredTests(state, data) {
state.filteredTests = data;
},
/**
* Sets the most recent tests.
*
* @param {TestsState} state - The tests state.
* @param {Test[]} data - An array of tests.
*/
setLastTests(state, data) {
state.lastTests = data;
},
/**
* Cleans the filtered tests array.
*
* @param {TestsState} state - The tests state.
*/
resetFilteredTests(state) {
state.filteredTests = [];
},
/**
* Cleans the current tests page array.
*
* @param {TestsState} state - The tests state.
*/
resetCurrentTestsPage(state) {
state.currentTestsPage = [];
},
/**
* Sets the current tests page array.
*
* @param {TestsState} state - The tests state.
* @param {Test[]} data - An array of tests.
*/
setCurrentTestsPage(state, data) {
state.currentTestsPage = data;
},
/**
* Adds a test to the array of tests marked to be deleted.
*
* @param {TestsState} state - The tests state.
* @param {Test} data - The test to be added.
*/
addDeleteMarkTest(state, data) {
state.deleteMarkTests.push(data);
},
/**
* Updates a test that's in the array of tests marked to be deleted.
*
* @param {TestsState} state - The tests state.
* @param {Test} data - The test to be updated.
*/
updateDeleteMarkTest(state, data) {
const tests = [...state.deleteMarkTests];
tests.forEach((item, index) => {
if (item.id === data.id) {
tests[index] = data;
}
});
state.deleteMarkTests = tests;
},
/**
* Removes a test from the array of tests marked to be deleted.
*
* @param {TestsState} state - The tests state.
* @param {Test} data - The id of the test to be removed.
*/
removeDeleteMarkTest(state, data) {
const tests = [...state.deleteMarkTests];
tests.forEach((item, index) => {
if (item.id === data) {
state.deleteMarkTests.splice(index, 1);
}
});
},
/**
* Sets the array of tests marked to be deleted.
*
* @param {TestsState} state - The tests state.
* @param {Test[]} data - An array of tests marked to be deleted.
*/
setDeleteMarkTests(state, data) {
state.deleteMarkTests = data;
},
/**
* Sets a test as marked to be deleted.
*
* @param {TestsState} state - The tests state.
* @param {Object} data - The data containing the test id and the deletion status.
* @param {string} data.id - The test id.
* @param {DeleteStatus} data.toDelete - The test deletion status.
*/
setDeleteMarkTest(state, data) {
const tests = state.tests;
for (let key in tests) {
if (tests[key]) {
tests[key].forEach((item, index) => {
if (item.id === data.id) {
state.tests[key][index] = {
...item,
toDelete: data.toDelete
};
}
});
}
}
},
/**
* Sets a test as marked to be deleted into the filtered tests array.
*
* @param {TestsState} state - The tests state.
* @param {Object} data - The data containing the test id and the deletion status.
* @param {string} data.id - The test id.
* @param {DeleteStatus} data.toDelete - The test deletion status.
*/
setDeleteMarkFilteredTest(state, data) {
const tests = [...state.filteredTests];
tests.forEach((item, index) => {
if (item.id === data.id) {
tests[index] = { ...item, toDelete: data.toDelete };
}
});
state.filteredTests = tests;
},
/**
* Sets the test questions.
*
* @param {TestsState} state - The tests state.
* @param {Question[]} data - An array of questions.
*/
setTestQuestions(state, data) {
state.testQuestions = data;
},
/**
* Creates a test into the tests object, according to the given data.
*
* @param {TestsState} state - The tests state.
* @param {Object} data - The data containing the test data and the page number.
* @param {number} data.page - The page number.
* @param {number} data.amount - The total amount of tests.
* @param {Test} data.data - The test to be created.
*/
createTest(state, data) {
const page = data.page;
const tests = [...(state.tests["p" + page] || [])];
const amount = data.amount;
const oneBefore = state.tests["p" + (page - 1)] || [];
if (tests.length > 0 || oneBefore.length === 10 || amount === 0) {
tests.push(data.data);
state.tests["p" + page] = [...tests];
if (amount === 0 || state.currentTestsPage.length < 10) {
state.currentTestsPage.push(data.data);
}
}
},
/**
* Updates a test into the test object, according to the test's id.
*
* @param {TestsState} state - The tests state.
* @param {test} data - The test to be updated.
*/
updateTest(state, data) {
const tests = { ...state.tests };
for (let key in tests) {
if (tests[key]) {
state.tests[key].forEach((item, index) => {
if (item.id === data.id) {
tests[key][index] = data;
}
});
}
}
state.tests = tests;
},
/**
* Updates a test that's in the filtered tests array, according to the test's id.
*
* @param {TestsState} state - The tests state.
* @param {Test} data - The test to be updated.
*/
updateFilteredTest(state, data) {
const tests = [...state.filteredTests];
tests.forEach((item, index) => {
if (item.id === data.id) {
tests[index] = data;
}
});
state.filteredTests = tests;
},
/**
* Updates a test that's in the current tests page array, according to the test's id.
*
* @param {TestsState} state - The tests state.
* @param {Test} data - The test to be updated.
*/
updateCurrentTestsPage(state, data) {
const tests = [...state.currentTestsPage];
tests.forEach((item, index) => {
if (item.id === data.id) {
tests[index] = data;
}
});
state.currentTestsPage = tests;
},
/**
* Deletes a test from the test object, according to the given data.
*
* @param {TestsState} state - The tests state.
* @param {string} data - The id of the test to be deleted.
*/
deleteTest(state, data) {
const tests = state.tests;
for (let key in tests) {
if (tests[key]) {
tests[key].forEach((item, index) => {
if (item.id === data) {
state.tests[key].splice(index, 1);
}
});
}
}
},
/**
* Deletes a test from the filtered tests array, according to the given data.
*
* @param {TestsState} state - The tests state.
* @param {string} data - The id of the test to be deleted.
*/
deleteFilteredTest(state, data) {
const tests = state.filteredTests;
tests.forEach((item, index) => {
if (item.id === data) {
state.filteredTests.splice(index, 1);
}
});
},
/**
* Sets the last test request ids.
*
* @param {TestsState} state - The tests state.
* @param {[string, string]} data An array of strings containing the first and last test ids from the last request.
*/
setLastTestDocument(state, data) {
state.lastTestDocument = data;
},
/**
* Resets the tests state to it's initial state.
*
* @param {TestsState} state - The tests state.
*/
RESETTests(state) {
const newState = initialState();
Object.keys(newState).forEach(key => {
state[key] = newState[key];
});
}
};
const actions = {
/**
* Loads a page of tests according to the payload data.
*
* @param {Store} store - The vuex store.
* @param {Object} payload - The action payload.
* @param {number} payload.page - The page number.
* @param {number} payload.itemsPerPage - The amount of items per page.
* @param {"next"|"previous"} payload.type - The request type.
*/
loadTestPage({ commit, dispatch, state }, payload) {
commit("setLoading", true);
const dataSize = this.getters.getDataSize;
if (
(payload.type === "next" || payload.type === "previous") &&
(!dataSize || typeof dataSize.tests !== "number")
) {
commit("setLoading", false);
return;
}
const { page, itemsPerPage, type } = payload;
const data = [];
const pages = Object.keys(state.tests);
if (!pages.includes("p" + page)) {
let request = null;
const ref = db.collection("tests").orderBy("id");
if (type === "next") {
request = ref
.startAfter(state.lastTestDocument[1])
.limit(itemsPerPage)
.get();
} else {
request = ref
.endBefore(state.lastTestDocument[0])
.limitToLast(itemsPerPage)
.get();
}
let first = null,
last = null;
request
.then(async snapshot => {
if (!snapshot.empty) {
first = snapshot.docs[0].data().id;
last = snapshot.docs[snapshot.docs.length - 1].data().id;
const promises = snapshot.docs.map(async doc => {
const userData = await dispatch("getUserById", {
id: doc.data().userId
});
data.push({ ...doc.data(), user: userData });
return userData;
});
await Promise.all(promises);
}
})
.then(() => {
commit("setCurrentTestsPage", data);
commit("setTestPage", { page: "p" + page, data });
commit("setLastTestDocument", [first, last]);
commit("setLoading", false);
})
.catch(error => {
commit("setLoading", false);
const errorModel = showErrorMessage("load", "Quizzes", error.message);
commit("setError", { message: errorModel });
createErrorLog("Test Page Load", error.message, {
payload,
data
});
});
} else {
const pageContent = state.tests["p" + page];
const first = pageContent[0].id;
const last = pageContent[pageContent.length - 1].id;
commit("setCurrentTestsPage", pageContent);
commit("setLastTestDocument", [first, last]);
commit("setLoading", false);
}
},
/**
* Loads the first or last page according to the payload data.
*
* @param {Store} store - The vuex store.
* @param {Object} payload - The action payload.
* @param {number} payload.page - The page number.
* @param {number} payload.itemsPerPage - The amount of items per page.
* @param {"first"|"last"} payload.mode - The request mode.
*/
loadFOLTestPage({ commit, dispatch, state }, payload) {
commit("setLoading", true);
const { page, itemsPerPage, mode } = payload;
const data = [];
const pages = Object.keys(state.tests);
const dataSize = this.getters.getDataSize;
const testAmount = dataSize?.tests ?? 0;
const amount = testAmount % itemsPerPage;
if (!pages.includes("p" + page)) {
let request = null;
const ref = db.collection("tests").orderBy("id");
if (mode === "first") {
request = ref.limit(itemsPerPage).get();
} else {
request = ref.limitToLast(amount || 10).get();
}
let first = null,
last = null;
request
.then(async snapshot => {
if (!snapshot.empty) {
first = snapshot.docs[0].data().id;
last = snapshot.docs[snapshot.docs.length - 1].data().id;
const promises = snapshot.docs.map(async doc => {
const userData = await dispatch("getUserById", {
id: doc.data().userId
});
data.push({ ...doc.data(), user: userData });
return userData;
});
await Promise.all(promises);
}
})
.then(() => {
if (data.length > 0) {
commit("setCurrentTestsPage", data);
commit("setTestPage", { page: "p" + page, data });
commit("setLastTestDocument", [first, last]);
}
commit("setLoading", false);
})
.catch(error => {
commit("setLoading", false);
const errorModel = showErrorMessage("load", "Quizzes", error.message);
commit("setError", { message: errorModel });
createErrorLog("Test FOL Page Load", error.message, {
payload,
data
});
});
} else {
const pageContent = state.tests["p" + page];
if (pageContent && pageContent[0]) {
const first = pageContent[0].id;
const last = pageContent[pageContent.length - 1].id;
commit("setCurrentTestsPage", pageContent);
commit("setLastTestDocument", [first, last]);
}
commit("setLoading", false);
}
},
/**
* Checks if a test with the given title exists.
*
* @param {Store} store - The vuex store.
* @param {string} payload - The test title.
* @returns {Promise<number>} The number of tests that match the given title.
*/
async testExists({commit}, payload) {
return new Promise((resolve, reject) => {
try {
db.collection("tests")
.where("title", "==", payload)
.get()
.then(snapshot => {
if (snapshot.docs.length > 0) resolve(snapshot.docs.length);
else resolve(0);
})
.catch(error => {
const errorModel = showErrorMessage(
"connection",
"",
error.message
);
commit("setError", { message: errorModel });
createErrorLog("Test Exists Check", error.message, {
payload
});
});
} catch (error) {
reject();
}
});
},
/**
* Searches for tests based on their title.
*
* @param {Store} store - The vuex store.
* @param {string} payload - The string to be searched.
*/
searchTests({ commit, dispatch }, payload) {
commit("setLoading", true);
const data = [];
db.collection("tests")
.orderBy("title")
.where("title", ">=", payload)
.where("title", "<=", payload + "~")
.get()
.then(snapshot => {
snapshot.forEach(doc => {
data.push(doc.data());
});
})
.then(async () => {
await db
.collection("tests")
.orderBy("title")
.where("title", ">=", payload.toUpperCase())
.where("title", "<=", payload.toUpperCase() + "~")
.get()
.then(snap => {
const ids = data.map(t => t.id);
snap.forEach(document => {
if (!ids.includes(document.data().id)) {
data.push(document.data());
}
});
});
})
.then(async () => {
await db
.collection("tests")
.orderBy("title")
.where("title", ">=", payload.toLowerCase())
.where("title", "<=", payload.toLowerCase() + "~")
.get()
.then(snap => {
const ids = data.map(t => t.id);
snap.forEach(document => {
if (!ids.includes(document.data().id)) {
data.push(document.data());
}
});
});
})
.then(async () => {
const promises = data.map(async (doc, index) => {
const userData = await dispatch("getUserById", {
id: doc.userId
});
data[index] = { ...doc, user: userData };
return userData;
});
await Promise.all(promises);
commit("setFilteredTests", data);
commit("setLoading", false);
})
.catch(error => {
commit("setLoading", false);
const errorModel = showErrorMessage(
"load",
"Quizzes",
"Searching error - " + error.message
);
commit("setError", { message: errorModel });
createErrorLog("Test Search", error.message, { payload, data });
});
},
/**
* Loads the questions from a given test.
*
* @param {Store} store - The vuex store.
* @param {Test} payload - The test payload.
*/
loadTestQuestions({ commit }, payload) {
commit("setTestQuestions", [...payload.questions]);
},
/**
* Loads all tests that are marked to be deleted.
*
* @param {Store} store - The vuex store.
*/
checkDeleteMarkTests({ commit, dispatch }) {
const data = [];
db.collection("tests")
.where("toDelete.status", "==", true)
.get()
.then(async snapshot => {
const promises = snapshot.docs.map(async doc => {
const userData = await dispatch("getUserById", {
id: doc.data().userId
});
data.push({ ...doc.data(), user: userData });
return userData;
});
await Promise.all(promises);
})
.then(() => {
commit("setDeleteMarkTests", data);
})
.catch(error => {
const errorModel = showErrorMessage("connection", "", error.message);
commit("setError", { message: errorModel });
createErrorLog("Test Mark Check", error.message, { data });
});
},
/**
* Marks a test to be deleted.
*
* @param {Store} store - The vuex store.
* @param {Object} payload - The action payload.
* @param {string} payload.id - The test id.
* @param {boolean} payload.isSearching - Whether the application is using filtered tests or not.
* @param {string} payload.userEmail - The current user e-mail.
*/
deleteMarkTest({ commit, dispatch }, payload) {
commit("setLoading", true);
const { id, isSearching, userEmail } = payload;
db.collection("tests")
.where("id", "==", id)
.get()
.then(async snapshot => {
if(snapshot.empty){
commit("setLoading", false);
return;
}
const doc = snapshot.docs[0];
const toDelete = {
status: true,
userEmail
};
doc.ref.update({ toDelete });
const user = await dispatch("getUserById", {
id: doc.data().userId
});
commit("setDeleteMarkTest", { id, toDelete });
if (isSearching) {
commit("setDeleteMarkFilteredTest", { id, toDelete });
}
commit("updateCurrentTestsPage", {
...doc.data(),
toDelete,
user
});
commit("addDeleteMarkTest", { ...doc.data(), toDelete, user });
commit("setLoading", false);
})
.catch(error => {
commit("setLoading", false);
const errorModel = showErrorMessage("connection", "", error.message);
commit("setError", { message: errorModel });
createErrorLog("Test Delete Mark", error.message, { payload });
});
},
/**
* Restores a test from being marked to be deleted.
*
* @param {Store} store - The vuex store.
* @param {Object} payload - The action payload.
* @param {string} payload.id - The test id.
* @param {boolean} payload.isSearching - Whether the application is using filtered tests or not.
*/
restoreMarkedTest({ commit, dispatch }, payload) {
commit("setLoading", true);
const { id, isSearching } = payload;
let docData = null;
db.collection("tests")
.where("id", "==", id)
.get()
.then(async snapshot => {
if (snapshot.empty) {
commit("setLoading", false);
return;
}
const doc = snapshot.docs[0];
/**
* @type {Test}
*/
const data = doc.data();
docData = data;
/**
* @type {Test}
*/
const test = {
id: data.id,
title: data.title,
created: data.created,
updated: data.updated,
questions: data.questions,
questionsNames: data.questionsNames,
questionsAmount: data.questionsAmount,
approvalPercentage: data.approvalPercentage,
time: data.time,
unlimitedTime: data.unlimitedTime,
level: data.level,
type: data.type,
userId: data.userId,
userAttempts: data.userAttempts,
instructions: data.instructions
};
await doc.ref.set(test);
const user = await dispatch("getUserById", { id: test.userId });
test["user"] = user;
commit("updateTest", test);
if (isSearching) {
commit("updateFilteredTest", test);
}
commit("removeDeleteMarkTest", id);
commit("updateCurrentTestsPage", test);
commit("setLoading", false);
commit("setSuccess", "Quiz successfully restored!");
})
.catch(error => {
commit("setLoading", false);
const errorModel = showErrorMessage("connection", "", error.message);
commit("setError", { message: errorModel });
createErrorLog("Test Restore", error.message, {
payload,
docData
});
});
},
/**
* Restores all tests that are marked to be deleted from the database or the current user, depending on the given data.
*
* @param {Store} store - The vuex store.
* @param {Object} payload - The action payload.
* @param {boolean} payload.all - Whether will restore all database tests or only from the current user.
* @param {boolean} payload.isSearching - Whether the application is using filtered tests or not.
* @param {import('./user.store.js').UserInfo} payload.user - The current user info.
*/
restoreAllMarkedTests({ commit, dispatch, state }, payload) {
commit("setLoading", true);
const { all, isSearching, user } = payload;
let docData = null;
const ref = db.collection("tests").where("toDelete.status", "==", true);
let request = null;
if (all) {
request = ref;
} else {
request = ref.where("toDelete.userEmail", "==", user.email);
}
request
.get()
.then(snapshot => {
snapshot.forEach(async doc => {
/**
* @type {Test}
*/
const data = doc.data();
docData = data;
/**
* @type {Test}
*/
const test = {
id: data.id,
title: data.title,
created: data.created,
updated: data.updated,
questions: data.questions,
questionsNames: data.questionsNames,
questionsAmount: data.questionsAmount,
approvalPercentage: data.approvalPercentage,
time: data.time,
unlimitedTime: data.unlimitedTime,
level: data.level,
type: data.type,
userId: data.userId,
userAttempts: data.userAttempts,
instructions: data.instructions
};
await doc.ref.set(test);
const userData = await dispatch("getUserById", {
id: test.userId
});
test["user"] = userData;
if (all) {
const falseMarkedTests = state.deleteMarkTests.filter(
t => !t.toDelete.status
);
commit("setDeleteMarkTests", falseMarkedTests);
} else {
const markedTests = state.deleteMarkTests.filter(
t => t.id !== test.id
);
commit("setDeleteMarkTests", markedTests);
}
commit("updateTest", test);
commit("updateCurrentTestsPage", test);
if (isSearching) commit("updateFilteredTest", test);
commit("setSuccess", "Quizzes successfully restored!");
});
})
.then(() => commit("setLoading", false))
.catch(error => {
commit("setLoading", false);
const errorModel = showErrorMessage("connection", "", error.message);
commit("setError", { message: errorModel });
createErrorLog("Test Restore All", error.message, {
payload,
docData
});
});
},
/**
* Changes a test's delete status to false (confirmed deletion).
*
* @param {Store} store - The vuex store.
* @param {Object} payload - The action payload.
* @param {string} payload.id - The test id.
* @param {boolean} payload.isSearching - Whether the application is using filtered tests or not.
*/
changeDeleteStatusTests({ commit, dispatch }, payload) {
commit("setLoading", true);
const { id, isSearching } = payload;
db.collection("tests")
.where("id", "==", id)
.get()
.then(async snapshot => {
if (snapshot.empty) {
commit("setLoading", false);
return;
}
const doc = snapshot.docs[0];
const toDelete = {
status: false
};
doc.ref.update({ ...doc.data(), toDelete: { status: false } });
const user = await dispatch("getUserById", {
id: doc.data().userId
});
commit("updateCurrentTestsPage", {
...doc.data(),
toDelete,
user
});
commit("updateTest", { ...doc.data(), toDelete, user });
commit("updateDeleteMarkTest", {
...doc.data(),
toDelete,
user
});
if (isSearching)
commit("updateFilteredTest", {
...doc.data(),
toDelete,
user
});
commit("setLoading", false);
commit("setSuccess", "Quizzes successfully deleted!");
})
.catch(error => {
const errorModel = showErrorMessage(
"exclusion",
"Quizzes",
error.message
);
commit("setError", { message: errorModel });
createErrorLog("Test Confirm Delete", error.message, {
payload
});
});
},
/**
* Deletes all tests that are marked to be deleted (toDelete.status = false).
*