-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.js
executable file
·258 lines (224 loc) · 6.63 KB
/
questions.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
/* Constants */
var GIVEUP_INDEX = 4;
var QUESTION_INDEX = 2;
var NUM_ATTEMPTS_BEFORE_GIVEUP = 3;
/* Global information */
var questionAttempts = [];
var giveups = [];
/**
* Once the window loads, all the event listeners for clicking words
*/
window.onload = () =>
{
setupEventListeners();
}
/**
* Update the database for the specific student to increase the number
* of attempts for the question
*/
function queryDatabase()
{
$.ajax({
type: 'POST',
url: 'updateAttempt.php',
data: {
// Left empty on purpose
},
success: function(data)
{
var dataWithAttemptsStr = injectTriesString(data);
document.getElementById("attemptSection").innerHTML = dataWithAttemptsStr;
}
});
};
/**
* Disable the choices within a given question
*/
function disableQuestion(event, userGaveUp)
{
// Get question and answer explanation section of HTML
var giveUpQSec = event.target.parentElement.parentNode.children[QUESTION_INDEX];
var qSec = (userGaveUp) ? giveUpQSec : event.target.parentElement;
var formSec = qSec.parentElement.parentElement;
var qExplanationSec = formSec.querySelectorAll("#explanationSection");
// Disable the question section and show the answer explanation
qSec.setAttribute("class", qSec.className + " disabled");
qExplanationSec[0].style.visibility = "visible";
}
/**
* Check to see if a clicked word is the correct answer
* If so, update the HTML to show the explanation and disable the selections
*/
function checkAnswer(event, question, clickedWord)
{
$.ajax({
type: 'POST',
url: 'getAnswer.php',
data: {
// Left empty on purpose
},
success: function(data)
{
if(isCorrectAnswer(data, question, clickedWord))
{
disableQuestion(event, false);
}
else
{
var qIndex = getQuestionNum(event) - 1;
questionAttempts[qIndex] += 1;
if(questionAttempts[qIndex] === NUM_ATTEMPTS_BEFORE_GIVEUP)
{
// Show the button
showQuestionGiveUpButton(event);
}
}
}
});
}
/**
* Update a specific students "give up" attempt on the database
*/
function updateGiveUpAttempt(event)
{
$.ajax({
type: 'POST',
url: 'attemptGiveUp.php',
data: {
// Left empty on purpose
},
success: function(data)
{
var qNum = getQuestionNum(event) - 1;
if(giveups[qNum] == 0)
{
disableQuestion(event, true);
giveups[qNum]++;
}
}
});
}
/**
* Check to see if the clicked word is the correct answer according to the
* database
*/
function isCorrectAnswer(data, question, clickedWord)
{
// Get all words in question, and get the the word at "wordIndex"
var words = question.split(" ");
var wordIndex = parseInt(data);
var strNoNewLine = words[wordIndex - 1].replace("\n", "");
return strNoNewLine == clickedWord;
}
/**
* Inject the string "tries" into the attempts portion of the HTML
* by deconstructing the "data" string and reconstructing it
*/
function injectTriesString(data)
{
var strippedStr = data.replace("</p>", "");
var finalStr = "<p>";
finalStr += strippedStr;
finalStr += " tries";
finalStr += "</p>";
return finalStr;
}
/**
* Take a string and extract the text values from it by removing the
* HTML tags around the text
*/
function stripHTML(string)
{
var strippedString = "";
var endTag = false;
// Loop through string and capture the characters between
// the close and open tags (detected by '>' and '<', repectively)
for(var index = 0; index < string.length; index++)
{
if(string[index] == '>')
{
endTag = true;
}
if(string[index] == '<')
{
endTag = false;
}
if(endTag && string[index] != '<' && string[index] != '>')
{
strippedString += string[index];
}
}
return strippedString;
}
/**
* Set up all event listeners (wait for a click)
*/
function setupEventListeners()
{
var wordElements = document.querySelectorAll(".wordChoice");
var giveUpButtons = document.querySelectorAll(".giveupButton");
var giveUpButton, wordElement;
var index;
for(index = 0; index < wordElements.length; index++)
{
wordElement = wordElements[index];
wordElement.addEventListener('click', function(event)
{
// Make sure the word is clickable (see the function
// definition for more description)
if(canClickWord(event))
{
var parentElement = event.target.parentNode;
let questionStrNoHTML = stripHTML(parentElement.innerHTML);
// Get attempts and check if the word is the correct answer
queryDatabase(questionStrNoHTML);
checkAnswer(event, questionStrNoHTML, event.target.innerHTML);
// Deactivate the clicked word (see student.css for more informatoin)
event.target.setAttribute("class", event.target.className + " disabled");
}
});
}
for(index = 0; index < giveUpButtons.length; index++)
{
giveUpButton = giveUpButtons[index];
giveUpButton.addEventListener('click', function(event)
{
updateGiveUpAttempt(event);
})
// Add or reset an attempt total/giveups for individual questions
questionAttempts.push(0);
giveups.push(0);
}
}
/**
* Check to see if the user can click a word
* They can only click it if the word has not been clicked
* and the correct answer has not been chosen
*/
function canClickWord(event)
{
var questionSec = event.target.parentNode;
var currWord = event.target;
return !questionSec.className.includes("disabled") &&
!currWord.className.includes("disabled");
}
/**
* Get the respective "attempt" section when a word is clicked
* in a question
*/
function getQuestionNum(wordElement)
{
let qClass = wordElement.target.parentElement.parentElement.className;
// Strip the question class of any characters (get the number)
let qNumber = qClass.replace("question", "");
return parseInt(qNumber);
}
/**
* Show the give up button for a specific question
*/
function showQuestionGiveUpButton(event)
{
let qSection = event.target.parentNode.parentNode;
let qAttSection = qSection.children[GIVEUP_INDEX];
qAttSection.setAttribute("style", "display: inline-block;");
}