icp/oer/exercise-formats/program/match-regex/script.js

129 lines
3.1 KiB
JavaScript
Executable File

$(document).ready(function () {
response = {};
response.show = function (type, msg, output) {
//console.log("show issued" + type + msg);
html = "";
if (type == "test") {
} else {
if (msg.data.grade == "PASS") {
html = '<div class="alert alert-success" role="alert"><strong>Great!</strong> Your solution is correct.<br/></div>';
//$("#continue").prop( "disabled", false);
} else if (msg.data.grade == "FAIL") {
html = '<div class="alert alert-danger" role="alert"><strong>Sorry!</strong> That is not correct.<br/></div>';
} else {
// assume test
//html = msg;
// a possible message that is generated yb the server to give tips?
}
}
//console.log(output)
if ( output == "" ) {
output = "&nbsp;"
}
if ( output != false) {
//console.log("output is not false")
$("#output-wrapper").show(500);
$("#output").html(output);
}
$("#response").hide().html(html).show(500);
$("#submit-test").prop( "disabled", false);
$("#submit-grade").prop( "disabled", false);
}
job = {}
job.submit = function (action) {
$("#output").html("Submitted ... Processing ...");
//console.log("Test submission issued..");
//console.log( $("#c-code").val() );
submission = {"solution": cEditor.getValue(), "cmd": "run.sh", "action": action, "slide": window.data.slide};
submission_json = JSON.stringify(submission);
//console.log(submission_json)
$.ajax({
method: "POST",
url: "/api/rest/job/new/",
contentType: 'application/json',
data: submission_json
})
.done(function( msg ) {
//console.log("Job submitted: " + msg );
//console.log(msg);
job_id = msg['id'];
setTimeout(function(){ job.status(action, job_id); }, 100);
})
.error(function(jqXHR, textStatus, errorThrown ){
response.show("test", "", "Error: " + errorThrown);
});
};
job.status = function (type, job_id) {
//console.log(type)
$.ajax({
method: "GET",
url: "/api/rest/job/" + job_id + "/",
contentType: 'application/json',
})
.done(function( msg ) {
//console.log("Status received: " + msg );
//console.log(msg);
if ( msg.status == 'SUCCESS' ) {
response.show(type, msg, msg.data.output);
} else {
response.show(type, "processing...", false);
setTimeout(function(){ job.status(type, job_id); }, 1000);
}
})
.error(function(jqXHR, textStatus, errorThrown ){
response.show("test", "", "Error: " + errorThrown);
});
};
$("#submit-test").click(function(event) {
//$("#submit-test").prop( "disabled", true);
job.submit("test");
});
$("#submit-grade").click(function(event) {
//$("#submit-grade").prop( "disabled", true);
job.submit("grade");
});
$("#exercise-choices a.list-group-item").click(function(event) {
event.preventDefault()
//$("#submit-test").prop( "disabled", true);
//job.submit("test");
target = event.target
if ( $(target).is('input') ) {
target = $(event.target).parent()[0]
} else {
// also check/uncheck when clicking surounding
}
console.log(target)
$(target).children("input").each(function () { this.checked = !this.checked; console.log(this) });
//$(target).toggleClass("list-group-item-success");
});
});