forked from gnh1201/welsonjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebloader.js
155 lines (134 loc) · 4.73 KB
/
webloader.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
////////////////////////////////////////////////////////////////////////
// Webloader
////////////////////////////////////////////////////////////////////////
var CONFIG = require("lib/config");
var FILE = require("lib/file");
var OldBrowser = require("lib/oldbrowser");
////////////////////////////////////////////////////////////////////////
// Override global.console._echo()
////////////////////////////////////////////////////////////////////////
global.console._echo = function(args, type) {
var heading, icon, msg = this._join(args);
switch(type) {
case "error":
heading = "Error";
icon = "error";
break;
case "warning":
heading = "Warning";
icon = "warning";
break;
case "info":
heading = "Information";
icon = "info";
break;
default:
heading = "Success";
icon = "success";
}
try {
if (typeof(window.jQuery.toast) !== "undefined") {
window.jQuery.toast({
heading: heading,
text: msg,
icon: icon
});
} else {
window.alert(msg);
}
} catch (e) {
window.alert(e.message);
}
this._messages.push(msg);
if (params.channel != "default" && this._echoCallback != null) {
try {
this._echoCallback(params, type);
} catch (e) {
window.jQuery.toast({
heading: "Error",
text: e.message,
icon: "error"
});
}
}
};
////////////////////////////////////////////////////////////////////////
// Override global.exit()
////////////////////////////////////////////////////////////////////////
global.exit = function() {
if (typeof(window) !== "undefined") {
window.close();
}
};
////////////////////////////////////////////////////////////////////////
// this window makes movable
////////////////////////////////////////////////////////////////////////
(function(grip) {
var oX, oY,
mouseDown = function(e) {
if (e.offsetY + e.offsetX < 0) return;
oX = e.screenX;
oY = e.screenY;
window.addEventListener("mousemove", mouseMove);
window.addEventListener("mouseup", mouseUp);
},
mouseMove = function(e) {
window.moveTo(screenX + e.screenX - oX, screenY + e.screenY - oY);
oX = e.screenX;
oY = e.screenY;
},
gripMouseMove = function(e) {
this.style.cursor = (e.offsetY + e.offsetX > -1) ? "move" : "default";
},
mouseUp = function(e) {
window.removeEventListener("mousemove", mouseMove);
window.removeEventListener("mouseup", mouseUp);
};
grip.addEventListener("mousedown", mouseDown);
grip.addEventListener("mousemove", gripMouseMove);
})(document.getElementById("app"));
////////////////////////////////////////////////////////////////////////
// exports.IEVersion
////////////////////////////////////////////////////////////////////////
exports.IEVersion = OldBrowser.getIEVersion();
////////////////////////////////////////////////////////////////////////
// exports.main()
////////////////////////////////////////////////////////////////////////
exports.main = function(args) {
// make will display contents
OldBrowser.setContent(FILE.readFile("app\\index.html", "utf-8"));
// add stylesheets
OldBrowser.addStylesheet("app/assets/css/jquery-ui-1.21.1.min.css");
OldBrowser.addStylesheet("app/assets/css/jquery.toast-1.3.2.min.css");
OldBrowser.addStylesheet("app/assets/css/cascade/production/build-full.min.css");
OldBrowser.addStylesheet("app/assets/css/style.css");
// start
OldBrowser.start(function(el) {
jQuery.support.cors = true;
OldBrowser.addScript("app/assets/js/jquery.toast-1.3.2.min.js", function(el) {
var messages = global.console._messages;
if (messages.length > 0) {
// print messages
for (var i in messages) {
console.log(messages[i]);
}
// start this app
OldBrowser.addScript("app/assets/js/jquery.form-4.3.0.min.js");
OldBrowser.addScript("app/index.js");
// hide loading image
document.getElementById("loading").style.display = "none";
}
}, function(el) {
return window.jQuery.toast;
});
});
// hook drag event
document.body.ondragstart = function() {
return false;
};
// hook drop event
document.body.ondrop = function() {
return false;
};
return 0;
};