Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HFP-4128 Fix re-creating state for user responses #69

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions js/summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ H5P.Summary = (function ($, Question, XApiEventBuilder, StopWatch) {
summaries: []
};

// dataBitMap can contain empty entries as offset for previous panels
var emptyEntriesCount = 0;

for (var summaryIndex = 0; summaryIndex < that.summaries[panelIndex].summary.length; summaryIndex++) {
var isAnswer = (summaryIndex === 0);
that.answer[id] = isAnswer; // First claim is correct
Expand All @@ -179,9 +182,16 @@ H5P.Summary = (function ($, Question, XApiEventBuilder, StopWatch) {
that.dataBitMap[panelIndex] = this.dataBitMap[panelIndex] || [];
that.dataBitMap[panelIndex][id] = summaryIndex;

const filledEntriesCount = (
that.dataBitMap[panelIndex].filter(function () {
return true; // dataBitMap[panelIndex] can contain "empty" values
})
).length;
emptyEntriesCount = that.dataBitMap[panelIndex].length - filledEntriesCount;

// checks the answer and updates the user response array
if(that.answers[panelIndex] && (that.answers[panelIndex].indexOf(id) !== -1)){
this.storeUserResponse(panelIndex, summaryIndex);
this.storeUserResponse(panelIndex, emptyEntriesCount + summaryIndex);
}

// adds to elements
Expand All @@ -193,7 +203,7 @@ H5P.Summary = (function ($, Question, XApiEventBuilder, StopWatch) {

// if we have progressed passed this point, the success pattern must also be saved
if(panelIndex < that.progress){
this.storeUserResponse(panelIndex, 0);
this.storeUserResponse(panelIndex, emptyEntriesCount);
}

// Randomize elements
Expand Down