Skip to content

Commit e8fdc26

Browse files
committed
document the code
1 parent 27e902f commit e8fdc26

File tree

9 files changed

+184
-101
lines changed

9 files changed

+184
-101
lines changed

app/assets/javascripts/dag.js

+23-22
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1+
// Main function to build a graph based on a Directed Acyclic Graph (DAG) representation and a mapping from node values to labels.
12
function buildGraph(dag, nodeValueToLabel) {
2-
const graph = {};
3-
const inDegree = {};
3+
const graph = {}; // Object to hold the adjacency list representation of the graph.
4+
const inDegree = {}; // Object to hold the in-degree count for each node.
45

5-
// initialize graph and in-degree
6+
// Initialize graph and in-degree for each node based on the nodeValueToLabel mapping.
67
for (const nodeLabel in nodeValueToLabel) {
78
graph[nodeLabel] = [];
89
inDegree[nodeLabel] = 0;
910
}
1011

11-
// parse the DAG and build the graph
12+
// Parse the DAG string, build the graph and calculate in-degrees.
1213
const lines = dag.split('\n');
1314
for (const line of lines) {
1415
const parts = line.split(':').map(part => part.trim());
@@ -17,8 +18,8 @@ function buildGraph(dag, nodeValueToLabel) {
1718
const dependencies = parts[1].split(' ').filter(label => label !== '');
1819
for (const dependency of dependencies) {
1920
if (dependency !== '-1' && nodeValueToLabel[nodeLabel] !== undefined && nodeValueToLabel[dependency] !== undefined) {
20-
graph[nodeLabel].push(dependency); // add dependency to the graph
21-
inDegree[dependency]++; // increment in-degree of the dependency
21+
graph[nodeLabel].push(dependency); // Add dependency to the node's adjacency list.
22+
inDegree[dependency]++; // Increment in-degree count for the dependency.
2223
}
2324
}
2425
}
@@ -29,20 +30,21 @@ function buildGraph(dag, nodeValueToLabel) {
2930
return { graph, inDegree };
3031
}
3132

32-
33+
// Processes the solution by validating the sequence of nodes against the graph's dependencies.
3334
function processSolution(solution, graph, inDegree, nodeValueToLabel) {
3435
console.log("processSolution:", solution);
3536
console.log("processnodeValueToLabel:", nodeValueToLabel);
36-
const visited = new Set();
37+
const visited = new Set(); // Set to track visited nodes.
3738

39+
// Process each node in the solution, ensuring all dependencies are met.
3840
for (const nodeText of solution) {
3941
const nodeLabel = Object.keys(nodeValueToLabel).find(
40-
(label) => nodeValueToLabel[label] === nodeText
42+
label => nodeValueToLabel[label] === nodeText
4143
);
4244

4345
if (nodeLabel === undefined) {
4446
console.log("Skipping node not found in nodeValueToLabel:", nodeText);
45-
continue; // jump to the next node
47+
continue; // Skip if node is not found in mapping.
4648
}
4749

4850
console.log('Current label:', nodeLabel);
@@ -51,28 +53,26 @@ function processSolution(solution, graph, inDegree, nodeValueToLabel) {
5153

5254
visited.add(nodeLabel);
5355

54-
// check if the node has dependencies
56+
// Check if all dependencies of the current node have been visited.
5557
for (const dependencyLabel of graph[nodeLabel]) {
5658
if (!visited.has(dependencyLabel)) {
5759
console.error("Dependency not satisfied:", nodeText, "depends on", nodeValueToLabel[dependencyLabel]);
58-
return false;
60+
return false; // Dependency check failed.
5961
}
6062
}
6163
}
6264

63-
// check if all nodes were visited
65+
// Ensure all nodes were visited.
6466
if (visited.size !== Object.keys(nodeValueToLabel).length) {
6567
console.error("Not all nodes in nodeValueToLabel were visited.");
6668
return false;
6769
}
6870

6971
console.log('Visited nodes:', Array.from(visited));
70-
return true;
72+
return true; // All checks passed.
7173
}
7274

73-
74-
75-
75+
// High-level function to process the DAG and the solution together.
7676
function processDAG(dag, solution, nodeValueToLabel) {
7777
console.log("DAG:", dag);
7878
console.log("Node value to label mapping:", nodeValueToLabel);
@@ -81,17 +81,18 @@ function processDAG(dag, solution, nodeValueToLabel) {
8181
return result;
8282
}
8383

84+
// Extracts and maps the solution to the corresponding node labels.
8485
function extractCode(solution, nodeValueToLabel) {
8586
const code = [];
8687
const newNodeValueToLabel = {};
8788
for (const nodeText of solution) {
8889
const nodeLabel = Object.keys(nodeValueToLabel).find(
89-
(key) => nodeValueToLabel[key] === nodeText
90+
key => nodeValueToLabel[key] === nodeText
9091
);
9192
if (nodeLabel !== undefined) {
92-
code.push(nodeText);
93-
newNodeValueToLabel[nodeLabel] = nodeText;
93+
code.push(nodeText); // Collect the node text for the final code array.
94+
newNodeValueToLabel[nodeLabel] = nodeText; // Map labels to node texts.
9495
}
9596
}
96-
return { code, newNodeValueToLabel };
97-
}
97+
return { code, newNodeValueToLabel }; // Return the processed code and updated mapping.
98+
}

app/assets/javascripts/peml_code.js

+30-26
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,64 @@
11
const url = "https://skynet.cs.vt.edu/peml-live/api/parse";
22

3-
// 获取 PEML 数据
3+
// Fetch the PEML data from a local file.
44
fetch('/data/s7.peml')
55
.then(response => {
6+
// Convert the response to text format.
67
return response.text();
78
})
89
.then(pemlText => {
10+
// Construct the payload to send in the POST request.
911
const payload = {
10-
"peml": pemlText,
11-
"output_format": "json",
12-
"render_to_html": "true"
12+
"peml": pemlText, // The PEML data as text.
13+
"output_format": "json", // Specify the output format as JSON.
14+
"render_to_html": "true" // Request HTML rendering.
1315
};
1416

15-
// 发送 POST 请求进行解析
17+
// Send a POST request to the server to parse the PEML text.
1618
$.post(url, payload, function(data, status) {
17-
console.log('Post status:', status);
18-
console.log('Post data:', data);
19+
console.log('Post status:', status); // Log the status of the POST request.
20+
console.log('Post data:', data); // Log the data received from the POST request.
1921

20-
// 检查服务器响应数据是否包含所需字段
22+
// Check if the server's response contains the necessary fields.
2123
if (data && data.title && data.instructions && data.assets && data.assets.code && data.assets.code.starter && data.assets.code.starter.files && data.assets.code.starter.files[0] && data.assets.code.starter.files[0].content) {
22-
// 获取你需要的字段
23-
var title = data.title.split(" -- ")[0];
24-
var instructions = data.instructions;
25-
var initialArray = data.assets.code.starter.files[0].content.map(item => item.code.split('\\n'));
24+
// Extract the required fields from the response.
25+
var title = data.title.split(" -- ")[0]; // Get the title and clean it.
26+
var instructions = data.instructions; // Get the instructions directly.
27+
var initialArray = data.assets.code.starter.files[0].content.map(item => item.code.split('\\n')); // Process the initial array of code.
2628

27-
// 在这里使用你获取的字段
28-
document.getElementById("title").innerHTML = title;
29-
document.getElementById("instructions").innerHTML = instructions;
29+
// Use the extracted fields in your application.
30+
document.getElementById("title").innerHTML = title; // Display the title.
31+
document.getElementById("instructions").innerHTML = instructions; // Display the instructions.
3032

31-
var parson = new ParsonsWidget();
32-
parson.init(initialArray);
33-
parson.shuffleLines();
33+
var parson = new ParsonsWidget(); // Create a new ParsonsWidget instance.
34+
parson.init(initialArray); // Initialize the widget with the initial array.
35+
parson.shuffleLines(); // Shuffle the lines initially.
3436

37+
// Add an event listener for creating a new instance of the shuffled lines.
3538
$("#newInstanceLink").click(function(event) {
3639
event.preventDefault();
3740
parson.shuffleLines();
3841
});
3942

43+
// Add an event listener for providing feedback.
4044
$("#feedbackLink").click(function(event) {
4145
event.preventDefault();
4246
var fb = parson.getFeedback();
43-
$("#feedback").html(fb.feedback);
47+
$("#feedback").html(fb.feedback); // Display the feedback.
4448
if (fb.success) {
45-
score = 50;
49+
score = 50; // Set score on success.
4650
} else {
47-
score = 0;
51+
score = 0; // Reset score on failure.
4852
}
49-
updateScore(score);
53+
updateScore(score); // Update the score display.
5054
});
5155

5256
function updateScore(score) {
53-
// 更新分数的代码
57+
// Implement the logic to update the score in the UI or backend.
5458
}
5559
} else {
56-
console.error('服务器响应数据不完整或格式不正确');
57-
// 在这里处理服务器响应数据不完整或格式不正确的情况
60+
console.error('Incomplete or incorrect server response data.');
61+
// Handle cases where server response data is incomplete or incorrect.
5862
}
5963
});
60-
});
64+
});

app/assets/javascripts/simple_code.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ $(document).ready(function(){
66
Sk.canvas = "studentCanvas";
77
$.getJSON('/data/simple_code.json', function(response) {
88
data = response;
9+
// get the specific exercise data
910
var externalIdElement = document.getElementById("exercise-data");
1011
var externalId = externalIdElement.getAttribute("data-external-id");
1112
var initial = data[index]['initial'];
@@ -15,14 +16,9 @@ $(document).ready(function(){
1516
document.getElementById("instructions").innerHTML = data[index].instructions;
1617
config.sortableId = 'sortable';
1718
config.trashId = 'sortableTrash';
18-
console.log(data[index]['parsonsConfig']
19-
['turtleModelCode']);
20-
console.log(externalId)
21-
// 如果config中有turtleModelCode,就把grader改成TurtleGrader
19+
// if there is a turtle model code, use the turtle grader
2220
if (data[index]['parsonsConfig']['turtleModelCode']) {
2321
config.grader = ParsonsWidget._graders.TurtleGrader;
24-
console.log("有乌龟")
25-
2622
} else {
2723
config.grader = ParsonsWidget._graders.LanguageTranslationGrader;
2824
}
@@ -81,4 +77,4 @@ $(document).ready(function(){
8177
}
8278
});
8379
}
84-
});
80+
});

app/assets/javascripts/simple_pseudocode.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// This file is used to create a Parsons problem for the simple pseudocode exercise
12
var initial = 'IF $$toggle::a::b$$ $$toggle::<::>::<>$$ b THEN\n min := a\nELSE\n min := b\nENDIF';
23
var parson;
34
$(document).ready(function(){

0 commit comments

Comments
 (0)