forked from icza/gowut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
js.go
324 lines (278 loc) · 8.52 KB
/
js.go
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
// Copyright (C) 2013 Andras Belicza. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Built-in static JavaScript codes of Gowut.
package gwu
import (
"strconv"
)
// Static JavaScript resource name
const resNameStaticJs = "gowut-" + GowutVersion + ".js"
// Static javascript code
var staticJs []byte
func init() {
// Init staticJs
staticJs = []byte("" +
// Param consts
"var _pEventType='" + paramEventType +
"',_pCompId='" + paramCompId +
"',_pCompValue='" + paramCompValue +
"',_pFocCompId='" + paramFocusedCompId +
"',_pMouseWX='" + paramMouseWX +
"',_pMouseWY='" + paramMouseWY +
"',_pMouseX='" + paramMouseX +
"',_pMouseY='" + paramMouseY +
"',_pMouseBtn='" + paramMouseBtn +
"',_pModKeys='" + paramModKeys +
"',_pKeyCode='" + paramKeyCode +
"';\n" +
// Modifier key masks
"var _modKeyAlt=" + strconv.Itoa(int(ModKeyAlt)) +
",_modKeyCtlr=" + strconv.Itoa(int(ModKeyCtrl)) +
",_modKeyMeta=" + strconv.Itoa(int(ModKeyMeta)) +
",_modKeyShift=" + strconv.Itoa(int(ModKeyShift)) +
";\n" +
// Event response action consts
"var _eraNoAction=" + strconv.Itoa(eraNoAction) +
",_eraReloadWin=" + strconv.Itoa(eraReloadWin) +
",_eraDirtyComps=" + strconv.Itoa(eraDirtyComps) +
",_eraFocusComp=" + strconv.Itoa(eraFocusComp) +
";" +
`
function createXmlHttp() {
if (window.XMLHttpRequest) // IE7+, Firefox, Chrome, Opera, Safari
return new XMLHttpRequest();
else // IE6, IE5
return new ActiveXObject("Microsoft.XMLHTTP");
}
// Send event
function se(event, etype, compId, compValue) {
var xhr = createXmlHttp();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200)
procEresp(xhr);
}
xhr.open("POST", _pathEvent, true); // asynch call
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
var data="";
if (etype != null)
data += "&" + _pEventType + "=" + etype;
if (compId != null)
data += "&" + _pCompId + "=" + compId;
if (compValue != null)
data += "&" + _pCompValue + "=" + compValue;
if (document.activeElement.id != null)
data += "&" + _pFocCompId + "=" + document.activeElement.id;
if (event != null) {
if (event.clientX != null) {
// Mouse data
var x = event.clientX, y = event.clientY;
data += "&" + _pMouseWX + "=" + x;
data += "&" + _pMouseWY + "=" + y;
var parent = document.getElementById(compId);
do {
x -= parent.offsetLeft;
y -= parent.offsetTop;
} while (parent = parent.offsetParent);
data += "&" + _pMouseX + "=" + x;
data += "&" + _pMouseY + "=" + y;
data += "&" + _pMouseBtn + "=" + (event.button < 4 ? event.button : 1); // IE8 and below uses 4 for middle btn
}
var modKeys;
modKeys += event.altKey ? _modKeyAlt : 0;
modKeys += event.ctlrKey ? _modKeyCtlr : 0;
modKeys += event.metaKey ? _modKeyMeta : 0;
modKeys += event.shiftKey ? _modKeyShift : 0;
data += "&" + _pModKeys + "=" + modKeys;
data += "&" + _pKeyCode + "=" + (event.which ? event.which : event.keyCode);
}
xhr.send(data);
}
function procEresp(xhr) {
var actions = xhr.responseText.split(";");
if (actions.length == 0) {
window.alert("No response received!");
return;
}
for (var i = 0; i < actions.length; i++) {
var n = actions[i].split(",");
switch (parseInt(n[0])) {
case _eraDirtyComps:
for (var j = 1; j < n.length; j++)
rerenderComp(n[j]);
break;
case _eraFocusComp:
if (n.length > 1)
focusComp(parseInt(n[1]))
break;
case _eraNoAction:
break;
case _eraReloadWin:
if (n.length > 1 && n[1].length > 0)
window.location.href = _pathApp + n[1];
else
window.location.reload(true); // force reload
break;
default:
window.alert("Unknown response code:" + n[0]);
break;
}
}
}
function rerenderComp(compId) {
var e = document.getElementById(compId);
if (!e) // Component removed or not visible (e.g. on inactive tab of TabPanel)
return;
var xhr = createXmlHttp();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
// Remember focused comp which might be replaced here:
var focusedCompId = document.activeElement.id;
e.outerHTML = xhr.responseText;
focusComp(focusedCompId);
// Inserted JS code is not executed automatically, do it manually:
// Have to "re-get" element by compId!
var scripts = document.getElementById(compId).getElementsByTagName("script");
for (var i = 0; i < scripts.length; i++) {
eval(scripts[i].innerText);
}
}
}
xhr.open("POST", _pathRenderComp, false); // synch call (if async, browser specific DOM rendering errors may arise)
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send(_pCompId + "=" + compId);
}
// Get selected indices (of an HTML select)
function selIdxs(select) {
var selected = "";
for (var i = 0; i < select.options.length; i++)
if(select.options[i].selected)
selected += i + ",";
return selected;
}
// Get and update switch button value
function sbtnVal(event, onBtnId, offBtnId) {
var onBtn = document.getElementById(onBtnId);
var offBtn = document.getElementById(offBtnId);
if (onBtn == null)
return false;
var value = onBtn == document.elementFromPoint(event.clientX, event.clientY);
if (value) {
onBtn.className = "gwu-SwitchButton-On-Active";
offBtn.className = "gwu-SwitchButton-Off-Inactive";
} else {
onBtn.className = "gwu-SwitchButton-On-Inactive";
offBtn.className = "gwu-SwitchButton-Off-Active";
}
return value;
}
function focusComp(compId) {
if (compId != null) {
var e = document.getElementById(compId);
if (e) // Else component removed or not visible (e.g. on inactive tab of TabPanel)
e.focus();
}
}
function addonload(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload)
oldonload();
func();
}
}
}
function addonbeforeunload(func) {
var oldonbeforeunload = window.onbeforeunload;
if (typeof window.onbeforeunload != 'function') {
window.onbeforeunload = func;
} else {
window.onbeforeunload = function() {
if (oldonbeforeunload)
oldonbeforeunload();
func();
}
}
}
var timers = new Object();
function setupTimer(compId, js, timeout, repeat, active, reset) {
var timer = timers[compId];
if (timer != null) {
var changed = timer.js != js || timer.timeout != timeout || timer.repeat != repeat || timer.reset != reset;
if (!active || changed) {
if (timer.repeat)
clearInterval(timer.id);
else
clearTimeout(timer.id);
timers[compId] = null;
}
if (!changed)
return;
}
if (!active)
return;
// Create new timer
timers[compId] = timer = new Object();
timer.js = js;
timer.timeout = timeout;
timer.repeat = repeat;
timer.reset = reset;
// Start the timer
if (timer.repeat)
timer.id = setInterval(js, timeout);
else
timer.id = setTimeout(js, timeout);
}
function checkSession(compId) {
var e = document.getElementById(compId);
if (!e) // Component removed or not visible (e.g. on inactive tab of TabPanel)
return;
var xhr = createXmlHttp();
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
var timeoutSec = parseFloat(xhr.responseText);
if (timeoutSec < 60)
e.classList.add("gwu-SessMonitor-Expired");
else
e.classList.remove("gwu-SessMonitor-Expired");
var cnvtr = window[e.getAttribute("gwuJsFuncName")];
e.children[0].innerText = typeof cnvtr === 'function' ? cnvtr(timeoutSec) : convertSessTimeout(timeoutSec);
}
}
xhr.open("GET", _pathSessCheck, false); // synch call (else we can't catch connection error)
try {
xhr.send();
e.classList.remove("gwu-SessMonitor-Error");
} catch (err) {
e.classList.add("gwu-SessMonitor-Error");
e.children[0].innerText = "CONN ERR";
}
}
function convertSessTimeout(sec) {
if (sec <= 0)
return "Expired!";
else if (sec < 60)
return "<1 min";
else
return "~" + Math.round(sec / 60) + " min";
}
// INITIALIZATION
addonload(function() {
focusComp(_focCompId);
});
`)
}