1 let socket
= null; //monitor answers in real time
3 if (assessment
.mode
== "secure" && !checkWindowSize())
4 document
.location
.href
= "/fullscreen";
6 function checkWindowSize()
8 // NOTE: temporarily accept smartphone (security hole: pretend being a smartphone on desktop browser...)
9 if (navigator
.userAgent
.match(/(iPhone|iPod|iPad|Android|BlackBerry)/))
11 // 3 is arbitrary, but a small tolerance is required (e.g. in Firefox)
12 return window
.innerWidth
>= screen
.width
-3 && window
.innerHeight
>= screen
.height
-3;
18 assessment: assessment
,
19 answers: { }, //filled later with answering parameters
20 student: { }, //filled later (name, password)
21 // Stage 0: unauthenticated (number),
22 // 1: authenticated (got a name, unvalidated)
23 // 2: locked: password set, exam started
26 stage: assessment
.mode
!= "open" ? 0 : 1,
27 remainingTime: 0, //global, in seconds
31 countdown: function() {
32 let seconds
= this.remainingTime
% 60;
33 let minutes
= Math
.floor(this.remainingTime
/ 60);
34 return this.padWithZero(minutes
) + ":" + this.padWithZero(seconds
);
36 showAnswers: function() {
37 return this.stage
== 4;
42 if (assessment
.mode
!= "open")
44 window
.addEventListener("keydown", e
=> {
45 // Ignore F12 (avoid accidental window resize due to devtools)
46 // NOTE: in Chromium at least, fullscreen mode exit with F11 cannot be prevented.
47 // Workaround: disable key at higher level. Possible xbindkey config:
55 window
.addEventListener("blur", () => {
58 if (assessment
.mode
== "secure")
60 this.trySendCurrentAnswer();
61 document
.location
.href
= "/noblur";
63 else if (assessment
.mode
== "exam")
64 socket
.emit(message
.studentBlur
, {number:this.student
.number
});
66 if (assessment
.mode
== "exam")
68 window
.addEventListener("focus", () => {
71 socket
.emit(message
.studentFocus
, {number:this.student
.number
});
74 window
.addEventListener("resize", e
=> {
77 if (assessment
.mode
== "secure")
79 this.trySendCurrentAnswer();
80 document
.location
.href
= "/fullscreen";
82 else if (assessment
.mode
== "exam")
84 if (checkWindowSize())
85 socket
.emit(message
.studentFullscreen
, {number:this.student
.number
});
87 socket
.emit(message
.studentResize
, {number:this.student
.number
});
92 // In case of AJAX errors
93 showWarning: function(message
) {
94 this.warnMsg
= message
;
95 $("#warning").modal("open");
97 padWithZero: function(x
) {
102 trySendCurrentAnswer: function() {
107 getStudent: function(cb
) {
108 $.ajax("/get/student", {
111 number: this.student
.number
,
117 return this.showWarning(s
.errmsg
);
119 this.student
= s
.student
;
120 Vue
.nextTick( () => { Materialize
.updateTextFields(); });
127 cancelStudent: function() {
130 // stage 1 --> 2 (get all questions, set password)
131 startAssessment: function() {
132 let initializeStage2
= (questions
,paper
) => {
133 $("#leftButton, #rightButton").hide();
134 if (assessment
.time
> 0)
136 const deltaTime
= !!paper
? Date
.now() - paper
.startTime : 0;
137 this.remainingTime
= assessment
.time
* 60 - Math
.round(deltaTime
/ 1000);
140 // Initialize structured answer(s) based on questions type and nesting (TODO: more general)
142 assessment
.questions
= questions
;
143 this.answers
.inputs
= [ ];
144 for (let q
of assessment
.questions
)
145 this.answers
.inputs
.push( _(q
.options
.length
).times( _
.constant(false) ) );
148 this.answers
.indices
= assessment
.fixed
149 ? _
.range(assessment
.questions
.length
)
150 : _
.shuffle( _
.range(assessment
.questions
.length
) );
155 let indices
= paper
.inputs
.map( input
=> { return input
.index
; });
156 let remainingIndices
= _
.difference( _
.range(assessment
.questions
.length
).map(String
), indices
);
157 this.answers
.indices
= indices
.concat( _
.shuffle(remainingIndices
) );
159 this.answers
.index
= !!paper
? paper
.inputs
.length : 0;
160 this.answers
.displayAll
= assessment
.display
== "all";
161 this.answers
.showSolution
= false;
164 if (assessment
.mode
== "open")
165 return initializeStage2();
166 $.ajax("/start/assessment", {
169 number: this.student
.number
,
175 return this.showWarning(s
.errmsg
);
178 // Resuming: receive stored answers + startTime
179 this.student
.password
= s
.paper
.password
;
180 this.answers
.inputs
= s
.paper
.inputs
.map( inp
=> { return inp
.input
; });
184 this.student
.password
= s
.password
;
185 // Got password: students answers locked to this page until potential teacher
186 // action (power failure, computer down, ...)
188 socket
= io
.connect("/", {
189 query: "aid=" + assessment
._id
+ "&number=" + this.student
.number
+ "&password=" + this.student
.password
191 socket
.on(message
.allAnswers
, this.setAnswers
);
192 initializeStage2(s
.questions
, s
.paper
);
197 runTimer: function() {
198 if (assessment
.time
<= 0)
201 setInterval( function() {
202 self
.remainingTime
--;
203 if (self
.remainingTime
<= 0)
206 self
.endAssessment();
212 sendOneAnswer: function() {
213 const realIndex
= this.answers
.indices
[this.answers
.index
];
214 let gotoNext
= () => {
215 if (this.answers
.index
== assessment
.questions
.length
- 1)
216 this.endAssessment();
218 this.answers
.index
++;
219 this.$children
[0].$forceUpdate(); //TODO: bad HACK, and shouldn't be required...
221 if (assessment
.mode
== "open")
222 return gotoNext(); //only local
225 answer: JSON
.stringify({
226 index: realIndex
.toString(),
227 input: this.answers
.inputs
[realIndex
]
228 .map( (tf
,i
) => { return {val:tf
,idx:i
}; } )
229 .filter( item
=> { return item
.val
; })
230 .map( item
=> { return item
.idx
; })
232 number: this.student
.number
,
233 password: this.student
.password
,
235 $.ajax("/send/answer", {
241 return this.showWarning(ret
.errmsg
);
243 socket
.emit(message
.newAnswer
, answerData
);
247 // TODO: I don't like that + sending should not be definitive in exam mode with display = all
248 sendAnswer: function() {
249 if (assessment
.display
== "one")
250 this.sendOneAnswer();
252 assessment
.questions
.forEach(this.sendOneAnswer
);
254 // stage 2 --> 3 (or 4)
255 // from a message by statements component, or time over
256 endAssessment: function() {
257 // Set endTime, destroy password
258 $("#leftButton, #rightButton").show();
259 if (assessment
.mode
== "open")
262 this.answers
.showSolution
= true;
263 this.answers
.displayAll
= true;
266 $.ajax("/end/assessment", {
270 number: this.student
.number
,
271 password: this.student
.password
,
276 return this.showWarning(ret
.errmsg
);
278 delete this.student
["password"]; //unable to send new answers now
282 // stage 3 --> 4 (on socket message "feedback")
283 setAnswers: function(m
) {
284 const answers
= JSON
.parse(m
.answers
);
285 for (let i
=0; i
<answers
.length
; i
++)
286 assessment
.questions
[i
].answer
= answers
[i
];
287 this.answers
.showSolution
= true;
288 this.answers
.displayAll
= true;