thoughts about time, refactor statements component
[qomet.git] / public / javascripts / assessment.js
index aced6f2..9275879 100644 (file)
@@ -10,9 +10,9 @@ function checkWindowSize()
                return true;
        // 3 is arbitrary, but a small tolerance is required (e.g. in Firefox)
        return window.innerWidth >= screen.width-3 && window.innerHeight >= screen.height-3;
-};
+}
 
-let V = new Vue({
+new Vue({
        el: "#assessment",
        data: {
                assessment: assessment,
@@ -23,45 +23,62 @@ let V = new Vue({
                //       2: locked: password set, exam started
                //       3: completed
                //       4: show answers
+               remainingTime: assessment.time, //integer or array
                stage: assessment.mode != "open" ? 0 : 1,
-               remainingTime: 0, //global, in seconds
                warnMsg: "",
        },
        computed: {
                countdown: function() {
-                       let seconds = this.remainingTime % 60;
-                       let minutes = Math.floor(this.remainingTime / 60);
+                       const remainingTime = assessment.display == "one" && _.isArray(assessment.time)
+                               ? this.remainingTime[this.answers.index]
+                               : this.remainingTime;
+                       let seconds = remainingTime % 60;
+                       let minutes = Math.floor(remainingTime / 60);
                        return this.padWithZero(minutes) + ":" + this.padWithZero(seconds);
                },
-               showAnswers: function() {
-                       return this.stage == 4;
-               },
        },
        mounted: function() {
                $(".modal").modal();
-               if (assessment.mode != "secure")
+               if (["exam","open"].includes(assessment.mode))
                        return;
-               window.addEventListener("keydown", e => {
-                       // Ignore F12 (avoid accidental window resize due to devtools)
-                       // NOTE: in Chromium at least, fullscreen mode exit with F11 cannot be prevented.
-                       // Workaround: disable key at higher level. Possible xbindkey config:
-                       // "false"
-                       //   m:0x10 + c:95
-                       //   Mod2 + F11
-                       if (e.keyCode == 123)
-                               e.preventDefault();
-               }, false);
                window.addEventListener("blur", () => {
-                       this.trySendCurrentAnswer();
-                       document.location.href= "/noblur";
+                       if (this.stage != 2)
+                               return;
+                       if (assessment.mode == "secure")
+                       {
+                               this.sendAnswer();
+                               document.location.href= "/noblur";
+                       }
+                       else //"watch" mode
+                               socket.emit(message.studentBlur, {number:this.student.number});
                }, false);
+               if (assessment.mode == "watch")
+               {
+                       window.addEventListener("focus", () => {
+                               if (this.stage != 2)
+                                       return;
+                               socket.emit(message.studentFocus, {number:this.student.number});
+                       }, false);
+               }
                window.addEventListener("resize", e => {
-                       this.trySendCurrentAnswer();
-                       document.location.href= "/fullscreen";
+                       if (this.stage != 2)
+                               return;
+                       if (assessment.mode == "secure")
+                       {
+                               this.sendAnswer();
+                               document.location.href = "/fullscreen";
+                       }
+                       else //"watch" mode
+                       {
+                               if (checkWindowSize())
+                                       socket.emit(message.studentFullscreen, {number:this.student.number});
+                               else
+                                       socket.emit(message.studentResize, {number:this.student.number});
+                       }
                }, false);
        },
        methods: {
-               // In case of AJAX errors
+               // In case of AJAX errors (not blur-ing)
                showWarning: function(message) {
                        this.warnMsg = message;
                        $("#warning").modal("open");
@@ -71,12 +88,8 @@ let V = new Vue({
                                return "0" + x;
                        return x;
                },
-               trySendCurrentAnswer: function() {
-                       if (this.stage == 2)
-                               this.sendAnswer();
-               },
                // stage 0 --> 1
-               getStudent: function(cb) {
+               getStudent: function() {
                        $.ajax("/get/student", {
                                method: "GET",
                                data: {
@@ -90,8 +103,6 @@ let V = new Vue({
                                        this.stage = 1;
                                        this.student = s.student;
                                        Vue.nextTick( () => { Materialize.updateTextFields(); });
-                                       if (!!cb)
-                                               cb();
                                },
                        });
                },
@@ -101,15 +112,14 @@ let V = new Vue({
                },
                // stage 1 --> 2 (get all questions, set password)
                startAssessment: function() {
-                       let initializeStage2 = (questions,paper) => {
+                       let initializeStage2 = paper => {
                                $("#leftButton, #rightButton").hide();
-                               if (assessment.time > 0)
-                               {
-                                       const deltaTime = !!paper ? Date.now() - paper.startTime : 0;
-                                       this.remainingTime = assessment.time * 60 - Math.round(deltaTime / 1000);
-                                       this.runTimer();
-                               }
                                // Initialize structured answer(s) based on questions type and nesting (TODO: more general)
+                               
+                               // if display == "all" getQuestionS
+                               // otherwise get first question
+                               
+                               
                                if (!!questions)
                                        assessment.questions = questions;
                                this.answers.inputs = [ ];
@@ -128,6 +138,24 @@ let V = new Vue({
                                        let remainingIndices = _.difference( _.range(assessment.questions.length).map(String), indices );
                                        this.answers.indices = indices.concat( _.shuffle(remainingIndices) );
                                }
+
+
+
+
+
+
+
+                               if (assessment.time > 0)
+                               {
+
+// TODO: distinguish total exam time AND question time
+
+                                       const deltaTime = !!paper ? Date.now() - paper.startTime : 0;
+                                       this.remainingTime = assessment.time * 60 - Math.round(deltaTime / 1000);
+                                       this.runTimer();
+                               }
+
+
                                this.answers.index = !!paper ? paper.inputs.length : 0;
                                this.answers.displayAll = assessment.display == "all";
                                this.answers.showSolution = false;
@@ -157,7 +185,7 @@ let V = new Vue({
                                                // Got password: students answers locked to this page until potential teacher
                                                // action (power failure, computer down, ...)
                                        }
-                                       socket = io.connect("/" + assessment.name, {
+                                       socket = io.connect("/", {
                                                query: "aid=" + assessment._id + "&number=" + this.student.number + "&password=" + this.student.password
                                        });
                                        socket.on(message.allAnswers, this.setAnswers);
@@ -165,8 +193,10 @@ let V = new Vue({
                                },
                        });
                },
+
+
                // stage 2
-               runTimer: function() {
+               runGlobalTimer: function() {
                        if (assessment.time <= 0)
                                return;
                        let self = this;
@@ -180,6 +210,23 @@ let V = new Vue({
                                }
                        }, 1000);
                },
+               runQuestionTimer: function(idx) {
+                       if (assessment.questions[idx].time <= 0)
+                               return;
+                       let self = this; //TODO: question remaining time
+                       setInterval( function() {
+                               self.remainingTime--;
+                               if (self.remainingTime <= 0)
+                               {
+                                       if (self.stage == 2)
+                                               self.endAssessment();
+                                       clearInterval(this);
+                               }
+                       }, 1000);
+               },
+
+//TODO: get question after sending answer
+
                // stage 2
                sendOneAnswer: function() {
                        const realIndex = this.answers.indices[this.answers.index];
@@ -232,6 +279,7 @@ let V = new Vue({
                        {
                                this.stage = 4;
                                this.answers.showSolution = true;
+                               this.answers.displayAll = true;
                                return;
                        }
                        $.ajax("/end/assessment", {
@@ -245,20 +293,21 @@ let V = new Vue({
                                success: ret => {
                                        if (!!ret.errmsg)
                                                return this.showWarning(ret.errmsg);
-                                       assessment.conclusion = ret.conclusion;
                                        this.stage = 3;
                                        delete this.student["password"]; //unable to send new answers now
-                                       socket.disconnect();
-                                       socket = null;
                                },
                        });
                },
                // stage 3 --> 4 (on socket message "feedback")
                setAnswers: function(m) {
-                       for (let i=0; i<m.answers.length; i++)
-                               assessment.questions[i].answer = m.answers[i];
+                       const answers = JSON.parse(m.answers);
+                       for (let i=0; i<answers.length; i++)
+                               assessment.questions[i].answer = answers[i];
                        this.answers.showSolution = true;
+                       this.answers.displayAll = true;
                        this.stage = 4;
+                       socket.disconnect();
+                       socket = null;
                },
        },
 });