forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessEpigraphJson.js
executable file
·51 lines (44 loc) · 1.46 KB
/
processEpigraphJson.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
import { recursiveProcessTextJson, processTextJson } from "../parseXmlJson";
import { recursiveProcessTextHtml } from "../parseXmlHtml";
export const processEpigraphJson = (node, obj) => {
obj["tag"] = "EPIGRAPH";
const childArr = [];
obj["child"] = childArr;
let child = node.firstChild;
let attribution = null;
for (child; child; child = child.nextSibling) {
if (child.nodeName == "ATTRIBUTION") {
attribution = child;
break;
} else {
const childObj = {};
processTextJson(child, childObj);
childArr.push(childObj);
}
}
if (attribution) {
const author = attribution.getElementsByTagName("AUTHOR")[0];
const title = attribution.getElementsByTagName("TITLE")[0];
const date = attribution.getElementsByTagName("DATE")[0];
if (author) {
const childObj = {};
recursiveProcessTextJson(author.firstChild, childObj);
obj["author"] = " " + childObj["child"][0]["body"] + (title ? ", " : "");
}
if (title) {
const childObj = {};
recursiveProcessTextJson(title.firstChild, childObj);
if (childObj["child"][0]["body"]) {
obj["title"] = childObj["child"][0]["body"];
} else {
obj["title"] = childObj["child"][0]["child"][0]["body"];
}
}
if (date) {
const childObj = {};
recursiveProcessTextJson(date.firstChild, childObj);
obj["date"] = " (" + childObj["child"][0]["body"] + ")";
}
}
};
export default processEpigraphJson;