Skip to content

Commit db6c817

Browse files
[FEATURE] Interdire les feedbacks globaux dans les QCU (PIX-17119)
#11769
2 parents 0b6b786 + 0295d74 commit db6c817

File tree

7 files changed

+100
-337
lines changed

7 files changed

+100
-337
lines changed

api/src/devcomp/domain/models/element/QCU-for-answer-verification.js

+4-14
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,20 @@ import Joi from 'joi';
33
import { EntityValidationError } from '../../../../shared/domain/errors.js';
44
import { assertNotNullOrUndefined } from '../../../../shared/domain/models/asserts.js';
55
import { ModuleInstantiationError } from '../../errors.js';
6-
import { Feedbacks } from '../Feedbacks.js';
76
import { QcuCorrectionResponse } from '../QcuCorrectionResponse.js';
87
import { ValidatorQCU } from '../validator/ValidatorQCU.js';
98
import { QCU } from './QCU.js';
109

1110
class QCUForAnswerVerification extends QCU {
1211
userResponse;
13-
constructor({ id, instruction, locales, proposals, solution, feedbacks, validator }) {
12+
constructor({ id, instruction, locales, proposals, solution, validator }) {
1413
super({ id, instruction, locales, proposals });
1514

1615
assertNotNullOrUndefined(solution, 'The solution is required for a verification QCU');
1716
this.#assertSolutionIsAnExistingProposal(solution, proposals);
1817

1918
this.solution = { value: solution };
2019

21-
if (feedbacks) {
22-
this.feedbacks = new Feedbacks(feedbacks);
23-
}
24-
2520
if (validator) {
2621
this.validator = validator;
2722
} else {
@@ -46,7 +41,7 @@ class QCUForAnswerVerification extends QCU {
4641

4742
return new QcuCorrectionResponse({
4843
status: validation.result,
49-
feedback: this.#getFeedback(validation),
44+
feedback: this.#getFeedback(),
5045
solution: this.solution.value,
5146
});
5247
}
@@ -71,13 +66,8 @@ class QCUForAnswerVerification extends QCU {
7166
}
7267
}
7368

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);
8171
}
8272
}
8373

api/src/devcomp/infrastructure/datasources/learning-content/samples/elements/qcu.sample.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,8 @@ export function getQcuSample(nbOfProposals = 3) {
88
proposals: Array.from(Array(nbOfProposals)).map((_, i) => ({
99
id: `${i + 1}`,
1010
content: `Proposition ${i + 1}`,
11+
feedback: `<p>Correct ! ${i + 1}</p>`,
1112
})),
12-
feedbacks: {
13-
valid: '<p>Correct !</p>',
14-
invalid: '<p>Incorrect !</p>',
15-
},
1613
solution: '1',
1714
};
1815
}

api/src/devcomp/infrastructure/factories/element-for-verification-factory.js

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export class ElementForVerificationFactory {
5050
feedback: proposal.feedback,
5151
});
5252
}),
53-
feedbacks: element.feedbacks,
5453
solution: element.solution,
5554
});
5655
}

0 commit comments

Comments
 (0)