-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformat.mma.js
executable file
·57 lines (48 loc) · 1.55 KB
/
format.mma.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
MM.Format.MMA = Object.create(MM.Format.FreeMind, {
id: {value: "mma"},
label: {value: "Mind Map Architect"},
extension: {value: "mma"}
});
MM.Format.MMA._parseAttributes = function(node, parent) {
var json = {
children: [],
text: MM.Format.nl2br(node.getAttribute("title") || ""),
shape: "box"
};
if (node.getAttribute("expand") == "false") { json.collapsed = 1; }
var direction = node.getAttribute("direction");
if (direction == "0") { json.side = "left"; }
if (direction == "1") { json.side = "right"; }
var color = node.getAttribute("color");
if (color) {
var re = color.match(/^#(....)(....)(....)$/);
if (re) {
var r = parseInt(re[1], 16) >> 8;
var g = parseInt(re[2], 16) >> 8;
var b = parseInt(re[3], 16) >> 8;
r = Math.round(r/17).toString(16);
g = Math.round(g/17).toString(16);
b = Math.round(b/17).toString(16);
}
json.color = "#" + [r,g,b].join("");
}
json.icon = node.getAttribute("icon");
return json;
}
MM.Format.MMA._serializeAttributes = function(doc, json) {
var elm = doc.createElement("node");
elm.setAttribute("title", MM.Format.br2nl(json.text));
elm.setAttribute("expand", json.collapsed ? "false" : "true");
if (json.side) { elm.setAttribute("direction", json.side == "left" ? "0" : "1"); }
if (json.color) {
var parts = json.color.match(/^#(.)(.)(.)$/);
var r = new Array(5).join(parts[1]);
var g = new Array(5).join(parts[2]);
var b = new Array(5).join(parts[3]);
elm.setAttribute("color", "#" + [r,g,b].join(""));
}
if (json.icon) {
elm.setAttribute("icon", json.icon);
}
return elm;
}