-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocutils.js
More file actions
417 lines (385 loc) · 11.9 KB
/
docutils.js
File metadata and controls
417 lines (385 loc) · 11.9 KB
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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/* Will ignore web component attributes defined as url parameters */
const doNotApplyAttributesUrlParameters =
new URLSearchParams(window.location.search).get("noapply") === "true";
function onLoad(wc, attributes, events, pkgSrc, urlParameters = {}) {
/* Show private attributes for dev purpose */
const showPrivate =
new URLSearchParams(window.location.search).get("private") === "true";
/* Attributes */
const attrs = Object.keys(attributes);
const booleanAttrs = Object.entries(attributes)
.filter(([, attr]) => attr.type === "boolean")
.map(([key]) => key);
const booleanTrueByDefaultAttrs = booleanAttrs.filter(
(key) => attributes[key].defaultValue === "true",
);
const reloadAttrs = Object.entries(attributes)
.filter(([key, attr]) => !!attr.reload)
.map(([key]) => key);
const descriptionByAttr = Object.entries(attributes)
.filter(([key, attr]) => {
if (showPrivate) {
return true;
}
return attr.public;
})
.reduce((acc, [key, attr]) => {
acc[key] = attr.description;
return acc;
}, {});
const defaultValueByAttr = Object.entries(attributes).reduce(
(acc, [key, attr]) => {
acc[key] = attr.defaultValue;
return acc;
},
{},
);
const attrsContent = generateAttributesTable(
wc,
attrs,
booleanAttrs,
booleanTrueByDefaultAttrs,
descriptionByAttr,
defaultValueByAttr,
reloadAttrs,
);
if (attrsContent) {
const elt = document.querySelector("#attributes");
if (elt) {
elt.innerHTML = attrsContent;
}
} else {
document.querySelector("#attributesDoc")?.remove();
}
/* Events */
const evts = Object.keys(events);
const descriptionByEvent = Object.entries(events)
.filter(([key, attr]) => {
if (showPrivate) {
return true;
}
return attr.public;
})
.reduce((acc, [key, attr]) => {
acc[key] = attr.description;
return acc;
}, {});
const evtsContent = generateEventsTable(wc, evts, descriptionByEvent);
if (evtsContent) {
const elt = document.querySelector("#events");
if (elt) {
elt.innerHTML = evtsContent;
}
} else {
document.querySelector("#eventsDoc")?.remove();
}
/* URL Parameters */
const params = Object.keys(urlParameters);
const booleanParams = Object.entries(urlParameters)
.filter(([, attr]) => attr.type === "boolean")
.map(([key]) => key);
const booleanTrueByDefaultParams = booleanParams.filter(
(key) => urlParameters[key].defaultValue === "true",
);
const reloadParams = Object.entries(urlParameters).map(([key]) => key);
const descriptionByParam = Object.entries(urlParameters)
.filter(([key, attr]) => {
if (showPrivate) {
return true;
}
return attr.public;
})
.reduce((acc, [key, attr]) => {
acc[key] = attr.description;
return acc;
}, {});
const defaultValueByParam = Object.entries(urlParameters).reduce(
(acc, [key, attr]) => {
acc[key] = attr.defaultValue;
return acc;
},
{},
);
const urlParamsContent = generateAttributesTable(
wc,
params,
booleanParams,
booleanTrueByDefaultParams,
descriptionByParam,
defaultValueByParam,
reloadParams,
);
if (urlParamsContent) {
const elt = document.querySelector("#urlParameters");
if (elt) {
elt.innerHTML = urlParamsContent;
}
} else {
document.querySelector("#urlParamtersDoc")?.remove();
}
/* Build HTML */
document.querySelector("#code").innerHTML = generateCodeText(
wc,
attrs,
pkgSrc,
);
wc.addEventListener("mwc:attribute", (event) => {
document.querySelector("#code").innerHTML = generateCodeText(
wc,
attrs,
pkgSrc,
);
});
applyPermalinkParameters(wc, attributes);
evts.forEach((eventName) => {
wc.addEventListener(eventName, (event) => {
console.log(`${eventName} event`, event);
});
});
}
function applyPermalinkParameters(wc, attributes) {
const params = new URLSearchParams(window.location.search);
// Apply fullscreen mode
if (params.get("fullscreen") === "true") {
wc.parentElement.removeChild(wc);
wc.className = "absolute w-full h-full inset-0";
document.body.appendChild(wc);
document.body.style = "padding:0;";
} else {
const doc = document.querySelectorAll("#doc");
doc.forEach((d) => {
return (d.style.display = "block");
});
}
// Apply x,y,z
if (
params.get("permalink") === "true" &&
params.get("x") &&
params.get("y")
) {
wc.setAttribute("center", `${params.get("x")},${params.get("y")}`);
params.delete("x");
params.delete("y");
}
if (params.get("permalink") === "true" && params.get("z")) {
wc.setAttribute("zoom", params.get("z"));
params.delete("z");
}
// Apply all url parameters as attribute of the web component and fill the input fields.
if (!doNotApplyAttributesUrlParameters) {
params.forEach((value, key) => {
if (!(key in attributes)) {
return;
}
wc.setAttribute(key, value);
const input = document.querySelector(`[name=${key}]`);
if (input) {
if (input.type === "checkbox") {
input.checked = value !== "false";
} else {
input.value = value;
}
}
});
}
// Get an apikey if there is none defined
if (!wc.getAttribute("apikey") && !attributes.apikey.defaultValue) {
fetch("https://developer.geops.io/publickey")
.then((response) => {
return response.json();
})
.then((data) => {
if (data && data.success) {
wc.setAttribute("apikey", data.key);
}
});
}
}
// Generates a HTML table with all attributes of a web component
function generateAttributesTable(
wc,
attrs,
booleanAttrs = [],
booleanTrueByDefault = [],
descriptionByAttr = {},
defaultValueByAttr = {},
reloadAttrs = [],
) {
if (!attrs.filter((key) => descriptionByAttr[key])?.length) {
return null;
}
let innerHMTL = `<table class="table-auto w-full" >
<thead>
<tr>
<th class="border px-4 py-2">Name</th>
<!--th class="border px-4 py-2">Default</th>
<th class="border px-4 py-2">Description</th-->
<th class="border px-4 py-2">Value</th>
</tr>
</thead>
<tbody>`;
innerHMTL += attrs
.sort()
.filter((key) => descriptionByAttr[key])
.map((key) => {
const isBoolean = booleanAttrs.includes(key);
const defaultChecked = booleanTrueByDefault.includes(key)
? "checked"
: "";
let currValue = wc.getAttribute(key);
const isUrlParameters = reloadAttrs?.includes(key);
if (isUrlParameters) {
currValue = new URLSearchParams(window.location.search).get(key);
}
let checked = currValue === "true" ? "checked" : "";
if (currValue !== "true" && currValue !== "false") {
checked = defaultChecked;
}
return `
<tr>
<td class="border px-4 py-2">${key}</td>
<!--td class="border px-4 py-2"></td>
<td class="border px-4 py-2"></td-->
<td class="border px-4 py-2 space-y-2">
${
isBoolean
? `<input
type="checkbox"
id="${key}"
class="border mr-4 cursor-pointer inline-block"
name="${key}"
${checked ? "checked" : ""}
onchange="document.querySelector('${wc.localName}').setAttribute('${key}', this.checked);onAttributeUpdate(document.querySelector('${wc.localName}'),this.name, this.checked, '${reloadAttrs.join(",")}');"
/>`
: `
<div class="flex gap-4 mb-2">
<input
type="text"
class="border px-2"
name="${key}"
placeholder="${defaultValueByAttr[key] || ""}"
value="${(wc.getAttribute(key) || defaultValueByAttr[key] || "").replace(/"/g, """)}"
/>
<button class="border cursor-pointer p-2 bg-black hover:bg-gray-700 text-white" onclick="document.querySelector('${wc.localName}').setAttribute('${key}', this.previousElementSibling.value);onAttributeUpdate(document.querySelector('${wc.localName}'),this.previousElementSibling.name, this.previousElementSibling.value, '${reloadAttrs.join(",")}');">Update</button>
</div>`
}
${descriptionByAttr[key] ? `<label for="${key}" class="cursor-pointer">${descriptionByAttr[key]}</label>` : ``}
</td>
</tr>
`;
})
.join("");
innerHMTL += `</tbody>
</table>`;
return innerHMTL;
}
// Generates a code text for the web component
function generateCodeText(
wc,
attrs,
pkgSrc = "https://www.unpkg.com/@geops/mobility-web-component",
) {
let codeText = "";
codeText = `<script\n\ttype="module"\n\tsrc="${pkgSrc}">
</script>
<${wc.localName}${wc.id ? '\n\tid="' + wc.id + '"' : ""}\n\tstyle="display:block;width:100%;height:500px;border:1px solid #e5e7eb;border-radius:16px;"`;
attrs.forEach((key) => {
const attributeValue = wc.getAttribute(key);
const input = document.querySelector(`[name=${key}]`);
const inputValue =
input?.type === "checkbox" ? input.checked : input?.value;
if (
attributeValue !== null &&
(attributeValue === inputValue ||
(attributeValue === "true" && inputValue === true) ||
(attributeValue === "false" && inputValue === false))
) {
let separator = '"';
const value = wc.getAttribute(key);
if (value.includes(separator)) {
separator = "'"; // for json stringify value
}
codeText += `\n\t${[key, separator + value + separator].join("=")}`;
}
});
return codeText + `>\n</${wc.localName}>`;
}
// Generates a HTML table with all events of a web component
function generateEventsTable(wc, events, descriptionByEvent = {}) {
if (!events?.length) {
return null;
}
let innerHMTL = `<table class="table-auto w-full" >
<thead>
<tr>
<th class="border px-4 py-2">Name</th>
<th class="border px-4 py-2">Last data received</th>
</tr>
</thead>
<tbody>`;
innerHMTL += events
.sort()
.map((key) => {
wc.addEventListener(key, (event) => {
let stringify;
try {
stringify = JSON.stringify(event, undefined, 4);
} catch (e) {
stringify =
"Object not stringifyable, open the console (F12) to see the object received.";
console.log(key + " event", event);
}
if (key === "singleclick") {
stringify = "event.data.lonlat:\n";
stringify += JSON.stringify(event.data.lonlat, undefined, 4);
stringify += "\n";
stringify += "event.data.features:\n";
stringify += JSON.stringify(event.data.features, undefined, 4);
}
document.querySelector(`[name='${key}']`).value = stringify.toString();
});
return `
<tr>
<td class="border px-4 py-2">${key}</td>
<td class="border px-4 py-2">
<div class="flex flex-col gap-4">
<p>
${descriptionByEvent[key] || ""}
</p>
<p>
Last event received:
</p>
<textarea
type="text"
class="border h-300 w-full"
style="height:300px;"
name="${key}"
></textarea>
</div>
</td>
</tr>
`;
})
.join("");
innerHMTL += `</tbody>
</table>`;
return innerHMTL;
}
// Update url on attributes update via inputs
function onAttributeUpdate(wc, key, value, reloadAttrs) {
const params = new URLSearchParams(window.location.search);
params.set(key, value);
if (reloadAttrs.split(",").includes(key)) {
window.history.pushState({}, "", `${window.location.pathname}?${params}`);
window.location.reload();
} else {
wc.setAttribute(key, value);
if (!doNotApplyAttributesUrlParameters) {
window.history.replaceState(
{},
"",
`${window.location.pathname}?${params}`,
);
}
}
}