marks.js 2.47 KB
Newer Older
Artem Baranovskyi's avatar
Artem Baranovskyi committed
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
// Local/asystgrade/amd/src/marks.js


define(['core/ajax', 'core/log'], function(ajax, log) {
    return {
        init: function() {
            window.addEventListener('load', function() {
                const params = new URLSearchParams(window.location.search);
                const qid = params.get('qid');
                const slot = params.get('slot');

                window.console.log('marks.js initialized');
                console.log('Request about to be sent'); // До AJAX вызова
                // Выполняем AJAX запрос через core/ajax
                let request = ajax.call([{
                    methodname: 'local_asystgrade_update_grade', // Имя вашего PHP метода
                    args: {qid: qid, slot: slot},
                }]);
                // console.log('Request completed', response); // После получения ответа

                request[0].done(function(response) {
                    window.console.log('Response received:', response); // Печатает весь ответ
                    if (response.status === 'success') {
                        updateMarks(response.grades, response.inputNames, response.maxmark);
                    } else {
                        log.error(response.message);
                    }
                }).fail(function(ex) {
                    window.console.error('Ошибка AJAX запроса: ', ex);
                });
            });
        }
    };

    /**
     * Обновляет оценки на странице.
     *
     * @param {Array} grades - Массив оценок.
     * @param {Array} inputNames - Массив имен input элементов.
     * @param {number} maxmark - Максимальная оценка.
     */
    function updateMarks(grades, inputNames, maxmark) {
        // Обновляем DOM элемент на странице с оценками
        grades.forEach(function(grade, index) {
            const predictedGrade = grade.predicted_grade === 'correct' ? maxmark : 0;
            const inputName = inputNames[index];
            const inputElement = document.querySelector(`input[name="${inputName}"]`);

            if (inputElement) {
                inputElement.value = predictedGrade;
                // Console.log(`Updated input: ${inputName} with grade: ${predictedGrade}`);
            } else {
                // Console.warn(`Input not found: ${inputName}`);
            }
        });
    }
});