-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguiapi.js
283 lines (263 loc) · 7.44 KB
/
guiapi.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
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
import { handleStream } from "./websocket.js"
export var callableFunctions = {}
export function registerFunctions(object) {
for (const [key, value] of Object.entries(object)) {
if (typeof value === 'function') {
callableFunctions[key] = value
continue
}
if (typeof value === 'object') {
for (const [subkey, subvalue] of Object.entries(value)) {
callableFunctions[key + "." + subkey] = subvalue
}
continue
}
console.warn("registerFunctions: unknown type", key, value)
}
}
var state = null
let debugGuiapi = false
export function debugPrinting(enable) {
debugGuiapi = enable
}
export function action(name, args, callback) {
if (debugGuiapi) {
console.log("guiapi action:", name, "args:", args, "state:", state)
}
var req = {
Name: name,
Args: args,
State: state,
}
guiapiRequest(req, callback)
}
function guiapiPage(url, callback) {
if (debugGuiapi) {
console.log("guiapi page:", url, "state:", state)
}
var req = {
URL: url,
State: state,
}
guiapiRequest(req, callback)
}
function guiapiRequest(req, callback) {
if (!callback) {
callback = () => { }
}
fetch("/guiapi", {
method: 'POST',
mode: 'cors',
credentials: 'same-origin',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(req)
}).then((response) => {
response.json().then(r => {
if (debugGuiapi) {
console.log("guiapi response:", r)
}
handleResponse(r, callback)
}).catch(r => console.error('response.json() error:', r))
}).catch((reason) => {
console.error('fetch() error:', reason)
callback(reason)
})
}
export function handleResponse(r, callback) {
if (r.State) {
state = r.State
}
if (r.Error) {
console.error("[" + r.Error.Code + "]", r.Error.Message, r.Error)
errorHandler(r.Error)
callback(r.Error)
return
}
if (r.HTML) {
for (var j = 0; j < r.HTML.length; j++) {
var update = r.HTML[j]
const el = document.querySelector(update.Selector)
if (!el) {
console.warn("update selector not found :(", update.Selector, update)
continue
}
switch (update.Operation) {
case 1:
el.innerHTML = update.Content
break
case 2:
el.outerHTML = update.Content
break
case 3:
el.insertAdjacentHTML('beforebegin', update.Content)
break
case 4:
el.insertAdjacentHTML('afterend', update.Content)
break
default:
console.warn("update type not implemented :(", update)
}
}
}
if (r.JS) {
for (var j = 0; j < r.JS.length; j++) {
var call = r.JS[j]
var func = callableFunctions[call.Name]
if (func) {
func(call.Args)
} else {
console.warn("function call not implemented :(", call)
}
}
}
if (r.Stream) {
for (var i = 0; i < r.Stream.length; i++) {
handleStream(r.Stream[i])
}
}
if (r.URL) {
addPageToHistory(r.URL)
}
hydrate()
callback(null)
}
function hydrate() {
var elements = document.querySelectorAll(".ga")
for (var el of elements) {
if (el.attributes.getNamedItem("ga-on")) {
hydrateOn(el)
}
if (el.attributes.getNamedItem("ga-init")) {
hydrateInit(el)
}
if (el.attributes.getNamedItem("ga-link")) {
hydrateLink(el)
}
}
}
function hydrateOn(el) {
var eventType = el.attributes.getNamedItem("ga-on").value
if (el.attributes.getNamedItem("ga-func")) {
const func = el.attributes.getNamedItem("ga-func").value
const callable = callableFunctions[func]
if (!callable) {
console.warn("function call not implemented :(", func, el)
}
el.addEventListener(eventType, callable)
} else {
var actionName = el.attributes.getNamedItem("ga-action").value
var args = null
if (el.attributes.getNamedItem("ga-args")) {
args = el.attributes.getNamedItem("ga-args").value
try {
args = JSON.parse(args)
} catch (e) { }
}
var selector = null
if (el.attributes.getNamedItem("ga-values")) {
selector = el.attributes.getNamedItem("ga-values").value
}
el.addEventListener(eventType, function (e) {
if (selector) {
if (args == null) {
args = {}
}
var elements = document.querySelectorAll(selector)
for (ele of elements) {
args[ele.name] = ele.value
}
}
action(actionName, args)
e.preventDefault()
e.stopPropagation()
return false
})
}
el.classList.remove("ga")
}
function hydrateInit(el) {
var initFunc = el.attributes.getNamedItem("ga-init").value
var args = null
var argsAttr = el.attributes.getNamedItem("ga-args")
if (argsAttr) {
args = argsAttr.value
try {
args = JSON.parse(args)
} catch (e) { }
}
var fn = callableFunctions[initFunc]
if (fn) {
fn(el, args)
} else {
console.warn("function call not implemented :(", action, el)
console.log("during hydrating", elements.length, "elements", elements)
}
el.classList.remove("ga")
}
let originalState = null
function hydrateLink(el) {
var url = el.attributes.getNamedItem("href").value
el.addEventListener("click", function (e) {
guiapiPage(url, err => {
if (err) {
console.error("error", err)
return
}
addPageToHistory(url)
})
e.preventDefault()
e.stopPropagation()
return false
})
el.classList.remove("ga")
}
function addPageToHistory(url) {
console.log("addPageToHistory", url, state)
if (originalState === null) {
originalState = {
url: window.location.pathname + window.location.search,
oldState: { ...state },
}
}
const pushedState = {
url,
oldState: { ...state },
}
window.history.pushState(pushedState, "", url)
}
let errorHandler = (err) => { }
export function setupGuiapi(options) {
if (options && options.debug) {
debugGuiapi = true
}
if (options && options.errorHandler) {
errorHandler = options.errorHandler
}
if (options.state) {
state = options.state
}
if (options.stream) {
handleStream(options.stream)
}
hydrate()
setupHistory()
}
function setupHistory() {
window.addEventListener("popstate", function (e) {
let s = e.state
if (!s) {
s = originalState
}
if (!s) {
console.warn("no originalState", originalState, e)
return
}
guiapiPage(s.url)
})
}
export default {
action,
setupGuiapi,
registerFunctions,
debugPrinting
}