@@ -3,25 +3,20 @@ import Joi from 'joi';
3
3
import { EntityValidationError } from '../../../../shared/domain/errors.js' ;
4
4
import { assertNotNullOrUndefined } from '../../../../shared/domain/models/asserts.js' ;
5
5
import { ModuleInstantiationError } from '../../errors.js' ;
6
- import { Feedbacks } from '../Feedbacks.js' ;
7
6
import { QcuCorrectionResponse } from '../QcuCorrectionResponse.js' ;
8
7
import { ValidatorQCU } from '../validator/ValidatorQCU.js' ;
9
8
import { QCU } from './QCU.js' ;
10
9
11
10
class QCUForAnswerVerification extends QCU {
12
11
userResponse ;
13
- constructor ( { id, instruction, locales, proposals, solution, feedbacks , validator } ) {
12
+ constructor ( { id, instruction, locales, proposals, solution, validator } ) {
14
13
super ( { id, instruction, locales, proposals } ) ;
15
14
16
15
assertNotNullOrUndefined ( solution , 'The solution is required for a verification QCU' ) ;
17
16
this . #assertSolutionIsAnExistingProposal( solution , proposals ) ;
18
17
19
18
this . solution = { value : solution } ;
20
19
21
- if ( feedbacks ) {
22
- this . feedbacks = new Feedbacks ( feedbacks ) ;
23
- }
24
-
25
20
if ( validator ) {
26
21
this . validator = validator ;
27
22
} else {
@@ -46,7 +41,7 @@ class QCUForAnswerVerification extends QCU {
46
41
47
42
return new QcuCorrectionResponse ( {
48
43
status : validation . result ,
49
- feedback : this . #getFeedback( validation ) ,
44
+ feedback : this . #getFeedback( ) ,
50
45
solution : this . solution . value ,
51
46
} ) ;
52
47
}
@@ -71,13 +66,8 @@ class QCUForAnswerVerification extends QCU {
71
66
}
72
67
}
73
68
74
- #getFeedback( validation ) {
75
- const specificFeedback = this . #getSpecificFeedbackByProposalId( this . userResponse ) ;
76
- if ( specificFeedback ) {
77
- return specificFeedback ;
78
- }
79
-
80
- return validation . result . isOK ( ) ? this . feedbacks . valid : this . feedbacks . invalid ;
69
+ #getFeedback( ) {
70
+ return this . #getSpecificFeedbackByProposalId( this . userResponse ) ;
81
71
}
82
72
}
83
73
0 commit comments