forked from RandomMinds/vtree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arospec.js
97 lines (84 loc) · 2.75 KB
/
arospec.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
var vt;
window.onload = function () {
var container = document.getElementById("container");
var msg = document.getElementById("msg");
vt = new VTree(container);
var reader = new VTree.reader.Object();
function fileToText(file, callback) {
const reader = new FileReader();
reader.readAsText(file);
reader.onload = () => {
callback(reader.result);
};
}
function updateTree() {
// Best practische totally
var s =`[{
"Romantisch":"Romantische Anziehung",
"Romantische Anziehung":
[{
"Normative Anziehung":"Alloromantisch",
"Sehr starke Anziehung":"Hyperromantisch",
"Keine Anziehung":"Aromantisch",
"Anziehungsstärke variiert":"Aroflux",
"Anziehungsstärkenspitzen":"Arospitze",
"Undefiniert":"Qouiromantisch",
"Uninteressant":"Qouiromantisch",
"Unbedeutend":"Qouiromantisch",
"Keine Unterscheidbarkeit":"Platoniromantisch",
"Platoniromantisch aufgr. ND":"Nebularomantisch",
"Aromantisches Spektrum":"arospec",
"arospec":
[{
"Umbrella Term":"Aromantisch",
"Kein Passendes Label":"Alicoromantisch",
"Graubereich":"Greyromantisch",
"Greyromantisch":
[{
"Vorraussetzungen":"Bedingungen",
"Bedingungen":
[{
"Mentale Anziehung":"Encephaloromantisch",
"Emotionales Band":"Demiromantisch",
"Keine tiefe Verbindung":"Frayromantisch",
"r. Anziehung d.a. Person":"Reciproromantisch",
"keine r. Anziehung d.a. Person":"Akoiromantisch"
}]
}],
"Wunsch nach romantischer Interaktion":"Cupioromantisch"
}]
}],
"Romantische Interaktion":
[{
"Ohne Anziehung":"o. Anziehung...",
"o. Anziehung...":
[{
"Wunsch nach romantischer Interaktion":"Cupioromantisch"
}],
"Positiv ggü romantischer Interaktion":"Romance Favourable"
}],
"Abstraktionsebene0":"Abstraktionsebene",
"Abstraktionsebene":
[{
"Fiktive Charakteren":"Fiktoromantisch"
}],
"Mentale Anziehung":"Mental Attraction...",
"Mental Attraction...":
[{
"Gleiche Wellenlänge":"Neotisch"
}]
}]`
//var s = fileToText(inhalt.json)
//var s = document.getElementById("from-text").value;
msg.innerHTML = '';
try {
var jsonData = JSON.parse(s);
} catch (e) {
msg.innerHTML = 'JSON parse error: ' + e.message;
}
var data = reader.read(jsonData);
vt.data(data)
.update();
}
updateTree();
};