-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackend.file.js
executable file
·86 lines (75 loc) · 2.16 KB
/
backend.file.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
MM.Backend.File = Object.create(MM.Backend, {
id: {value: "file"},
label: {value: "File"},
input: {value:document.createElement("input")}
});
//////////////////////
//SAVE TestMap.mymind {
// "root": {
// "id": "kayormez",
// "text": "TestMap",
// "layout": "map",
// "children": [
// {
// "id": "rzgmikgl",
// "text": "Something To Play With",
// "side": "right"
// },
// {
// "id": "tnboseag",
// "text": "Something Else To Play With",
// "side": "left"
// },
// {
// "id": "jhhtbpej",
// "text": "Another Node",
// "side": "right"
// }
// ]
// }
//}
//https://stackoverflow.com/questions/8310657/how-to-create-a-dynamic-file-link-for-download-in-javascript
//////////////////////
MM.Backend.File.save = function(data, name) {
//console.log('SAVE', name, data);
var link = document.createElement("a");
link.download = name;
link.href = "data:text/plain;base64," + btoa(unescape(encodeURIComponent(data)));
document.body.appendChild(link);
link.click();
link.parentNode.removeChild(link);
// promise is here so this can return promise
// as called in ui.backend.file.js save()
var promise = new Promise().fulfill();
return promise;
}
MM.Backend.File.load = function() {
var promise = new Promise();
this.input.type = "file";
this.input.onchange = function(e) {
var file = e.target.files[0];
if (!file) { return; }
console.log("Load", file, file.name);
var reader = new FileReader();
reader.onload = function() { promise.fulfill({data:reader.result, name:file.name}); }
reader.onerror = function() { promise.reject(reader.error); }
reader.readAsText(file);
}.bind(this);
this.input.click();
return promise;
}
MM.Backend.File.boot = function(inFile) {
var promise = new Promise();
this.input.type = "file";
this.input.onchange = function(e) {
var file = "../data/nestedmaps/"+inFile;
if (!file) { return; }
console.log("Boot", file, file.name);
var reader = new FileReader();
reader.onload = function() { promise.fulfill({data:reader.result, name:file.name}); }
reader.onerror = function() { promise.reject(reader.error); }
reader.readAsText(file);
}.bind(this);
this.input.click();
return promise;
}