-
-
Notifications
You must be signed in to change notification settings - Fork 883
/
Copy pathjsmind.util.js
102 lines (96 loc) · 3.03 KB
/
jsmind.util.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
/**
* @license BSD
* @copyright 2014-2025 [email protected]
*
* Project Home:
* https://github.com/hizzgdev/jsmind/
*/
import { $ } from './jsmind.dom.js';
export const util = {
file: {
read: function (file_data, fn_callback) {
var reader = new FileReader();
reader.onload = function () {
if (typeof fn_callback === 'function') {
fn_callback(this.result, file_data.name);
}
};
reader.readAsText(file_data);
},
save: function (file_data, type, name) {
var blob;
if (typeof $.w.Blob === 'function') {
blob = new Blob([file_data], { type: type });
} else {
var BlobBuilder =
$.w.BlobBuilder ||
$.w.MozBlobBuilder ||
$.w.WebKitBlobBuilder ||
$.w.MSBlobBuilder;
var bb = new BlobBuilder();
bb.append(file_data);
blob = bb.getBlob(type);
}
if (navigator.msSaveBlob) {
navigator.msSaveBlob(blob, name);
} else {
var URL = $.w.URL || $.w.webkitURL;
var blob_url = URL.createObjectURL(blob);
var anchor = $.c('a');
if ('download' in anchor) {
anchor.style.visibility = 'hidden';
anchor.href = blob_url;
anchor.download = name;
$.d.body.appendChild(anchor);
var evt = $.d.createEvent('MouseEvents');
evt.initEvent('click', true, true);
anchor.dispatchEvent(evt);
$.d.body.removeChild(anchor);
} else {
location.href = blob_url;
}
}
},
},
json: {
json2string: function (json) {
return JSON.stringify(json);
},
string2json: function (json_str) {
return JSON.parse(json_str);
},
merge: function (b, a) {
for (var o in a) {
if (o in b) {
if (
typeof b[o] === 'object' &&
Object.prototype.toString.call(b[o]).toLowerCase() == '[object object]' &&
!b[o].length
) {
util.json.merge(b[o], a[o]);
} else {
b[o] = a[o];
}
} else {
b[o] = a[o];
}
}
return b;
},
},
uuid: {
newid: function () {
return (
new Date().getTime().toString(16) + Math.random().toString(16).substring(2)
).substring(2, 18);
},
},
text: {
is_empty: function (s) {
if (!s) {
return true;
}
return s.replace(/\s*/, '').length == 0;
},
},
};