@matdata/yasgui 4.7.4 → 4.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/build/ts/src/PersistentConfig.js +127 -0
  2. package/build/ts/src/PersistentConfig.js.map +1 -0
  3. package/build/ts/src/Tab.d.ts +2 -1
  4. package/build/ts/src/Tab.js +600 -0
  5. package/build/ts/src/Tab.js.map +1 -0
  6. package/build/ts/src/TabContextMenu.d.ts +1 -0
  7. package/build/ts/src/TabContextMenu.js +116 -0
  8. package/build/ts/src/TabContextMenu.js.map +1 -0
  9. package/build/ts/src/TabElements.d.ts +1 -0
  10. package/build/ts/src/TabElements.js +305 -0
  11. package/build/ts/src/TabElements.js.map +1 -0
  12. package/build/ts/src/TabSettingsModal.js +320 -0
  13. package/build/ts/src/TabSettingsModal.js.map +1 -0
  14. package/build/ts/src/defaults.js +59 -0
  15. package/build/ts/src/defaults.js.map +1 -0
  16. package/build/ts/src/endpointSelect.d.ts +1 -0
  17. package/build/ts/src/endpointSelect.js +242 -0
  18. package/build/ts/src/endpointSelect.js.map +1 -0
  19. package/build/ts/src/index.d.ts +2 -0
  20. package/build/ts/src/index.js +251 -0
  21. package/build/ts/src/index.js.map +1 -0
  22. package/build/ts/src/linkUtils.d.ts +1 -1
  23. package/build/ts/src/linkUtils.js +205 -0
  24. package/build/ts/src/linkUtils.js.map +1 -0
  25. package/build/yasgui.min.css +2 -2
  26. package/build/yasgui.min.css.map +7 -1
  27. package/build/yasgui.min.js +1125 -3
  28. package/build/yasgui.min.js.map +7 -1
  29. package/package.json +1 -1
  30. package/src/Tab.ts +20 -2
  31. package/src/TabContextMenu.ts +1 -1
  32. package/src/TabElements.ts +3 -3
  33. package/src/TabSettingsModal.ts +8 -8
  34. package/src/endpointSelect.ts +1 -1
  35. package/src/index.ts +2 -2
  36. package/src/linkUtils.ts +1 -1
  37. package/build/yasgui.html +0 -24
  38. package/build/yasgui.min.js.LICENSE.txt +0 -59
