forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessReferenceHtml.js
167 lines (145 loc) · 5.03 KB
/
processReferenceHtml.js
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import { repeatedRefNameWarning, missingReferenceWarning } from "./warnings.js";
import { allFilepath, tableOfContent } from "../index.js";
import { tagsToRemove } from "../parseXmlHtml";
import { ancestorHasTag } from "../utilityFunctions";
export const referenceStore = {};
let chapter_number = 0;
let subsubsection_count;
let fig_count;
let foot_count;
let ex_count;
let unlabeledEx = 0;
const ifIgnore = node => {
let ifIgnore = false;
tagsToRemove.forEach(tag => {
if (ancestorHasTag(node, tag)) {
ifIgnore = true;
}
});
return ifIgnore;
};
export const setupReferences = (node, filename) => {
const chapArrIndex = allFilepath.indexOf(filename);
const chapterIndex = tableOfContent[filename].index;
subsubsection_count = 0;
foot_count = 0;
if (chapter_number != chapterIndex.substring(0, 1)) {
chapter_number = chapterIndex.substring(0, 1);
fig_count = 0;
ex_count = 0;
}
//Enumerate all footnotes in the subsection
const footnotes = node.getElementsByTagName("FOOTNOTE");
for (let i = 0; footnotes[i]; ++i) {
const footnote = footnotes[i];
footnote.footnote_count = i + 1;
}
//console.log("setting up " + chapterIndex);
const labels = node.getElementsByTagName("LABEL");
for (let i = 0; labels[i]; i++) {
const label = labels[i];
const referenceName = label.getAttribute("NAME");
const ref_type = referenceName.split(":")[0];
//const ref_name = referenceName.split(":")[1];
if (referenceStore[referenceName]) {
console.log(chapterIndex);
repeatedRefNameWarning(referenceName);
continue;
}
let href;
let displayName;
if (ref_type == "chap") {
displayName = chapterIndex;
href = `${chapterIndex}.html`;
} else if (ref_type == "sec") {
if (ancestorHasTag(label, "SUBSUBSECTION")) {
subsubsection_count++;
displayName = `${chapterIndex}.${subsubsection_count}`;
href = `${chapterIndex}.html#sec${chapterIndex}.${subsubsection_count}`;
} else {
displayName = chapterIndex;
href = `${chapterIndex}.html`;
}
} else if (ref_type == "fig") {
fig_count++;
displayName = `${chapter_number}.${fig_count}`;
href = `${chapterIndex}.html#fig_${displayName}`;
} else if (ref_type == "foot") {
// Retrieve count from the parent node, setup before this loop
foot_count = label.parentNode.footnote_count;
displayName = foot_count;
href = `${chapterIndex}.html#footnote-${foot_count}`;
} else {
continue;
}
//console.log(referenceName + " added");
referenceStore[referenceName] = { href, displayName, chapterIndex };
}
// set up exercise references separately
// account for unlabeled exercises
const exercises = node.getElementsByTagName("EXERCISE");
for (let i = 0; exercises[i]; i++) {
const exercise = exercises[i];
if (ifIgnore(exercise)) {
continue;
}
const label = exercise.getElementsByTagName("LABEL")[0];
let referenceName;
let ref_type;
if (!label) {
//unlabelled exercise
unlabeledEx++;
referenceName = "ex:unlabeled" + unlabeledEx;
ref_type = referenceName.split(":")[0];
} else {
referenceName = label.getAttribute("NAME");
ref_type = referenceName.split(":")[0];
}
if (ref_type != "ex") {
continue;
}
if (referenceStore[referenceName]) {
console.log(chapterIndex);
repeatedRefNameWarning(referenceName);
continue;
}
ex_count++;
const displayName = `${chapter_number}.${ex_count}`;
const href = `${chapterIndex}.html#ex_${displayName}`;
//console.log(referenceName + " added");
referenceStore[referenceName] = { href, displayName, chapterIndex };
}
};
export const processReferenceHtml = (node, writeTo, chapterIndex) => {
const referenceName = node.getAttribute("NAME");
if (!referenceStore[referenceName]) {
missingReferenceWarning(referenceName);
return;
}
const href = referenceStore[referenceName].href;
const displayName = referenceStore[referenceName].displayName;
const ref_type = referenceName.split(":")[0];
writeTo.push(`<REF NAME="${referenceName}">`);
if (ref_type == "chap") {
writeTo.push(
`<a class="superscript" id="${chapterIndex}-chap-link-${displayName}" href="./${href}">${displayName}</a></REF>`
);
} else if (ref_type == "sec") {
writeTo.push(
`<a class="superscript" id="${chapterIndex}-sec-link-${displayName}" href="./${href}">${displayName}</a></REF>`
);
} else if (ref_type == "fig") {
writeTo.push(
`<a class="superscript" id="${chapterIndex}-fig-link-${displayName}" href="./${href}">${displayName}</a></REF>`
);
} else if (ref_type == "ex") {
writeTo.push(
`<a class="superscript" id="${chapterIndex}-ex-link-${displayName}" href="./${href}">${displayName}</a></REF>`
);
} else if (ref_type == "foot") {
writeTo.push(
`<a class="superscript" id="${chapterIndex}-foot-link-${displayName}" href="./${href}">${displayName}</a></REF>`
);
}
};
export default processReferenceHtml;