-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocutils.js
192 lines (178 loc) · 5.59 KB
/
docutils.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
/* eslint-disable no-undef */
/* eslint-disable @typescript-eslint/no-unused-vars */
function applyPermalinkParameters(wc) {
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");
});
}
console.log("icc, apply z");
// 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.
params.forEach((value, key) => {
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")) {
fetch("https://backend.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 = []) {
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()
.map((key) => {
const isBoolean = booleanAttrs.includes(key);
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">
<div class="flex gap-4">
${
isBoolean
? `<input
type="checkbox"
class="border"
name="${key}"
${wc.getAttribute(key) === "true" ? "checked" : ""}
onchange="document.querySelector('${wc.localName}').setAttribute('${key}', this.checked);onAttributeUpdate(document.querySelector('${wc.localName}'),this.name, this.checked);"
/>`
: `
<input
type="text"
class="border"
name="${key}"
value="${wc.getAttribute(key) || ""}"
/>
<button class="border 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);">Update</button>`
}
</div>
</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}`;
attrs.forEach((key) => {
const attributeValue = wc.getAttribute(key);
const inputValue = document.querySelector(`[name=${key}]`).value;
if (attributeValue !== null && attributeValue === inputValue) {
codeText += `\n\t${[key, '"' + wc.getAttribute(key) + '"'].join("=")}`;
}
});
return codeText + `>\n</${wc.localName}>`;
}
// Generates a HTML table with all events of a web component
function generateEventsTable(wc, events) {
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);
}
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 gap-4">
<textarea
type="text"
class="border w-full h-300"
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) {
const params = new URLSearchParams(window.location.search);
params.set(key, value);
wc.setAttribute(key, value);
window.history.replaceState({}, "", `${window.location.pathname}?${params}`);
}