@@ -0,0 +1,600 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { EventEmitter } from "events";
11
+ import { addClass, removeClass, getAsValue } from "@matdata/yasgui-utils";
12
+ import TabSettingsModal from "./TabSettingsModal";
13
+ import { default as Yasqe } from "@matdata/yasqe";
14
+ import { default as Yasr } from "@matdata/yasr";
15
+ import { mapValues, eq, mergeWith, words, deburr, invert } from "lodash-es";
16
+ import * as shareLink from "./linkUtils";
17
+ import EndpointSelect from "./endpointSelect";
18
+ import "./tab.scss";
19
+ import { getRandomId, default as Yasgui } from "./";
20
+ export class Tab extends EventEmitter {
21
+ constructor(yasgui, conf) {
22
+ super();
23
+ this.handleKeyDown = (event) => {
24
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
25
+ if (event.key === "F11") {
26
+ event.preventDefault();
27
+ if (this.yasqe) {
28
+ this.yasqe.toggleFullscreen();
29
+ if ((_a = this.yasr) === null || _a === void 0 ? void 0 : _a.getIsFullscreen()) {
30
+ this.yasr.toggleFullscreen();
31
+ }
32
+ }
33
+ }
34
+ else if (event.key === "F10") {
35
+ event.preventDefault();
36
+ if (this.yasr) {
37
+ this.yasr.toggleFullscreen();
38
+ if ((_b = this.yasqe) === null || _b === void 0 ? void 0 : _b.getIsFullscreen()) {
39
+ this.yasqe.toggleFullscreen();
40
+ }
41
+ }
42
+ }
43
+ else if (event.ctrlKey && event.shiftKey && event.key === "F") {
44
+ event.preventDefault();
45
+ const yasqeFullscreen = (_c = this.yasqe) === null || _c === void 0 ? void 0 : _c.getIsFullscreen();
46
+ const yasrFullscreen = (_d = this.yasr) === null || _d === void 0 ? void 0 : _d.getIsFullscreen();
47
+ if (yasqeFullscreen) {
48
+ (_e = this.yasqe) === null || _e === void 0 ? void 0 : _e.toggleFullscreen();
49
+ (_f = this.yasr) === null || _f === void 0 ? void 0 : _f.toggleFullscreen();
50
+ }
51
+ else if (yasrFullscreen) {
52
+ (_g = this.yasr) === null || _g === void 0 ? void 0 : _g.toggleFullscreen();
53
+ (_h = this.yasqe) === null || _h === void 0 ? void 0 : _h.toggleFullscreen();
54
+ }
55
+ else {
56
+ (_j = this.yasqe) === null || _j === void 0 ? void 0 : _j.toggleFullscreen();
57
+ }
58
+ }
59
+ };
60
+ this.handleYasqeBlur = (yasqe) => {
61
+ var _a;
62
+ this.persistentJson.yasqe.value = yasqe.getValue();
63
+ (_a = this.settingsModal) === null || _a === void 0 ? void 0 : _a.capturePrefixesFromQuery();
64
+ this.emit("change", this, this.persistentJson);
65
+ };
66
+ this.handleYasqeQuery = (yasqe) => {
67
+ if (yasqe.getValue() !== this.persistentJson.yasqe.value) {
68
+ this.persistentJson.yasqe.value = yasqe.getValue();
69
+ this.emit("change", this, this.persistentJson);
70
+ }
71
+ this.emit("query", this);
72
+ };
73
+ this.handleYasqeQueryAbort = () => {
74
+ this.emit("queryAbort", this);
75
+ if (this.yasr) {
76
+ this.yasr.hideLoading();
77
+ }
78
+ };
79
+ this.handleYasqeQueryBefore = () => {
80
+ this.emit("queryBefore", this);
81
+ if (this.yasr) {
82
+ this.yasr.showLoading();
83
+ }
84
+ };
85
+ this.handleYasqeResize = (_yasqe, newSize) => {
86
+ this.persistentJson.yasqe.editorHeight = newSize;
87
+ this.emit("change", this, this.persistentJson);
88
+ };
89
+ this.handleAutocompletionShown = (_yasqe, widget) => {
90
+ this.emit("autocompletionShown", this, widget);
91
+ };
92
+ this.handleAutocompletionClose = (_yasqe) => {
93
+ this.emit("autocompletionClose", this);
94
+ };
95
+ this.handleQueryResponse = (_yasqe, response, duration) => {
96
+ this.emit("queryResponse", this);
97
+ if (!this.yasr)
98
+ throw new Error("Resultset visualizer not initialized. Cannot draw results");
99
+ this.yasr.setResponse(response, duration);
100
+ if (!this.yasr.results)
101
+ return;
102
+ if (!this.yasr.results.hasError()) {
103
+ this.persistentJson.yasr.response = this.yasr.results.getAsStoreObject(this.yasgui.config.yasr.maxPersistentResponseSize);
104
+ }
105
+ else {
106
+ this.persistentJson.yasr.response = undefined;
107
+ }
108
+ this.emit("change", this, this.persistentJson);
109
+ };
110
+ this.handleYasqeMouseDown = (event) => {
111
+ if (!event.ctrlKey || !this.yasqe)
112
+ return;
113
+ const target = event.target;
114
+ if (!target.closest(".CodeMirror"))
115
+ return;
116
+ const pos = this.yasqe.coordsChar({ left: event.clientX, top: event.clientY });
117
+ const token = this.yasqe.getTokenAt(pos);
118
+ const tokenString = token.string.trim();
119
+ if (tokenString.startsWith("?") || tokenString.startsWith("$"))
120
+ return;
121
+ const isFullUri = tokenString.startsWith("<") && tokenString.endsWith(">");
122
+ const isPrefixedName = /^[\w-]+:[\w-]+/.test(tokenString);
123
+ if (!isFullUri && !isPrefixedName)
124
+ return;
125
+ event.preventDefault();
126
+ event.stopPropagation();
127
+ let uri = tokenString;
128
+ if (isFullUri) {
129
+ uri = tokenString.slice(1, -1);
130
+ }
131
+ else if (isPrefixedName) {
132
+ const prefixes = this.yasqe.getPrefixesFromQuery();
133
+ const [prefix, localName] = tokenString.split(":");
134
+ const prefixUri = prefixes[prefix];
135
+ if (prefixUri) {
136
+ uri = prefixUri + localName;
137
+ }
138
+ }
139
+ const constructQuery = `CONSTRUCT {
140
+ ?s_left ?p_left ?target .
141
+ ?target ?p_right ?o_right .
142
+ }
143
+ WHERE {
144
+ BIND(<${uri}> as ?target)
145
+ {
146
+ ?s_left ?p_left ?target .
147
+ }
148
+ UNION
149
+ {
150
+ ?target ?p_right ?o_right .
151
+ }
152
+ } LIMIT 1000`;
153
+ this.executeBackgroundQuery(constructQuery);
154
+ };
155
+ if (!conf || conf.id === undefined)
156
+ throw new Error("Expected a valid configuration to initialize tab with");
157
+ this.yasgui = yasgui;
158
+ this.persistentJson = conf;
159
+ }
160
+ name() {
161
+ return this.persistentJson.name;
162
+ }
163
+ getPersistedJson() {
164
+ return this.persistentJson;
165
+ }
166
+ getId() {
167
+ return this.persistentJson.id;
168
+ }
169
+ draw() {
170
+ if (this.rootEl)
171
+ return;
172
+ this.rootEl = document.createElement("div");
173
+ this.rootEl.className = "tabPanel";
174
+ this.rootEl.id = this.persistentJson.id;
175
+ this.rootEl.setAttribute("role", "tabpanel");
176
+ this.rootEl.setAttribute("aria-labelledby", "tab-" + this.persistentJson.id);
177
+ const editorWrapper = document.createElement("div");
178
+ editorWrapper.className = "editorwrapper";
179
+ const controlbarAndYasqeDiv = document.createElement("div");
180
+ this.controlBarEl = document.createElement("div");
181
+ this.controlBarEl.className = "controlbar";
182
+ controlbarAndYasqeDiv.appendChild(this.controlBarEl);
183
+ this.yasqeWrapperEl = document.createElement("div");
184
+ controlbarAndYasqeDiv.appendChild(this.yasqeWrapperEl);
185
+ editorWrapper.appendChild(controlbarAndYasqeDiv);
186
+ this.yasrWrapperEl = document.createElement("div");
187
+ this.initTabSettingsMenu();
188
+ this.rootEl.appendChild(editorWrapper);
189
+ this.rootEl.appendChild(this.yasrWrapperEl);
190
+ this.initControlbar();
191
+ this.initYasqe();
192
+ this.initYasr();
193
+ this.yasgui._setPanel(this.persistentJson.id, this.rootEl);
194
+ }
195
+ hide() {
196
+ removeClass(this.rootEl, "active");
197
+ this.detachKeyboardListeners();
198
+ }
199
+ show() {
200
+ this.draw();
201
+ addClass(this.rootEl, "active");
202
+ this.yasgui.tabElements.selectTab(this.persistentJson.id);
203
+ if (this.yasqe) {
204
+ this.yasqe.refresh();
205
+ if (this.yasgui.config.autofocus)
206
+ this.yasqe.focus();
207
+ }
208
+ if (this.yasr) {
209
+ this.yasr.refresh();
210
+ }
211
+ this.setEndpoint(this.getEndpoint(), this.yasgui.persistentConfig.getEndpointHistory());
212
+ this.attachKeyboardListeners();
213
+ }
214
+ attachKeyboardListeners() {
215
+ if (!this.rootEl)
216
+ return;
217
+ document.addEventListener("keydown", this.handleKeyDown);
218
+ }
219
+ detachKeyboardListeners() {
220
+ document.removeEventListener("keydown", this.handleKeyDown);
221
+ }
222
+ select() {
223
+ this.yasgui.selectTabId(this.persistentJson.id);
224
+ }
225
+ close() {
226
+ this.detachKeyboardListeners();
227
+ if (this.yasqe)
228
+ this.yasqe.abortQuery();
229
+ if (this.yasgui.getTab() === this) {
230
+ const tabs = this.yasgui.persistentConfig.getTabs();
231
+ const i = tabs.indexOf(this.persistentJson.id);
232
+ if (i > -1) {
233
+ this.yasgui.selectTabId(tabs[i === tabs.length - 1 ? i - 1 : i + 1]);
234
+ }
235
+ }
236
+ this.yasgui._removePanel(this.rootEl);
237
+ this.yasgui.persistentConfig.deleteTab(this.persistentJson.id);
238
+ this.yasgui.emit("tabClose", this.yasgui, this);
239
+ this.emit("close", this);
240
+ this.yasgui.tabElements.get(this.persistentJson.id).delete();
241
+ delete this.yasgui._tabs[this.persistentJson.id];
242
+ }
243
+ getQuery() {
244
+ var _a;
245
+ if (!this.yasqe) {
246
+ throw new Error("Cannot get value from uninitialized editor");
247
+ }
248
+ return (_a = this.yasqe) === null || _a === void 0 ? void 0 : _a.getValue();
249
+ }
250
+ setQuery(query) {
251
+ if (!this.yasqe) {
252
+ throw new Error("Cannot set value for uninitialized editor");
253
+ }
254
+ this.yasqe.setValue(query);
255
+ this.persistentJson.yasqe.value = query;
256
+ this.emit("change", this, this.persistentJson);
257
+ return this;
258
+ }
259
+ getRequestConfig() {
260
+ return this.persistentJson.requestConfig;
261
+ }
262
+ initControlbar() {
263
+ this.initEndpointSelectField();
264
+ if (this.yasgui.config.endpointInfo && this.controlBarEl) {
265
+ this.controlBarEl.appendChild(this.yasgui.config.endpointInfo());
266
+ }
267
+ }
268
+ getYasqe() {
269
+ return this.yasqe;
270
+ }
271
+ getYasr() {
272
+ return this.yasr;
273
+ }
274
+ initTabSettingsMenu() {
275
+ if (!this.controlBarEl)
276
+ throw new Error("Need to initialize wrapper elements before drawing tab settings");
277
+ this.settingsModal = new TabSettingsModal(this, this.controlBarEl);
278
+ }
279
+ initEndpointSelectField() {
280
+ if (!this.controlBarEl)
281
+ throw new Error("Need to initialize wrapper elements before drawing endpoint field");
282
+ this.endpointSelect = new EndpointSelect(this.getEndpoint(), this.controlBarEl, this.yasgui.config.endpointCatalogueOptions, this.yasgui.persistentConfig.getEndpointHistory());
283
+ this.endpointSelect.on("select", (endpoint, endpointHistory) => {
284
+ this.setEndpoint(endpoint, endpointHistory);
285
+ });
286
+ this.endpointSelect.on("remove", (endpoint, endpointHistory) => {
287
+ this.setEndpoint(endpoint, endpointHistory);
288
+ });
289
+ }
290
+ checkEndpointForCors(endpoint) {
291
+ if (this.yasgui.config.corsProxy && !(endpoint in Yasgui.corsEnabled)) {
292
+ const askUrl = new URL(endpoint);
293
+ askUrl.searchParams.append("query", "ASK {?x ?y ?z}");
294
+ fetch(askUrl.toString())
295
+ .then(() => {
296
+ Yasgui.corsEnabled[endpoint] = true;
297
+ })
298
+ .catch((e) => {
299
+ Yasgui.corsEnabled[endpoint] = e instanceof TypeError ? false : true;
300
+ });
301
+ }
302
+ }
303
+ setEndpoint(endpoint, endpointHistory) {
304
+ if (endpoint)
305
+ endpoint = endpoint.trim();
306
+ if (endpointHistory && !eq(endpointHistory, this.yasgui.persistentConfig.getEndpointHistory())) {
307
+ this.yasgui.emit("endpointHistoryChange", this.yasgui, endpointHistory);
308
+ }
309
+ this.checkEndpointForCors(endpoint);
310
+ if (this.persistentJson.requestConfig.endpoint !== endpoint) {
311
+ this.persistentJson.requestConfig.endpoint = endpoint;
312
+ this.emit("change", this, this.persistentJson);
313
+ this.emit("endpointChange", this, endpoint);
314
+ }
315
+ if (this.endpointSelect instanceof EndpointSelect) {
316
+ this.endpointSelect.setEndpoint(endpoint, endpointHistory);
317
+ }
318
+ return this;
319
+ }
320
+ getEndpoint() {
321
+ return getAsValue(this.persistentJson.requestConfig.endpoint, this.yasgui);
322
+ }
323
+ updateContextMenu() {
324
+ this.getTabListEl().redrawContextMenu();
325
+ }
326
+ getShareableLink(baseURL) {
327
+ return shareLink.createShareLink(baseURL || window.location.href, this);
328
+ }
329
+ getShareObject() {
330
+ return shareLink.createShareConfig(this);
331
+ }
332
+ getTabListEl() {
333
+ return this.yasgui.tabElements.get(this.persistentJson.id);
334
+ }
335
+ setName(newName) {
336
+ this.getTabListEl().rename(newName);
337
+ this.persistentJson.name = newName;
338
+ this.emit("change", this, this.persistentJson);
339
+ return this;
340
+ }
341
+ hasResults() {
342
+ var _a;
343
+ return !!((_a = this.yasr) === null || _a === void 0 ? void 0 : _a.results);
344
+ }
345
+ getName() {
346
+ return this.persistentJson.name;
347
+ }
348
+ query() {
349
+ if (!this.yasqe)
350
+ return Promise.reject(new Error("No yasqe editor initialized"));
351
+ return this.yasqe.query();
352
+ }
353
+ setRequestConfig(requestConfig) {
354
+ this.persistentJson.requestConfig = Object.assign(Object.assign({}, this.persistentJson.requestConfig), requestConfig);
355
+ this.emit("change", this, this.persistentJson);
356
+ }
357
+ getStaticRequestConfig() {
358
+ const config = {};
359
+ let key;
360
+ for (key in this.yasgui.config.requestConfig) {
361
+ if (key === "adjustQueryBeforeRequest")
362
+ continue;
363
+ const val = this.yasgui.config.requestConfig[key];
364
+ if (typeof val === "function") {
365
+ config[key] = val(this.yasgui);
366
+ }
367
+ }
368
+ return config;
369
+ }
370
+ initYasqe() {
371
+ const yasqeConf = Object.assign(Object.assign({}, this.yasgui.config.yasqe), { value: this.persistentJson.yasqe.value, editorHeight: this.persistentJson.yasqe.editorHeight ? this.persistentJson.yasqe.editorHeight : undefined, persistenceId: null, consumeShareLink: null, createShareableLink: () => this.getShareableLink(), requestConfig: () => {
372
+ const processedReqConfig = Object.assign(Object.assign({ acceptHeaderGraph: "text/turtle", acceptHeaderSelect: "application/sparql-results+json" }, mergeWith({}, this.persistentJson.requestConfig, this.getStaticRequestConfig(), function customizer(objValue, srcValue) {
373
+ if (Array.isArray(objValue) || Array.isArray(srcValue)) {
374
+ return [...(objValue || []), ...(srcValue || [])];
375
+ }
376
+ })), { adjustQueryBeforeRequest: this.yasgui.config.requestConfig.adjustQueryBeforeRequest });
377
+ if (this.yasgui.config.corsProxy && !Yasgui.corsEnabled[this.getEndpoint()]) {
378
+ return Object.assign(Object.assign({}, processedReqConfig), { args: [
379
+ ...(Array.isArray(processedReqConfig.args) ? processedReqConfig.args : []),
380
+ { name: "endpoint", value: this.getEndpoint() },
381
+ { name: "method", value: this.persistentJson.requestConfig.method },
382
+ ], method: "POST", endpoint: this.yasgui.config.corsProxy });
383
+ }
384
+ return processedReqConfig;
385
+ } });
386
+ if (!yasqeConf.hintConfig) {
387
+ yasqeConf.hintConfig = {};
388
+ }
389
+ if (!yasqeConf.hintConfig.container) {
390
+ yasqeConf.hintConfig.container = this.yasgui.rootEl;
391
+ }
392
+ if (!this.yasqeWrapperEl) {
393
+ throw new Error("Expected a wrapper element before instantiating yasqe");
394
+ }
395
+ this.yasqe = new Yasqe(this.yasqeWrapperEl, yasqeConf);
396
+ this.yasqe.on("blur", this.handleYasqeBlur);
397
+ this.yasqe.on("query", this.handleYasqeQuery);
398
+ this.yasqe.on("queryBefore", this.handleYasqeQueryBefore);
399
+ this.yasqe.on("queryAbort", this.handleYasqeQueryAbort);
400
+ this.yasqe.on("resize", this.handleYasqeResize);
401
+ this.yasqe.on("autocompletionShown", this.handleAutocompletionShown);
402
+ this.yasqe.on("autocompletionClose", this.handleAutocompletionClose);
403
+ this.yasqe.on("queryResponse", this.handleQueryResponse);
404
+ this.attachYasqeMouseHandler();
405
+ }
406
+ destroyYasqe() {
407
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
408
+ (_a = this.yasqe) === null || _a === void 0 ? void 0 : _a.off("blur", this.handleYasqeBlur);
409
+ (_b = this.yasqe) === null || _b === void 0 ? void 0 : _b.off("query", this.handleYasqeQuery);
410
+ (_c = this.yasqe) === null || _c === void 0 ? void 0 : _c.off("queryAbort", this.handleYasqeQueryAbort);
411
+ (_d = this.yasqe) === null || _d === void 0 ? void 0 : _d.off("resize", this.handleYasqeResize);
412
+ (_e = this.yasqe) === null || _e === void 0 ? void 0 : _e.off("autocompletionShown", this.handleAutocompletionShown);
413
+ (_f = this.yasqe) === null || _f === void 0 ? void 0 : _f.off("autocompletionClose", this.handleAutocompletionClose);
414
+ (_g = this.yasqe) === null || _g === void 0 ? void 0 : _g.off("queryBefore", this.handleYasqeQueryBefore);
415
+ (_h = this.yasqe) === null || _h === void 0 ? void 0 : _h.off("queryResponse", this.handleQueryResponse);
416
+ this.detachYasqeMouseHandler();
417
+ (_j = this.yasqe) === null || _j === void 0 ? void 0 : _j.destroy();
418
+ this.yasqe = undefined;
419
+ }
420
+ executeBackgroundQuery(query) {
421
+ return __awaiter(this, void 0, void 0, function* () {
422
+ if (!this.yasqe || !this.yasr)
423
+ return;
424
+ try {
425
+ this.yasr.showLoading();
426
+ this.emit("queryBefore", this);
427
+ const requestConfig = this.yasqe.config.requestConfig;
428
+ const config = typeof requestConfig === "function" ? requestConfig(this.yasqe) : requestConfig;
429
+ if (!config.endpoint) {
430
+ throw new Error("No endpoint configured");
431
+ }
432
+ const endpoint = typeof config.endpoint === "function" ? config.endpoint(this.yasqe) : config.endpoint;
433
+ const method = typeof config.method === "function" ? config.method(this.yasqe) : config.method || "POST";
434
+ const headers = typeof config.headers === "function" ? config.headers(this.yasqe) : config.headers || {};
435
+ const searchParams = new URLSearchParams();
436
+ searchParams.append("query", query);
437
+ if (config.args && Array.isArray(config.args)) {
438
+ config.args.forEach((arg) => {
439
+ if (arg.name && arg.value) {
440
+ searchParams.append(arg.name, arg.value);
441
+ }
442
+ });
443
+ }
444
+ const fetchOptions = {
445
+ method: method,
446
+ headers: Object.assign({ Accept: "text/turtle" }, headers),
447
+ };
448
+ let url = endpoint;
449
+ if (method === "POST") {
450
+ fetchOptions.headers = Object.assign(Object.assign({}, fetchOptions.headers), { "Content-Type": "application/x-www-form-urlencoded" });
451
+ fetchOptions.body = searchParams.toString();
452
+ }
453
+ else {
454
+ const urlObj = new URL(endpoint);
455
+ searchParams.forEach((value, key) => {
456
+ urlObj.searchParams.append(key, value);
457
+ });
458
+ url = urlObj.toString();
459
+ }
460
+ const startTime = Date.now();
461
+ const response = yield fetch(url, fetchOptions);
462
+ const duration = Date.now() - startTime;
463
+ if (!response.ok) {
464
+ throw new Error(`Query failed: ${response.statusText}`);
465
+ }
466
+ const result = yield response.text();
467
+ const queryResponse = {
468
+ ok: response.ok,
469
+ status: response.status,
470
+ statusText: response.statusText,
471
+ headers: response.headers,
472
+ type: response.type,
473
+ content: result,
474
+ };
475
+ this.yasr.setResponse(queryResponse, duration);
476
+ if (this.yasr.plugins["Graph"]) {
477
+ this.yasr.selectPlugin("Graph");
478
+ }
479
+ this.yasr.hideLoading();
480
+ this.emit("queryResponse", this);
481
+ }
482
+ catch (error) {
483
+ console.error("Background query failed:", error);
484
+ if (this.yasr) {
485
+ this.yasr.hideLoading();
486
+ this.yasr.setResponse({
487
+ error: error instanceof Error ? error.message : "Unknown error",
488
+ }, 0);
489
+ }
490
+ }
491
+ });
492
+ }
493
+ attachYasqeMouseHandler() {
494
+ if (!this.yasqe)
495
+ return;
496
+ const wrapper = this.yasqe.getWrapperElement();
497
+ if (wrapper) {
498
+ wrapper.addEventListener("mousedown", this.handleYasqeMouseDown);
499
+ }
500
+ }
501
+ detachYasqeMouseHandler() {
502
+ if (!this.yasqe)
503
+ return;
504
+ const wrapper = this.yasqe.getWrapperElement();
505
+ if (wrapper) {
506
+ wrapper.removeEventListener("mousedown", this.handleYasqeMouseDown);
507
+ }
508
+ }
509
+ initYasr() {
510
+ if (!this.yasrWrapperEl)
511
+ throw new Error("Wrapper for yasr does not exist");
512
+ const yasrConf = {
513
+ persistenceId: null,
514
+ prefixes: (yasr) => {
515
+ var _a;
516
+ const prefixesFromYasrConf = typeof this.yasgui.config.yasr.prefixes === "function"
517
+ ? this.yasgui.config.yasr.prefixes(yasr)
518
+ : this.yasgui.config.yasr.prefixes;
519
+ const prefixesFromYasqe = (_a = this.yasqe) === null || _a === void 0 ? void 0 : _a.getPrefixesFromQuery();
520
+ return invert(invert(Object.assign(Object.assign({}, prefixesFromYasrConf), prefixesFromYasqe)));
521
+ },
522
+ defaultPlugin: this.persistentJson.yasr.settings.selectedPlugin,
523
+ getPlainQueryLinkToEndpoint: () => {
524
+ if (this.yasqe) {
525
+ return shareLink.appendArgsToUrl(this.getEndpoint(), Yasqe.Sparql.getUrlArguments(this.yasqe, this.persistentJson.requestConfig));
526
+ }
527
+ },
528
+ plugins: mapValues(this.persistentJson.yasr.settings.pluginsConfig, (conf) => ({
529
+ dynamicConfig: conf,
530
+ })),
531
+ errorRenderers: [
532
+ getCorsErrorRenderer(this),
533
+ ...(Yasr.defaults.errorRenderers || []),
534
+ ],
535
+ };
536
+ if (yasrConf.getDownloadFileName === undefined) {
537
+ yasrConf.getDownloadFileName = () => words(deburr(this.getName())).join("-");
538
+ }
539
+ this.yasr = new Yasr(this.yasrWrapperEl, yasrConf, this.persistentJson.yasr.response);
540
+ this.persistentJson.yasr.settings = this.yasr.getPersistentConfig();
541
+ this.yasr.on("change", () => {
542
+ if (this.yasr) {
543
+ this.persistentJson.yasr.settings = this.yasr.getPersistentConfig();
544
+ }
545
+ this.emit("change", this, this.persistentJson);
546
+ });
547
+ }
548
+ destroy() {
549
+ var _a, _b, _c;
550
+ this.removeAllListeners();
551
+ (_a = this.settingsModal) === null || _a === void 0 ? void 0 : _a.destroy();
552
+ (_b = this.endpointSelect) === null || _b === void 0 ? void 0 : _b.destroy();
553
+ this.endpointSelect = undefined;
554
+ (_c = this.yasr) === null || _c === void 0 ? void 0 : _c.destroy();
555
+ this.yasr = undefined;
556
+ this.destroyYasqe();
557
+ }
558
+ static getDefaults(yasgui) {
559
+ return {
560
+ yasqe: {
561
+ value: yasgui ? yasgui.config.yasqe.value : Yasgui.defaults.yasqe.value,
562
+ },
563
+ yasr: {
564
+ response: undefined,
565
+ settings: {
566
+ selectedPlugin: yasgui ? yasgui.config.yasr.defaultPlugin : "table",
567
+ pluginsConfig: {},
568
+ },
569
+ },
570
+ requestConfig: yasgui ? yasgui.config.requestConfig : Object.assign({}, Yasgui.defaults.requestConfig),
571
+ id: getRandomId(),
572
+ name: yasgui ? yasgui.createTabName() : Yasgui.defaults.tabName,
573
+ };
574
+ }
575
+ }
576
+ export default Tab;
577
+ const safeEndpoint = (endpoint) => {
578
+ const url = new URL(endpoint);
579
+ return encodeURI(url.href);
580
+ };
581
+ function getCorsErrorRenderer(tab) {
582
+ return (error) => __awaiter(this, void 0, void 0, function* () {
583
+ if (!error.status) {
584
+ const shouldReferToHttp = new URL(tab.getEndpoint()).protocol === "http:" && window.location.protocol === "https:";
585
+ if (shouldReferToHttp) {
586
+ const errorEl = document.createElement("div");
587
+ const errorSpan = document.createElement("p");
588
+ errorSpan.innerHTML = `You are trying to query an HTTP endpoint (<a href="${safeEndpoint(tab.getEndpoint())}" target="_blank" rel="noopener noreferrer">${safeEndpoint(tab.getEndpoint())}</a>) from an HTTP<strong>S</strong> website (<a href="${safeEndpoint(window.location.href)}">${safeEndpoint(window.location.href)}</a>).<br>This is not allowed in modern browsers, see <a target="_blank" rel="noopener noreferrer" href="https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy">https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy</a>.`;
589
+ if (tab.yasgui.config.nonSslDomain) {
590
+ const errorLink = document.createElement("p");
591
+ errorLink.innerHTML = `As a workaround, you can use the HTTP version of Yasgui instead: <a href="${tab.getShareableLink(tab.yasgui.config.nonSslDomain)}" target="_blank">${tab.yasgui.config.nonSslDomain}</a>`;
592
+ errorSpan.appendChild(errorLink);
593
+ }
594
+ errorEl.appendChild(errorSpan);
595
+ return errorEl;
596
+ }
597
+ }
598
+ });
599
+ }
600
+ //# sourceMappingURL=Tab.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Tab.js","sourceRoot":"","sources":["../../../../../packages/yasgui/src/Tab.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAE1E,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,KAAK,EAAmE,MAAM,gBAAgB,CAAC;AACnH,OAAO,EAAE,OAAO,IAAI,IAAI,EAA0E,MAAM,eAAe,CAAC;AACxH,OAAO,EAAE,SAAS,EAAE,EAAE,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAC5E,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,YAAY,CAAC;AACpB,OAAO,EAAE,WAAW,EAAE,OAAO,IAAI,MAAM,EAAuB,MAAM,IAAI,CAAC;AAuCzE,MAAM,OAAO,GAAI,SAAQ,YAAY;IAWnC,YAAY,MAAc,EAAE,IAAmB;QAC7C,KAAK,EAAE,CAAC;QAqEF,kBAAa,GAAG,CAAC,KAAoB,EAAE,EAAE;;YAE/C,IAAI,KAAK,CAAC,GAAG,KAAK,KAAK,EAAE,CAAC;gBACxB,KAAK,CAAC,cAAc,EAAE,CAAC;gBACvB,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;oBACf,IAAI,CAAC,KAAK,CAAC,gBAAgB,EAAE,CAAC;oBAE9B,IAAI,MAAA,IAAI,CAAC,IAAI,0CAAE,eAAe,EAAE,EAAE,CAAC;wBACjC,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC;oBAC/B,CAAC;gBACH,CAAC;YACH,CAAC;iBAEI,IAAI,KAAK,CAAC,GAAG,KAAK,KAAK,EAAE,CAAC;gBAC7B,KAAK,CAAC,cAAc,EAAE,CAAC;gBACvB,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;oBACd,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC;oBAE7B,IAAI,MAAA,IAAI,CAAC,KAAK,0CAAE,eAAe,EAAE,EAAE,CAAC;wBAClC,IAAI,CAAC,KAAK,CAAC,gBAAgB,EAAE,CAAC;oBAChC,CAAC;gBACH,CAAC;YACH,CAAC;iBAEI,IAAI,KAAK,CAAC,OAAO,IAAI,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,GAAG,KAAK,GAAG,EAAE,CAAC;gBAC9D,KAAK,CAAC,cAAc,EAAE,CAAC;gBACvB,MAAM,eAAe,GAAG,MAAA,IAAI,CAAC,KAAK,0CAAE,eAAe,EAAE,CAAC;gBACtD,MAAM,cAAc,GAAG,MAAA,IAAI,CAAC,IAAI,0CAAE,eAAe,EAAE,CAAC;gBAEpD,IAAI,eAAe,EAAE,CAAC;oBAEpB,MAAA,IAAI,CAAC,KAAK,0CAAE,gBAAgB,EAAE,CAAC;oBAC/B,MAAA,IAAI,CAAC,IAAI,0CAAE,gBAAgB,EAAE,CAAC;gBAChC,CAAC;qBAAM,IAAI,cAAc,EAAE,CAAC;oBAE1B,MAAA,IAAI,CAAC,IAAI,0CAAE,gBAAgB,EAAE,CAAC;oBAC9B,MAAA,IAAI,CAAC,KAAK,0CAAE,gBAAgB,EAAE,CAAC;gBACjC,CAAC;qBAAM,CAAC;oBAEN,MAAA,IAAI,CAAC,KAAK,0CAAE,gBAAgB,EAAE,CAAC;gBACjC,CAAC;YACH,CAAC;QACH,CAAC,CAAC;QA4QF,oBAAe,GAAG,CAAC,KAAY,EAAE,EAAE;;YACjC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAE,CAAC;YAEnD,MAAA,IAAI,CAAC,aAAa,0CAAE,wBAAwB,EAAE,CAAC;YAC/C,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACjD,CAAC,CAAC;QACF,qBAAgB,GAAG,CAAC,KAAY,EAAE,EAAE;YAElC,IAAI,KAAK,CAAC,QAAQ,EAAE,KAAK,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;gBACzD,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAE,CAAC;gBACnD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YACjD,CAAC;YACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC3B,CAAC,CAAC;QACF,0BAAqB,GAAG,GAAG,EAAE;YAC3B,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YAE9B,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;gBACd,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC;YAC1B,CAAC;QACH,CAAC,CAAC;QACF,2BAAsB,GAAG,GAAG,EAAE;YAC5B,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;YAE/B,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;gBACd,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC;YAC1B,CAAC;QACH,CAAC,CAAC;QACF,sBAAiB,GAAG,CAAC,MAAa,EAAE,OAAe,EAAE,EAAE;YACrD,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,YAAY,GAAG,OAAO,CAAC;YACjD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACjD,CAAC,CAAC;QACF,8BAAyB,GAAG,CAAC,MAAa,EAAE,MAAc,EAAE,EAAE;YAC5D,IAAI,CAAC,IAAI,CAAC,qBAAqB,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;QACjD,CAAC,CAAC;QACF,8BAAyB,GAAG,CAAC,MAAa,EAAE,EAAE;YAC5C,IAAI,CAAC,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,CAAC;QACzC,CAAC,CAAC;QACF,wBAAmB,GAAG,CAAC,MAAa,EAAE,QAAa,EAAE,QAAgB,EAAE,EAAE;YACvE,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACjC,IAAI,CAAC,IAAI,CAAC,IAAI;gBAAE,MAAM,IAAI,KAAK,CAAC,2DAA2D,CAAC,CAAC;YAC7F,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;YAC1C,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO;gBAAE,OAAO;YAC/B,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC;gBAClC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CACpE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,yBAAyB,CAClD,CAAC;YACJ,CAAC;iBAAM,CAAC;gBAEN,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,GAAG,SAAS,CAAC;YAChD,CAAC;YACD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACjD,CAAC,CAAC;QAEM,yBAAoB,GAAG,CAAC,KAAiB,EAAE,EAAE;YAEnD,IAAI,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK;gBAAE,OAAO;YAE1C,MAAM,MAAM,GAAG,KAAK,CAAC,MAAqB,CAAC;YAE3C,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC;gBAAE,OAAO;YAG3C,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;YAC/E,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC;YAIzC,MAAM,WAAW,GAAG,KAAK,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;YAGxC,IAAI,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC;gBAAE,OAAO;YAGvE,MAAM,SAAS,GAAG,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;YAC3E,MAAM,cAAc,GAAG,gBAAgB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;YAE1D,IAAI,CAAC,SAAS,IAAI,CAAC,cAAc;gBAAE,OAAO;YAE1C,KAAK,CAAC,cAAc,EAAE,CAAC;YACvB,KAAK,CAAC,eAAe,EAAE,CAAC;YAGxB,IAAI,GAAG,GAAG,WAAW,CAAC;YACtB,IAAI,SAAS,EAAE,CAAC;gBAEd,GAAG,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;YACjC,CAAC;iBAAM,IAAI,cAAc,EAAE,CAAC;gBAE1B,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,oBAAoB,EAAE,CAAC;gBACnD,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,GAAG,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gBACnD,MAAM,SAAS,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;gBACnC,IAAI,SAAS,EAAE,CAAC;oBACd,GAAG,GAAG,SAAS,GAAG,SAAS,CAAC;gBAC9B,CAAC;YACH,CAAC;YAGD,MAAM,cAAc,GAAG;;;;;UAKjB,GAAG;;;;;;;;aAQA,CAAC;YAGV,IAAI,CAAC,sBAAsB,CAAC,cAAc,CAAC,CAAC;QAC9C,CAAC,CAAC;QA7eA,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,SAAS;YAAE,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;QAC7G,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;IAC7B,CAAC;IACM,IAAI;QACT,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC;IAClC,CAAC;IACM,gBAAgB;QACrB,OAAO,IAAI,CAAC,cAAc,CAAC;IAC7B,CAAC;IACM,KAAK;QACV,OAAO,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC;IAChC,CAAC;IACO,IAAI;QACV,IAAI,IAAI,CAAC,MAAM;YAAE,OAAO;QACxB,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,UAAU,CAAC;QACnC,IAAI,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;QAC7C,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;QAK7E,MAAM,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QACpD,aAAa,CAAC,SAAS,GAAG,eAAe,CAAC;QAC1C,MAAM,qBAAqB,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QAE5D,IAAI,CAAC,YAAY,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QAClD,IAAI,CAAC,YAAY,CAAC,SAAS,GAAG,YAAY,CAAC;QAC3C,qBAAqB,CAAC,WAAW,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAGrD,IAAI,CAAC,cAAc,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QACpD,qBAAqB,CAAC,WAAW,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;QACvD,aAAa,CAAC,WAAW,CAAC,qBAAqB,CAAC,CAAC;QAGjD,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QAEnD,IAAI,CAAC,mBAAmB,EAAE,CAAC;QAC3B,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;QACvC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAC5C,IAAI,CAAC,cAAc,EAAE,CAAC;QACtB,IAAI,CAAC,SAAS,EAAE,CAAC;QACjB,IAAI,CAAC,QAAQ,EAAE,CAAC;QAChB,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;IAC7D,CAAC;IACM,IAAI;QACT,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QACnC,IAAI,CAAC,uBAAuB,EAAE,CAAC;IACjC,CAAC;IACM,IAAI;QACT,IAAI,CAAC,IAAI,EAAE,CAAC;QACZ,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QAChC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;QAC1D,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YACf,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;YACrB,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS;gBAAE,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QACvD,CAAC;QACD,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;YACd,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;QACtB,CAAC;QAED,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,CAAC,CAAC;QACxF,IAAI,CAAC,uBAAuB,EAAE,CAAC;IACjC,CAAC;IA8CO,uBAAuB;QAC7B,IAAI,CAAC,IAAI,CAAC,MAAM;YAAE,OAAO;QACzB,QAAQ,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;IAC3D,CAAC;IAEO,uBAAuB;QAC7B,QAAQ,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;IAC9D,CAAC;IACM,MAAM;QACX,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;IAClD,CAAC;IACM,KAAK;QACV,IAAI,CAAC,uBAAuB,EAAE,CAAC;QAC/B,IAAI,IAAI,CAAC,KAAK;YAAE,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC;QACxC,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,IAAI,EAAE,CAAC;YAGlC,MAAM,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,CAAC;YACpD,MAAM,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;YAC/C,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC;gBACX,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,KAAK,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YACvE,CAAC;QACH,CAAC;QACD,IAAI,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACtC,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;QAC/D,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;QAChD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QACzB,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC;QAC7D,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;IACnD,CAAC;IACM,QAAQ;;QACb,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;QAChE,CAAC;QACD,OAAO,MAAA,IAAI,CAAC,KAAK,0CAAE,QAAQ,EAAE,CAAC;IAChC,CAAC;IACM,QAAQ,CAAC,KAAa;QAC3B,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;QAC/D,CAAC;QACD,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;QAC3B,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC;QACxC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,OAAO,IAAI,CAAC;IACd,CAAC;IACM,gBAAgB;QACrB,OAAO,IAAI,CAAC,cAAc,CAAC,aAAa,CAAC;IAC3C,CAAC;IACO,cAAc;QACpB,IAAI,CAAC,uBAAuB,EAAE,CAAC;QAC/B,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,YAAY,EAAE,CAAC;YACzD,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC,CAAC;QACnE,CAAC;IACH,CAAC;IACM,QAAQ;QACb,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IACM,OAAO;QACZ,OAAO,IAAI,CAAC,IAAI,CAAC;IACnB,CAAC;IACO,mBAAmB;QACzB,IAAI,CAAC,IAAI,CAAC,YAAY;YAAE,MAAM,IAAI,KAAK,CAAC,iEAAiE,CAAC,CAAC;QAC3G,IAAI,CAAC,aAAa,GAAG,IAAI,gBAAgB,CAAC,IAAI,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;IACrE,CAAC;IAEO,uBAAuB;QAC7B,IAAI,CAAC,IAAI,CAAC,YAAY;YAAE,MAAM,IAAI,KAAK,CAAC,mEAAmE,CAAC,CAAC;QAC7G,IAAI,CAAC,cAAc,GAAG,IAAI,cAAc,CACtC,IAAI,CAAC,WAAW,EAAE,EAClB,IAAI,CAAC,YAAY,EACjB,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,wBAAwB,EAC3C,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,CAClD,CAAC;QACF,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,eAAe,EAAE,EAAE;YAC7D,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;QAC9C,CAAC,CAAC,CAAC;QACH,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,eAAe,EAAE,EAAE;YAC7D,IAAI,CAAC,WAAW,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;QAC9C,CAAC,CAAC,CAAC;IACL,CAAC;IAEO,oBAAoB,CAAC,QAAgB;QAC3C,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,IAAI,CAAC,CAAC,QAAQ,IAAI,MAAM,CAAC,WAAW,CAAC,EAAE,CAAC;YACtE,MAAM,MAAM,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,CAAC;YACjC,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAAC;YACtD,KAAK,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC;iBACrB,IAAI,CAAC,GAAG,EAAE;gBACT,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;YACtC,CAAC,CAAC;iBACD,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE;gBAEX,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;YACvE,CAAC,CAAC,CAAC;QACP,CAAC;IACH,CAAC;IACM,WAAW,CAAC,QAAgB,EAAE,eAA0B;QAC7D,IAAI,QAAQ;YAAE,QAAQ,GAAG,QAAQ,CAAC,IAAI,EAAE,CAAC;QACzC,IAAI,eAAe,IAAI,CAAC,EAAE,CAAC,eAAe,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,CAAC,EAAE,CAAC;YAC/F,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,uBAAuB,EAAE,IAAI,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;QAC1E,CAAC;QACD,IAAI,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC;QAEpC,IAAI,IAAI,CAAC,cAAc,CAAC,aAAa,CAAC,QAAQ,KAAK,QAAQ,EAAE,CAAC;YAC5D,IAAI,CAAC,cAAc,CAAC,aAAa,CAAC,QAAQ,GAAG,QAAQ,CAAC;YACtD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;YAC/C,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAC;QAC9C,CAAC;QACD,IAAI,IAAI,CAAC,cAAc,YAAY,cAAc,EAAE,CAAC;YAClD,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,QAAQ,EAAE,eAAe,CAAC,CAAC;QAC7D,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;IACM,WAAW;QAChB,OAAO,UAAU,CAAC,IAAI,CAAC,cAAc,CAAC,aAAa,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;IAC7E,CAAC;IAKM,iBAAiB;QACtB,IAAI,CAAC,YAAY,EAAE,CAAC,iBAAiB,EAAE,CAAC;IAC1C,CAAC;IACM,gBAAgB,CAAC,OAAgB;QACtC,OAAO,SAAS,CAAC,eAAe,CAAC,OAAO,IAAI,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC1E,CAAC;IACM,cAAc;QACnB,OAAO,SAAS,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;IAC3C,CAAC;IACO,YAAY;QAClB,OAAO,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;IAC7D,CAAC;IACM,OAAO,CAAC,OAAe;QAC5B,IAAI,CAAC,YAAY,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QACpC,IAAI,CAAC,cAAc,CAAC,IAAI,GAAG,OAAO,CAAC;QACnC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QAC/C,OAAO,IAAI,CAAC;IACd,CAAC;IACM,UAAU;;QACf,OAAO,CAAC,CAAC,CAAA,MAAA,IAAI,CAAC,IAAI,0CAAE,OAAO,CAAA,CAAC;IAC9B,CAAC;IAEM,OAAO;QACZ,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC;IAClC,CAAC;IACM,KAAK;QACV,IAAI,CAAC,IAAI,CAAC,KAAK;YAAE,OAAO,OAAO,CAAC,MAAM,CAAC,IAAI,KAAK,CAAC,6BAA6B,CAAC,CAAC,CAAC;QACjF,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;IAC5B,CAAC;IACM,gBAAgB,CAAC,aAA2C;QACjE,IAAI,CAAC,cAAc,CAAC,aAAa,mCAC5B,IAAI,CAAC,cAAc,CAAC,aAAa,GACjC,aAAa,CACjB,CAAC;QAEF,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;IACjD,CAAC;IAcO,sBAAsB;QAC5B,MAAM,MAAM,GAAgC,EAAE,CAAC;QAC/C,IAAI,GAA8B,CAAC;QACnC,KAAK,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC;YAE7C,IAAI,GAAG,KAAK,0BAA0B;gBAAE,SAAS;YACjD,MAAM,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;YAClD,IAAI,OAAO,GAAG,KAAK,UAAU,EAAE,CAAC;gBAC7B,MAAM,CAAC,GAAG,CAAS,GAAG,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YAC1C,CAAC;QACH,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAEO,SAAS;QACf,MAAM,SAAS,mCACV,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,KAC3B,KAAK,EAAE,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,EACtC,YAAY,EAAE,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,EACzG,aAAa,EAAE,IAAI,EACnB,gBAAgB,EAAE,IAAI,EACtB,mBAAmB,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,EAAE,EAClD,aAAa,EAAE,GAAG,EAAE;gBAClB,MAAM,kBAAkB,iCAGtB,iBAAiB,EAAE,aAAa,EAEhC,kBAAkB,EAAE,iCAAiC,IAClD,SAAS,CACV,EAAE,EACF,IAAI,CAAC,cAAc,CAAC,aAAa,EACjC,IAAI,CAAC,sBAAsB,EAAE,EAC7B,SAAS,UAAU,CAAC,QAAQ,EAAE,QAAQ;oBACpC,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC;wBACvD,OAAO,CAAC,GAAG,CAAC,QAAQ,IAAI,EAAE,CAAC,EAAE,GAAG,CAAC,QAAQ,IAAI,EAAE,CAAC,CAAC,CAAC;oBACpD,CAAC;gBACH,CAAC,CACF,KAGD,wBAAwB,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,wBAAwB,GACpF,CAAC;gBACF,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,EAAE,CAAC;oBAC5E,OAAO,gCACF,kBAAkB,KACrB,IAAI,EAAE;4BACJ,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC;4BAC1E,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,CAAC,WAAW,EAAE,EAAE;4BAC/C,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,IAAI,CAAC,cAAc,CAAC,aAAa,CAAC,MAAM,EAAE;yBACpE,EACD,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,GACjB,CAAC;gBAC1B,CAAC;gBACD,OAAO,kBAAwC,CAAC;YAClD,CAAC,GACF,CAAC;QACF,IAAI,CAAC,SAAS,CAAC,UAAU,EAAE,CAAC;YAC1B,SAAS,CAAC,UAAU,GAAG,EAAE,CAAC;QAC5B,CAAC;QACD,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC;YACpC,SAAS,CAAC,UAAU,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;QACtD,CAAC;QACD,IAAI,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC;YACzB,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;QAC3E,CAAC;QACD,IAAI,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,IAAI,CAAC,cAAc,EAAE,SAAS,CAAC,CAAC;QAEvD,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;QAC5C,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAC9C,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,aAAa,EAAE,IAAI,CAAC,sBAAsB,CAAC,CAAC;QAC1D,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC;QACxD,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,QAAQ,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC;QAEhD,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,qBAAqB,EAAE,IAAI,CAAC,yBAAyB,CAAC,CAAC;QACrE,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,qBAAqB,EAAE,IAAI,CAAC,yBAAyB,CAAC,CAAC;QAErE,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,eAAe,EAAE,IAAI,CAAC,mBAAmB,CAAC,CAAC;QAGzD,IAAI,CAAC,uBAAuB,EAAE,CAAC;IACjC,CAAC;IACO,YAAY;;QAElB,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,MAAM,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;QAC9C,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,OAAO,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAChD,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,YAAY,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC;QAC1D,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,QAAQ,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC;QAClD,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,qBAAqB,EAAE,IAAI,CAAC,yBAAyB,CAAC,CAAC;QACvE,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,qBAAqB,EAAE,IAAI,CAAC,yBAAyB,CAAC,CAAC;QACvE,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,aAAa,EAAE,IAAI,CAAC,sBAAsB,CAAC,CAAC;QAC5D,MAAA,IAAI,CAAC,KAAK,0CAAE,GAAG,CAAC,eAAe,EAAE,IAAI,CAAC,mBAAmB,CAAC,CAAC;QAC3D,IAAI,CAAC,uBAAuB,EAAE,CAAC;QAC/B,MAAA,IAAI,CAAC,KAAK,0CAAE,OAAO,EAAE,CAAC;QACtB,IAAI,CAAC,KAAK,GAAG,SAAS,CAAC;IACzB,CAAC;IAsHa,sBAAsB,CAAC,KAAa;;YAChD,IAAI,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC,IAAI,CAAC,IAAI;gBAAE,OAAO;YAEtC,IAAI,CAAC;gBAEH,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC;gBACxB,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,CAAC;gBAG/B,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,aAAa,CAAC;gBACtD,MAAM,MAAM,GAAG,OAAO,aAAa,KAAK,UAAU,CAAC,CAAC,CAAC,aAAa,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC;gBAE/F,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE,CAAC;oBACrB,MAAM,IAAI,KAAK,CAAC,wBAAwB,CAAC,CAAC;gBAC5C,CAAC;gBAED,MAAM,QAAQ,GAAG,OAAO,MAAM,CAAC,QAAQ,KAAK,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC;gBACvG,MAAM,MAAM,GAAG,OAAO,MAAM,CAAC,MAAM,KAAK,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC;gBACzG,MAAM,OAAO,GAAG,OAAO,MAAM,CAAC,OAAO,KAAK,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,IAAI,EAAE,CAAC;gBAGzG,MAAM,YAAY,GAAG,IAAI,eAAe,EAAE,CAAC;gBAC3C,YAAY,CAAC,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;gBAGpC,IAAI,MAAM,CAAC,IAAI,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;oBAC9C,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,GAAQ,EAAE,EAAE;wBAC/B,IAAI,GAAG,CAAC,IAAI,IAAI,GAAG,CAAC,KAAK,EAAE,CAAC;4BAC1B,YAAY,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC;wBAC3C,CAAC;oBACH,CAAC,CAAC,CAAC;gBACL,CAAC;gBAED,MAAM,YAAY,GAAgB;oBAChC,MAAM,EAAE,MAAM;oBACd,OAAO,kBACL,MAAM,EAAE,aAAa,IAClB,OAAO,CACX;iBACF,CAAC;gBAEF,IAAI,GAAG,GAAG,QAAQ,CAAC;gBACnB,IAAI,MAAM,KAAK,MAAM,EAAE,CAAC;oBACtB,YAAY,CAAC,OAAO,mCACf,YAAY,CAAC,OAAO,KACvB,cAAc,EAAE,mCAAmC,GACpD,CAAC;oBACF,YAAY,CAAC,IAAI,GAAG,YAAY,CAAC,QAAQ,EAAE,CAAC;gBAC9C,CAAC;qBAAM,CAAC;oBACN,MAAM,MAAM,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,CAAC;oBACjC,YAAY,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;wBAClC,MAAM,CAAC,YAAY,CAAC,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;oBACzC,CAAC,CAAC,CAAC;oBACH,GAAG,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC;gBAC1B,CAAC;gBAED,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;gBAC7B,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,EAAE,YAAY,CAAC,CAAC;gBAChD,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,SAAS,CAAC;gBAExC,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;oBACjB,MAAM,IAAI,KAAK,CAAC,iBAAiB,QAAQ,CAAC,UAAU,EAAE,CAAC,CAAC;gBAC1D,CAAC;gBAED,MAAM,MAAM,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;gBAIrC,MAAM,aAAa,GAAG;oBACpB,EAAE,EAAE,QAAQ,CAAC,EAAE;oBACf,MAAM,EAAE,QAAQ,CAAC,MAAM;oBACvB,UAAU,EAAE,QAAQ,CAAC,UAAU;oBAC/B,OAAO,EAAE,QAAQ,CAAC,OAAO;oBACzB,IAAI,EAAE,QAAQ,CAAC,IAAI;oBACnB,OAAO,EAAE,MAAM;iBAChB,CAAC;gBAGF,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;gBAI/C,IAAI,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC;oBAC/B,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC,CAAC;gBAClC,CAAC;gBAED,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC;gBACxB,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,CAAC;YACnC,CAAC;YAAC,OAAO,KAAK,EAAE,CAAC;gBACf,OAAO,CAAC,KAAK,CAAC,0BAA0B,EAAE,KAAK,CAAC,CAAC;gBACjD,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;oBACd,IAAI,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC;oBAExB,IAAI,CAAC,IAAI,CAAC,WAAW,CACnB;wBACE,KAAK,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,eAAe;qBAChE,EACD,CAAC,CACF,CAAC;gBACJ,CAAC;YACH,CAAC;QACH,CAAC;KAAA;IAEO,uBAAuB;QAC7B,IAAI,CAAC,IAAI,CAAC,KAAK;YAAE,OAAO;QACxB,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAC/C,IAAI,OAAO,EAAE,CAAC;YACZ,OAAO,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC;QACnE,CAAC;IACH,CAAC;IAEO,uBAAuB;QAC7B,IAAI,CAAC,IAAI,CAAC,KAAK;YAAE,OAAO;QACxB,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAC/C,IAAI,OAAO,EAAE,CAAC;YACZ,OAAO,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,oBAAoB,CAAC,CAAC;QACtE,CAAC;IACH,CAAC;IAEO,QAAQ;QACd,IAAI,CAAC,IAAI,CAAC,aAAa;YAAE,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;QAE5E,MAAM,QAAQ,GAAwB;YACpC,aAAa,EAAE,IAAI;YACnB,QAAQ,EAAE,CAAC,IAAI,EAAE,EAAE;;gBAEjB,MAAM,oBAAoB,GACxB,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,KAAK,UAAU;oBACpD,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;oBACxC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC;gBACvC,MAAM,iBAAiB,GAAG,MAAA,IAAI,CAAC,KAAK,0CAAE,oBAAoB,EAAE,CAAC;gBAG7D,OAAO,MAAM,CAAC,MAAM,iCAAM,oBAAoB,GAAK,iBAAiB,EAAG,CAAC,CAAC;YAC3E,CAAC;YACD,aAAa,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc;YAC/D,2BAA2B,EAAE,GAAG,EAAE;gBAChC,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;oBACf,OAAO,SAAS,CAAC,eAAe,CAC9B,IAAI,CAAC,WAAW,EAAE,EAClB,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,cAAc,CAAC,aAAmC,CAAC,CAClG,CAAC;gBACJ,CAAC;YACH,CAAC;YACD,OAAO,EAAE,SAAS,CAAC,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;gBAC7E,aAAa,EAAE,IAAI;aACpB,CAAC,CAAC;YACH,cAAc,EAAE;gBAEd,oBAAoB,CAAC,IAAI,CAAC;gBAE1B,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,cAAc,IAAI,EAAE,CAAC;aACxC;SACF,CAAC;QAEF,IAAI,QAAQ,CAAC,mBAAmB,KAAK,SAAS,EAAE,CAAC;YAC/C,QAAQ,CAAC,mBAAmB,GAAG,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAC/E,CAAC;QAED,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,QAAQ,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAGtF,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE,CAAC;QACpE,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE;YAC1B,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC;gBACd,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE,CAAC;YACtE,CAAC;YAED,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACjD,CAAC,CAAC,CAAC;IACL,CAAC;IACD,OAAO;;QACL,IAAI,CAAC,kBAAkB,EAAE,CAAC;QAC1B,MAAA,IAAI,CAAC,aAAa,0CAAE,OAAO,EAAE,CAAC;QAC9B,MAAA,IAAI,CAAC,cAAc,0CAAE,OAAO,EAAE,CAAC;QAC/B,IAAI,CAAC,cAAc,GAAG,SAAS,CAAC;QAChC,MAAA,IAAI,CAAC,IAAI,0CAAE,OAAO,EAAE,CAAC;QACrB,IAAI,CAAC,IAAI,GAAG,SAAS,CAAC;QACtB,IAAI,CAAC,YAAY,EAAE,CAAC;IACtB,CAAC;IACM,MAAM,CAAC,WAAW,CAAC,MAAe;QACvC,OAAO;YACL,KAAK,EAAE;gBACL,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK;aACxE;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,SAAS;gBACnB,QAAQ,EAAE;oBACR,cAAc,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,OAAO;oBACnE,aAAa,EAAE,EAAE;iBAClB;aACF;YACD,aAAa,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC,mBAAM,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAE;YAC1F,EAAE,EAAE,WAAW,EAAE;YACjB,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO;SAChE,CAAC;IACJ,CAAC;CACF;AAED,eAAe,GAAG,CAAC;AAGnB,MAAM,YAAY,GAAG,CAAC,QAAgB,EAAU,EAAE;IAChD,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC,QAAQ,CAAC,CAAC;IAC9B,OAAO,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;AAC7B,CAAC,CAAC;AAEF,SAAS,oBAAoB,CAAC,GAAQ;IACpC,OAAO,CAAO,KAA0B,EAAoC,EAAE;QAC5E,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;YAElB,MAAM,iBAAiB,GACrB,IAAI,GAAG,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,CAAC,QAAQ,KAAK,OAAO,IAAI,MAAM,CAAC,QAAQ,CAAC,QAAQ,KAAK,QAAQ,CAAC;YAC3F,IAAI,iBAAiB,EAAE,CAAC;gBACtB,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;gBAC9C,MAAM,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;gBAC9C,SAAS,CAAC,SAAS,GAAG,sDAAsD,YAAY,CACtF,GAAG,CAAC,WAAW,EAAE,CAClB,+CAA+C,YAAY,CAC1D,GAAG,CAAC,WAAW,EAAE,CAClB,0DAA0D,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,YAAY,CAC5G,MAAM,CAAC,QAAQ,CAAC,IAAI,CACrB,kQAAkQ,CAAC;gBACpQ,IAAI,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE,CAAC;oBACnC,MAAM,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;oBAC9C,SAAS,CAAC,SAAS,GAAG,6EAA6E,GAAG,CAAC,gBAAgB,CACrH,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,CAC/B,qBAAqB,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,YAAY,MAAM,CAAC;oBAC3D,SAAS,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;gBACnC,CAAC;gBACD,OAAO,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;gBAC/B,OAAO,OAAO,CAAC;YACjB,CAAC;QACH,CAAC;IACH,CAAC,CAAA,CAAC;AACJ,CAAC"}
@@ -1,5 +1,6 @@
1
1
  import { default as Yasgui } from "./";
2
2
  import { TabListEl } from "./TabElements";
3
+ import "./TabContextMenu.scss";
3
4
  export interface TabContextConfig {
4
5
  name: string;
5
6
  action: (this: HTMLElement, ev: MouseEvent) => any;