@startinblox/components-ds4go 2.3.0 → 3.0.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.
- package/.gitlab-ci.yml +8 -2
- package/AGENTS.md +516 -0
- package/cypress/component/no-component-test.cy.ts +9 -0
- package/cypress/e2e/helpers/components/setupCacheInvalidation.cy.ts +512 -0
- package/cypress/e2e/helpers/components/setupCacheOnResourceReady.cy.ts +483 -0
- package/cypress/e2e/helpers/components/setupComponentSubscriptions.cy.ts +239 -0
- package/cypress/e2e/helpers/components/setupOnSaveReset.cy.ts +380 -0
- package/cypress/e2e/helpers/datas/checkValueInIntervalRecursive.cy.ts +563 -0
- package/cypress/e2e/helpers/datas/dataBuilder.cy.ts +508 -0
- package/cypress/e2e/helpers/datas/filterGenerator.cy.ts +285 -0
- package/cypress/e2e/helpers/datas/filterObjectByDateAfter.cy.ts +389 -0
- package/cypress/e2e/helpers/datas/filterObjectByDateInterval.cy.ts +613 -0
- package/cypress/e2e/helpers/datas/filterObjectById.cy.ts +276 -0
- package/cypress/e2e/helpers/datas/filterObjectByInterval.cy.ts +237 -0
- package/cypress/e2e/helpers/datas/filterObjectByNamedValue.cy.ts +299 -0
- package/cypress/e2e/helpers/datas/filterObjectByType.cy.ts +307 -0
- package/cypress/e2e/helpers/datas/filterObjectByValue.cy.ts +375 -0
- package/cypress/e2e/helpers/datas/sort.cy.ts +293 -0
- package/cypress/e2e/helpers/ui/formatDate.cy.ts +233 -0
- package/cypress/e2e/helpers/utils/requestNavigation.cy.ts +257 -0
- package/cypress/e2e/helpers/utils/uniq.cy.ts +160 -0
- package/cypress/support/e2e.ts +1 -0
- package/cypress.config.ts +2 -0
- package/dist/index.js +1102 -1002
- package/package.json +10 -10
- package/src/components/solid-boilerplate.ts +76 -0
- package/src/helpers/components/componentObjectHandler.ts +5 -7
- package/src/helpers/components/componentObjectsHandler.ts +8 -3
- package/src/helpers/components/orbitComponent.ts +87 -68
- package/src/helpers/components/setupCacheInvalidation.ts +50 -23
- package/src/helpers/components/setupCacheOnResourceReady.ts +42 -23
- package/src/helpers/components/setupComponentSubscriptions.ts +10 -9
- package/src/helpers/components/setupOnSaveReset.ts +27 -5
- package/src/helpers/datas/checkValueInIntervalRecursive.ts +66 -0
- package/src/helpers/datas/dataBuilder.ts +4 -4
- package/src/helpers/datas/filterGenerator.ts +13 -10
- package/src/helpers/datas/filterObjectByDateAfter.ts +3 -3
- package/src/helpers/datas/filterObjectByDateInterval.ts +44 -0
- package/src/helpers/datas/filterObjectById.ts +7 -6
- package/src/helpers/datas/filterObjectByInterval.ts +6 -110
- package/src/helpers/datas/filterObjectByNamedValue.ts +35 -33
- package/src/helpers/datas/filterObjectByType.ts +3 -3
- package/src/helpers/datas/filterObjectByValue.ts +17 -16
- package/src/helpers/datas/sort.ts +50 -23
- package/src/helpers/index.ts +2 -0
- package/src/helpers/ui/formatDate.ts +14 -1
- package/src/helpers/utils/requestNavigation.ts +5 -2
- package/src/helpers/utils/uniq.ts +1 -1
- package/cypress/component/solid-boilerplate.cy.ts +0 -9
package/dist/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { StoreType as
|
|
2
|
-
const
|
|
3
|
-
let
|
|
4
|
-
constructor(t,
|
|
5
|
-
if (this._$cssResult$ = !0, i !==
|
|
6
|
-
this.cssText = t, this.t =
|
|
1
|
+
import { StoreType as me, StoreService as ge } from "https://cdn.jsdelivr.net/npm/@startinblox/core@beta/+esm";
|
|
2
|
+
const nt = globalThis, xt = nt.ShadowRoot && (nt.ShadyCSS === void 0 || nt.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype, Pt = /* @__PURE__ */ Symbol(), Ot = /* @__PURE__ */ new WeakMap();
|
|
3
|
+
let te = class {
|
|
4
|
+
constructor(t, r, i) {
|
|
5
|
+
if (this._$cssResult$ = !0, i !== Pt) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
|
|
6
|
+
this.cssText = t, this.t = r;
|
|
7
7
|
}
|
|
8
8
|
get styleSheet() {
|
|
9
9
|
let t = this.o;
|
|
10
|
-
const
|
|
11
|
-
if (
|
|
12
|
-
const i =
|
|
13
|
-
i && (t = Ot.get(
|
|
10
|
+
const r = this.t;
|
|
11
|
+
if (xt && t === void 0) {
|
|
12
|
+
const i = r !== void 0 && r.length === 1;
|
|
13
|
+
i && (t = Ot.get(r)), t === void 0 && ((this.o = t = new CSSStyleSheet()).replaceSync(this.cssText), i && Ot.set(r, t));
|
|
14
14
|
}
|
|
15
15
|
return t;
|
|
16
16
|
}
|
|
@@ -18,28 +18,28 @@ let Qt = class {
|
|
|
18
18
|
return this.cssText;
|
|
19
19
|
}
|
|
20
20
|
};
|
|
21
|
-
const
|
|
22
|
-
const
|
|
21
|
+
const Rt = (e) => new te(typeof e == "string" ? e : e + "", void 0, Pt), tt = (e, ...t) => {
|
|
22
|
+
const r = e.length === 1 ? e[0] : t.reduce((i, s, o) => i + ((n) => {
|
|
23
23
|
if (n._$cssResult$ === !0) return n.cssText;
|
|
24
24
|
if (typeof n == "number") return n;
|
|
25
25
|
throw Error("Value passed to 'css' function must be a 'css' function result: " + n + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
|
|
26
|
-
})(
|
|
27
|
-
return new
|
|
28
|
-
},
|
|
29
|
-
if (
|
|
30
|
-
else for (const
|
|
31
|
-
const i = document.createElement("style"),
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
let
|
|
36
|
-
for (const i of t.cssRules)
|
|
37
|
-
return
|
|
26
|
+
})(s) + e[o + 1], e[0]);
|
|
27
|
+
return new te(r, e, Pt);
|
|
28
|
+
}, ye = (e, t) => {
|
|
29
|
+
if (xt) e.adoptedStyleSheets = t.map((r) => r instanceof CSSStyleSheet ? r : r.styleSheet);
|
|
30
|
+
else for (const r of t) {
|
|
31
|
+
const i = document.createElement("style"), s = nt.litNonce;
|
|
32
|
+
s !== void 0 && i.setAttribute("nonce", s), i.textContent = r.cssText, e.appendChild(i);
|
|
33
|
+
}
|
|
34
|
+
}, Lt = xt ? (e) => e : (e) => e instanceof CSSStyleSheet ? ((t) => {
|
|
35
|
+
let r = "";
|
|
36
|
+
for (const i of t.cssRules) r += i.cssText;
|
|
37
|
+
return Rt(r);
|
|
38
38
|
})(e) : e;
|
|
39
|
-
const { is:
|
|
39
|
+
const { is: ve, defineProperty: be, getOwnPropertyDescriptor: $e, getOwnPropertyNames: _e, getOwnPropertySymbols: we, getPrototypeOf: Ae } = Object, ht = globalThis, Tt = ht.trustedTypes, Ce = Tt ? Tt.emptyScript : "", Se = ht.reactiveElementPolyfillSupport, G = (e, t) => e, at = { toAttribute(e, t) {
|
|
40
40
|
switch (t) {
|
|
41
41
|
case Boolean:
|
|
42
|
-
e = e ?
|
|
42
|
+
e = e ? Ce : null;
|
|
43
43
|
break;
|
|
44
44
|
case Object:
|
|
45
45
|
case Array:
|
|
@@ -47,85 +47,85 @@ const { is: me, defineProperty: ge, getOwnPropertyDescriptor: ye, getOwnProperty
|
|
|
47
47
|
}
|
|
48
48
|
return e;
|
|
49
49
|
}, fromAttribute(e, t) {
|
|
50
|
-
let
|
|
50
|
+
let r = e;
|
|
51
51
|
switch (t) {
|
|
52
52
|
case Boolean:
|
|
53
|
-
|
|
53
|
+
r = e !== null;
|
|
54
54
|
break;
|
|
55
55
|
case Number:
|
|
56
|
-
|
|
56
|
+
r = e === null ? null : Number(e);
|
|
57
57
|
break;
|
|
58
58
|
case Object:
|
|
59
59
|
case Array:
|
|
60
60
|
try {
|
|
61
|
-
|
|
61
|
+
r = JSON.parse(e);
|
|
62
62
|
} catch {
|
|
63
|
-
|
|
63
|
+
r = null;
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
-
return
|
|
67
|
-
} },
|
|
68
|
-
Symbol.metadata ??= /* @__PURE__ */ Symbol("metadata"),
|
|
69
|
-
let
|
|
66
|
+
return r;
|
|
67
|
+
} }, pt = (e, t) => !ve(e, t), It = { attribute: !0, type: String, converter: at, reflect: !1, useDefault: !1, hasChanged: pt };
|
|
68
|
+
Symbol.metadata ??= /* @__PURE__ */ Symbol("metadata"), ht.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
|
|
69
|
+
let B = class extends HTMLElement {
|
|
70
70
|
static addInitializer(t) {
|
|
71
71
|
this._$Ei(), (this.l ??= []).push(t);
|
|
72
72
|
}
|
|
73
73
|
static get observedAttributes() {
|
|
74
74
|
return this.finalize(), this._$Eh && [...this._$Eh.keys()];
|
|
75
75
|
}
|
|
76
|
-
static createProperty(t,
|
|
77
|
-
if (
|
|
78
|
-
const i = /* @__PURE__ */ Symbol(),
|
|
79
|
-
|
|
76
|
+
static createProperty(t, r = It) {
|
|
77
|
+
if (r.state && (r.attribute = !1), this._$Ei(), this.prototype.hasOwnProperty(t) && ((r = Object.create(r)).wrapped = !0), this.elementProperties.set(t, r), !r.noAccessor) {
|
|
78
|
+
const i = /* @__PURE__ */ Symbol(), s = this.getPropertyDescriptor(t, i, r);
|
|
79
|
+
s !== void 0 && be(this.prototype, t, s);
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
|
-
static getPropertyDescriptor(t,
|
|
83
|
-
const { get:
|
|
84
|
-
return this[
|
|
82
|
+
static getPropertyDescriptor(t, r, i) {
|
|
83
|
+
const { get: s, set: o } = $e(this.prototype, t) ?? { get() {
|
|
84
|
+
return this[r];
|
|
85
85
|
}, set(n) {
|
|
86
|
-
this[
|
|
86
|
+
this[r] = n;
|
|
87
87
|
} };
|
|
88
|
-
return { get:
|
|
89
|
-
const a =
|
|
88
|
+
return { get: s, set(n) {
|
|
89
|
+
const a = s?.call(this);
|
|
90
90
|
o?.call(this, n), this.requestUpdate(t, a, i);
|
|
91
91
|
}, configurable: !0, enumerable: !0 };
|
|
92
92
|
}
|
|
93
93
|
static getPropertyOptions(t) {
|
|
94
|
-
return this.elementProperties.get(t) ??
|
|
94
|
+
return this.elementProperties.get(t) ?? It;
|
|
95
95
|
}
|
|
96
96
|
static _$Ei() {
|
|
97
|
-
if (this.hasOwnProperty(
|
|
98
|
-
const t =
|
|
97
|
+
if (this.hasOwnProperty(G("elementProperties"))) return;
|
|
98
|
+
const t = Ae(this);
|
|
99
99
|
t.finalize(), t.l !== void 0 && (this.l = [...t.l]), this.elementProperties = new Map(t.elementProperties);
|
|
100
100
|
}
|
|
101
101
|
static finalize() {
|
|
102
|
-
if (this.hasOwnProperty(
|
|
103
|
-
if (this.finalized = !0, this._$Ei(), this.hasOwnProperty(
|
|
104
|
-
const
|
|
105
|
-
for (const
|
|
102
|
+
if (this.hasOwnProperty(G("finalized"))) return;
|
|
103
|
+
if (this.finalized = !0, this._$Ei(), this.hasOwnProperty(G("properties"))) {
|
|
104
|
+
const r = this.properties, i = [..._e(r), ...we(r)];
|
|
105
|
+
for (const s of i) this.createProperty(s, r[s]);
|
|
106
106
|
}
|
|
107
107
|
const t = this[Symbol.metadata];
|
|
108
108
|
if (t !== null) {
|
|
109
|
-
const
|
|
110
|
-
if (
|
|
109
|
+
const r = litPropertyMetadata.get(t);
|
|
110
|
+
if (r !== void 0) for (const [i, s] of r) this.elementProperties.set(i, s);
|
|
111
111
|
}
|
|
112
112
|
this._$Eh = /* @__PURE__ */ new Map();
|
|
113
|
-
for (const [
|
|
114
|
-
const
|
|
115
|
-
|
|
113
|
+
for (const [r, i] of this.elementProperties) {
|
|
114
|
+
const s = this._$Eu(r, i);
|
|
115
|
+
s !== void 0 && this._$Eh.set(s, r);
|
|
116
116
|
}
|
|
117
117
|
this.elementStyles = this.finalizeStyles(this.styles);
|
|
118
118
|
}
|
|
119
119
|
static finalizeStyles(t) {
|
|
120
|
-
const
|
|
120
|
+
const r = [];
|
|
121
121
|
if (Array.isArray(t)) {
|
|
122
122
|
const i = new Set(t.flat(1 / 0).reverse());
|
|
123
|
-
for (const
|
|
124
|
-
} else t !== void 0 &&
|
|
125
|
-
return
|
|
123
|
+
for (const s of i) r.unshift(Lt(s));
|
|
124
|
+
} else t !== void 0 && r.push(Lt(t));
|
|
125
|
+
return r;
|
|
126
126
|
}
|
|
127
|
-
static _$Eu(t,
|
|
128
|
-
const i =
|
|
127
|
+
static _$Eu(t, r) {
|
|
128
|
+
const i = r.attribute;
|
|
129
129
|
return i === !1 ? void 0 : typeof i == "string" ? i : typeof t == "string" ? t.toLowerCase() : void 0;
|
|
130
130
|
}
|
|
131
131
|
constructor() {
|
|
@@ -141,13 +141,13 @@ let M = class extends HTMLElement {
|
|
|
141
141
|
this._$EO?.delete(t);
|
|
142
142
|
}
|
|
143
143
|
_$E_() {
|
|
144
|
-
const t = /* @__PURE__ */ new Map(),
|
|
145
|
-
for (const i of
|
|
144
|
+
const t = /* @__PURE__ */ new Map(), r = this.constructor.elementProperties;
|
|
145
|
+
for (const i of r.keys()) this.hasOwnProperty(i) && (t.set(i, this[i]), delete this[i]);
|
|
146
146
|
t.size > 0 && (this._$Ep = t);
|
|
147
147
|
}
|
|
148
148
|
createRenderRoot() {
|
|
149
149
|
const t = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
|
|
150
|
-
return
|
|
150
|
+
return ye(t, this.constructor.elementStyles), t;
|
|
151
151
|
}
|
|
152
152
|
connectedCallback() {
|
|
153
153
|
this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(!0), this._$EO?.forEach((t) => t.hostConnected?.());
|
|
@@ -157,42 +157,42 @@ let M = class extends HTMLElement {
|
|
|
157
157
|
disconnectedCallback() {
|
|
158
158
|
this._$EO?.forEach((t) => t.hostDisconnected?.());
|
|
159
159
|
}
|
|
160
|
-
attributeChangedCallback(t,
|
|
160
|
+
attributeChangedCallback(t, r, i) {
|
|
161
161
|
this._$AK(t, i);
|
|
162
162
|
}
|
|
163
|
-
_$ET(t,
|
|
164
|
-
const i = this.constructor.elementProperties.get(t),
|
|
165
|
-
if (
|
|
166
|
-
const o = (i.converter?.toAttribute !== void 0 ? i.converter :
|
|
167
|
-
this._$Em = t, o == null ? this.removeAttribute(
|
|
163
|
+
_$ET(t, r) {
|
|
164
|
+
const i = this.constructor.elementProperties.get(t), s = this.constructor._$Eu(t, i);
|
|
165
|
+
if (s !== void 0 && i.reflect === !0) {
|
|
166
|
+
const o = (i.converter?.toAttribute !== void 0 ? i.converter : at).toAttribute(r, i.type);
|
|
167
|
+
this._$Em = t, o == null ? this.removeAttribute(s) : this.setAttribute(s, o), this._$Em = null;
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
|
-
_$AK(t,
|
|
171
|
-
const i = this.constructor,
|
|
172
|
-
if (
|
|
173
|
-
const o = i.getPropertyOptions(
|
|
174
|
-
this._$Em =
|
|
175
|
-
const a = n.fromAttribute(
|
|
176
|
-
this[
|
|
170
|
+
_$AK(t, r) {
|
|
171
|
+
const i = this.constructor, s = i._$Eh.get(t);
|
|
172
|
+
if (s !== void 0 && this._$Em !== s) {
|
|
173
|
+
const o = i.getPropertyOptions(s), n = typeof o.converter == "function" ? { fromAttribute: o.converter } : o.converter?.fromAttribute !== void 0 ? o.converter : at;
|
|
174
|
+
this._$Em = s;
|
|
175
|
+
const a = n.fromAttribute(r, o.type);
|
|
176
|
+
this[s] = a ?? this._$Ej?.get(s) ?? a, this._$Em = null;
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
|
-
requestUpdate(t,
|
|
179
|
+
requestUpdate(t, r, i, s = !1, o) {
|
|
180
180
|
if (t !== void 0) {
|
|
181
181
|
const n = this.constructor;
|
|
182
|
-
if (
|
|
183
|
-
this.C(t,
|
|
182
|
+
if (s === !1 && (o = this[t]), i ??= n.getPropertyOptions(t), !((i.hasChanged ?? pt)(o, r) || i.useDefault && i.reflect && o === this._$Ej?.get(t) && !this.hasAttribute(n._$Eu(t, i)))) return;
|
|
183
|
+
this.C(t, r, i);
|
|
184
184
|
}
|
|
185
185
|
this.isUpdatePending === !1 && (this._$ES = this._$EP());
|
|
186
186
|
}
|
|
187
|
-
C(t,
|
|
188
|
-
i && !(this._$Ej ??= /* @__PURE__ */ new Map()).has(t) && (this._$Ej.set(t, n ??
|
|
187
|
+
C(t, r, { useDefault: i, reflect: s, wrapped: o }, n) {
|
|
188
|
+
i && !(this._$Ej ??= /* @__PURE__ */ new Map()).has(t) && (this._$Ej.set(t, n ?? r ?? this[t]), o !== !0 || n !== void 0) || (this._$AL.has(t) || (this.hasUpdated || i || (r = void 0), this._$AL.set(t, r)), s === !0 && this._$Em !== t && (this._$Eq ??= /* @__PURE__ */ new Set()).add(t));
|
|
189
189
|
}
|
|
190
190
|
async _$EP() {
|
|
191
191
|
this.isUpdatePending = !0;
|
|
192
192
|
try {
|
|
193
193
|
await this._$ES;
|
|
194
|
-
} catch (
|
|
195
|
-
Promise.reject(
|
|
194
|
+
} catch (r) {
|
|
195
|
+
Promise.reject(r);
|
|
196
196
|
}
|
|
197
197
|
const t = this.scheduleUpdate();
|
|
198
198
|
return t != null && await t, !this.isUpdatePending;
|
|
@@ -204,28 +204,28 @@ let M = class extends HTMLElement {
|
|
|
204
204
|
if (!this.isUpdatePending) return;
|
|
205
205
|
if (!this.hasUpdated) {
|
|
206
206
|
if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
|
|
207
|
-
for (const [
|
|
207
|
+
for (const [s, o] of this._$Ep) this[s] = o;
|
|
208
208
|
this._$Ep = void 0;
|
|
209
209
|
}
|
|
210
210
|
const i = this.constructor.elementProperties;
|
|
211
|
-
if (i.size > 0) for (const [
|
|
212
|
-
const { wrapped: n } = o, a = this[
|
|
213
|
-
n !== !0 || this._$AL.has(
|
|
211
|
+
if (i.size > 0) for (const [s, o] of i) {
|
|
212
|
+
const { wrapped: n } = o, a = this[s];
|
|
213
|
+
n !== !0 || this._$AL.has(s) || a === void 0 || this.C(s, void 0, o, a);
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
216
|
let t = !1;
|
|
217
|
-
const
|
|
217
|
+
const r = this._$AL;
|
|
218
218
|
try {
|
|
219
|
-
t = this.shouldUpdate(
|
|
219
|
+
t = this.shouldUpdate(r), t ? (this.willUpdate(r), this._$EO?.forEach((i) => i.hostUpdate?.()), this.update(r)) : this._$EM();
|
|
220
220
|
} catch (i) {
|
|
221
221
|
throw t = !1, this._$EM(), i;
|
|
222
222
|
}
|
|
223
|
-
t && this._$AE(
|
|
223
|
+
t && this._$AE(r);
|
|
224
224
|
}
|
|
225
225
|
willUpdate(t) {
|
|
226
226
|
}
|
|
227
227
|
_$AE(t) {
|
|
228
|
-
this._$EO?.forEach((
|
|
228
|
+
this._$EO?.forEach((r) => r.hostUpdated?.()), this.hasUpdated || (this.hasUpdated = !0, this.firstUpdated(t)), this.updated(t);
|
|
229
229
|
}
|
|
230
230
|
_$EM() {
|
|
231
231
|
this._$AL = /* @__PURE__ */ new Map(), this.isUpdatePending = !1;
|
|
@@ -240,79 +240,79 @@ let M = class extends HTMLElement {
|
|
|
240
240
|
return !0;
|
|
241
241
|
}
|
|
242
242
|
update(t) {
|
|
243
|
-
this._$Eq &&= this._$Eq.forEach((
|
|
243
|
+
this._$Eq &&= this._$Eq.forEach((r) => this._$ET(r, this[r])), this._$EM();
|
|
244
244
|
}
|
|
245
245
|
updated(t) {
|
|
246
246
|
}
|
|
247
247
|
firstUpdated(t) {
|
|
248
248
|
}
|
|
249
249
|
};
|
|
250
|
-
|
|
251
|
-
const
|
|
252
|
-
\f\r]`,
|
|
253
|
-
\f\r"'\`<>=]|("|')|))|$)`, "g"),
|
|
254
|
-
function
|
|
250
|
+
B.elementStyles = [], B.shadowRootOptions = { mode: "open" }, B[G("elementProperties")] = /* @__PURE__ */ new Map(), B[G("finalized")] = /* @__PURE__ */ new Map(), Se?.({ ReactiveElement: B }), (ht.reactiveElementVersions ??= []).push("2.1.2");
|
|
251
|
+
const Et = globalThis, Ft = (e) => e, ct = Et.trustedTypes, Nt = ct ? ct.createPolicy("lit-html", { createHTML: (e) => e }) : void 0, ee = "$lit$", R = `lit$${Math.random().toFixed(9).slice(2)}$`, re = "?" + R, xe = `<${re}>`, F = document, J = () => F.createComment(""), Z = (e) => e === null || typeof e != "object" && typeof e != "function", jt = Array.isArray, Pe = (e) => jt(e) || typeof e?.[Symbol.iterator] == "function", gt = `[
|
|
252
|
+
\f\r]`, K = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, Mt = /-->/g, Bt = />/g, k = RegExp(`>|${gt}(?:([^\\s"'>=/]+)(${gt}*=${gt}*(?:[^
|
|
253
|
+
\f\r"'\`<>=]|("|')|))|$)`, "g"), qt = /'/g, Ht = /"/g, se = /^(?:script|style|textarea|title)$/i, Re = (e) => (t, ...r) => ({ _$litType$: e, strings: t, values: r }), f = Re(1), V = /* @__PURE__ */ Symbol.for("lit-noChange"), l = /* @__PURE__ */ Symbol.for("lit-nothing"), zt = /* @__PURE__ */ new WeakMap(), T = F.createTreeWalker(F, 129);
|
|
254
|
+
function ie(e, t) {
|
|
255
255
|
if (!jt(e) || !e.hasOwnProperty("raw")) throw Error("invalid template strings array");
|
|
256
|
-
return
|
|
256
|
+
return Nt !== void 0 ? Nt.createHTML(t) : t;
|
|
257
257
|
}
|
|
258
|
-
const
|
|
259
|
-
const
|
|
260
|
-
let
|
|
261
|
-
for (let a = 0; a <
|
|
258
|
+
const Ee = (e, t) => {
|
|
259
|
+
const r = e.length - 1, i = [];
|
|
260
|
+
let s, o = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", n = K;
|
|
261
|
+
for (let a = 0; a < r; a++) {
|
|
262
262
|
const c = e[a];
|
|
263
|
-
let
|
|
264
|
-
for (;
|
|
265
|
-
const w = n ===
|
|
266
|
-
o += n ===
|
|
263
|
+
let d, p, u = -1, g = 0;
|
|
264
|
+
for (; g < c.length && (n.lastIndex = g, p = n.exec(c), p !== null); ) g = n.lastIndex, n === K ? p[1] === "!--" ? n = Mt : p[1] !== void 0 ? n = Bt : p[2] !== void 0 ? (se.test(p[2]) && (s = RegExp("</" + p[2], "g")), n = k) : p[3] !== void 0 && (n = k) : n === k ? p[0] === ">" ? (n = s ?? K, u = -1) : p[1] === void 0 ? u = -2 : (u = n.lastIndex - p[2].length, d = p[1], n = p[3] === void 0 ? k : p[3] === '"' ? Ht : qt) : n === Ht || n === qt ? n = k : n === Mt || n === Bt ? n = K : (n = k, s = void 0);
|
|
265
|
+
const w = n === k && e[a + 1].startsWith("/>") ? " " : "";
|
|
266
|
+
o += n === K ? c + xe : u >= 0 ? (i.push(d), c.slice(0, u) + ee + c.slice(u) + R + w) : c + R + (u === -2 ? a : w);
|
|
267
267
|
}
|
|
268
|
-
return [
|
|
268
|
+
return [ie(e, o + (e[r] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), i];
|
|
269
269
|
};
|
|
270
|
-
class
|
|
271
|
-
constructor({ strings: t, _$litType$:
|
|
272
|
-
let
|
|
270
|
+
class X {
|
|
271
|
+
constructor({ strings: t, _$litType$: r }, i) {
|
|
272
|
+
let s;
|
|
273
273
|
this.parts = [];
|
|
274
274
|
let o = 0, n = 0;
|
|
275
|
-
const a = t.length - 1, c = this.parts, [
|
|
276
|
-
if (this.el =
|
|
277
|
-
const
|
|
278
|
-
|
|
275
|
+
const a = t.length - 1, c = this.parts, [d, p] = Ee(t, r);
|
|
276
|
+
if (this.el = X.createElement(d, i), T.currentNode = this.el.content, r === 2 || r === 3) {
|
|
277
|
+
const u = this.el.content.firstChild;
|
|
278
|
+
u.replaceWith(...u.childNodes);
|
|
279
279
|
}
|
|
280
|
-
for (; (
|
|
281
|
-
if (
|
|
282
|
-
if (
|
|
283
|
-
const
|
|
284
|
-
c.push({ type: 1, index: o, name:
|
|
285
|
-
} else
|
|
286
|
-
if (
|
|
287
|
-
const
|
|
288
|
-
if (
|
|
289
|
-
|
|
290
|
-
for (let w = 0; w <
|
|
291
|
-
|
|
280
|
+
for (; (s = T.nextNode()) !== null && c.length < a; ) {
|
|
281
|
+
if (s.nodeType === 1) {
|
|
282
|
+
if (s.hasAttributes()) for (const u of s.getAttributeNames()) if (u.endsWith(ee)) {
|
|
283
|
+
const g = p[n++], w = s.getAttribute(u).split(R), it = /([.?@])?(.*)/.exec(g);
|
|
284
|
+
c.push({ type: 1, index: o, name: it[2], strings: w, ctor: it[1] === "." ? Ue : it[1] === "?" ? ke : it[1] === "@" ? De : ft }), s.removeAttribute(u);
|
|
285
|
+
} else u.startsWith(R) && (c.push({ type: 6, index: o }), s.removeAttribute(u));
|
|
286
|
+
if (se.test(s.tagName)) {
|
|
287
|
+
const u = s.textContent.split(R), g = u.length - 1;
|
|
288
|
+
if (g > 0) {
|
|
289
|
+
s.textContent = ct ? ct.emptyScript : "";
|
|
290
|
+
for (let w = 0; w < g; w++) s.append(u[w], J()), T.nextNode(), c.push({ type: 2, index: ++o });
|
|
291
|
+
s.append(u[g], J());
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
|
-
} else if (
|
|
294
|
+
} else if (s.nodeType === 8) if (s.data === re) c.push({ type: 2, index: o });
|
|
295
295
|
else {
|
|
296
|
-
let
|
|
297
|
-
for (; (
|
|
296
|
+
let u = -1;
|
|
297
|
+
for (; (u = s.data.indexOf(R, u + 1)) !== -1; ) c.push({ type: 7, index: o }), u += R.length - 1;
|
|
298
298
|
}
|
|
299
299
|
o++;
|
|
300
300
|
}
|
|
301
301
|
}
|
|
302
|
-
static createElement(t,
|
|
303
|
-
const i =
|
|
302
|
+
static createElement(t, r) {
|
|
303
|
+
const i = F.createElement("template");
|
|
304
304
|
return i.innerHTML = t, i;
|
|
305
305
|
}
|
|
306
306
|
}
|
|
307
|
-
function
|
|
308
|
-
if (t ===
|
|
309
|
-
let
|
|
310
|
-
const o =
|
|
311
|
-
return
|
|
307
|
+
function W(e, t, r = e, i) {
|
|
308
|
+
if (t === V) return t;
|
|
309
|
+
let s = i !== void 0 ? r._$Co?.[i] : r._$Cl;
|
|
310
|
+
const o = Z(t) ? void 0 : t._$litDirective$;
|
|
311
|
+
return s?.constructor !== o && (s?._$AO?.(!1), o === void 0 ? s = void 0 : (s = new o(e), s._$AT(e, r, i)), i !== void 0 ? (r._$Co ??= [])[i] = s : r._$Cl = s), s !== void 0 && (t = W(e, s._$AS(e, t.values), s, i)), t;
|
|
312
312
|
}
|
|
313
|
-
class
|
|
314
|
-
constructor(t,
|
|
315
|
-
this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM =
|
|
313
|
+
class je {
|
|
314
|
+
constructor(t, r) {
|
|
315
|
+
this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = r;
|
|
316
316
|
}
|
|
317
317
|
get parentNode() {
|
|
318
318
|
return this._$AM.parentNode;
|
|
@@ -321,34 +321,34 @@ class Pe {
|
|
|
321
321
|
return this._$AM._$AU;
|
|
322
322
|
}
|
|
323
323
|
u(t) {
|
|
324
|
-
const { el: { content:
|
|
325
|
-
|
|
326
|
-
let o =
|
|
324
|
+
const { el: { content: r }, parts: i } = this._$AD, s = (t?.creationScope ?? F).importNode(r, !0);
|
|
325
|
+
T.currentNode = s;
|
|
326
|
+
let o = T.nextNode(), n = 0, a = 0, c = i[0];
|
|
327
327
|
for (; c !== void 0; ) {
|
|
328
328
|
if (n === c.index) {
|
|
329
|
-
let
|
|
330
|
-
c.type === 2 ?
|
|
329
|
+
let d;
|
|
330
|
+
c.type === 2 ? d = new et(o, o.nextSibling, this, t) : c.type === 1 ? d = new c.ctor(o, c.name, c.strings, this, t) : c.type === 6 && (d = new Oe(o, this, t)), this._$AV.push(d), c = i[++a];
|
|
331
331
|
}
|
|
332
|
-
n !== c?.index && (o =
|
|
332
|
+
n !== c?.index && (o = T.nextNode(), n++);
|
|
333
333
|
}
|
|
334
|
-
return
|
|
334
|
+
return T.currentNode = F, s;
|
|
335
335
|
}
|
|
336
336
|
p(t) {
|
|
337
|
-
let
|
|
338
|
-
for (const i of this._$AV) i !== void 0 && (i.strings !== void 0 ? (i._$AI(t, i,
|
|
337
|
+
let r = 0;
|
|
338
|
+
for (const i of this._$AV) i !== void 0 && (i.strings !== void 0 ? (i._$AI(t, i, r), r += i.strings.length - 2) : i._$AI(t[r])), r++;
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
|
-
class
|
|
341
|
+
class et {
|
|
342
342
|
get _$AU() {
|
|
343
343
|
return this._$AM?._$AU ?? this._$Cv;
|
|
344
344
|
}
|
|
345
|
-
constructor(t,
|
|
346
|
-
this.type = 2, this._$AH = l, this._$AN = void 0, this._$AA = t, this._$AB =
|
|
345
|
+
constructor(t, r, i, s) {
|
|
346
|
+
this.type = 2, this._$AH = l, this._$AN = void 0, this._$AA = t, this._$AB = r, this._$AM = i, this.options = s, this._$Cv = s?.isConnected ?? !0;
|
|
347
347
|
}
|
|
348
348
|
get parentNode() {
|
|
349
349
|
let t = this._$AA.parentNode;
|
|
350
|
-
const
|
|
351
|
-
return
|
|
350
|
+
const r = this._$AM;
|
|
351
|
+
return r !== void 0 && t?.nodeType === 11 && (t = r.parentNode), t;
|
|
352
352
|
}
|
|
353
353
|
get startNode() {
|
|
354
354
|
return this._$AA;
|
|
@@ -356,8 +356,8 @@ class Y {
|
|
|
356
356
|
get endNode() {
|
|
357
357
|
return this._$AB;
|
|
358
358
|
}
|
|
359
|
-
_$AI(t,
|
|
360
|
-
t =
|
|
359
|
+
_$AI(t, r = this) {
|
|
360
|
+
t = W(this, t, r), Z(t) ? t === l || t == null || t === "" ? (this._$AH !== l && this._$AR(), this._$AH = l) : t !== this._$AH && t !== V && this._(t) : t._$litType$ !== void 0 ? this.$(t) : t.nodeType !== void 0 ? this.T(t) : Pe(t) ? this.k(t) : this._(t);
|
|
361
361
|
}
|
|
362
362
|
O(t) {
|
|
363
363
|
return this._$AA.parentNode.insertBefore(t, this._$AB);
|
|
@@ -366,63 +366,63 @@ class Y {
|
|
|
366
366
|
this._$AH !== t && (this._$AR(), this._$AH = this.O(t));
|
|
367
367
|
}
|
|
368
368
|
_(t) {
|
|
369
|
-
this._$AH !== l &&
|
|
369
|
+
this._$AH !== l && Z(this._$AH) ? this._$AA.nextSibling.data = t : this.T(F.createTextNode(t)), this._$AH = t;
|
|
370
370
|
}
|
|
371
371
|
$(t) {
|
|
372
|
-
const { values:
|
|
373
|
-
if (this._$AH?._$AD ===
|
|
372
|
+
const { values: r, _$litType$: i } = t, s = typeof i == "number" ? this._$AC(t) : (i.el === void 0 && (i.el = X.createElement(ie(i.h, i.h[0]), this.options)), i);
|
|
373
|
+
if (this._$AH?._$AD === s) this._$AH.p(r);
|
|
374
374
|
else {
|
|
375
|
-
const o = new
|
|
376
|
-
o.p(
|
|
375
|
+
const o = new je(s, this), n = o.u(this.options);
|
|
376
|
+
o.p(r), this.T(n), this._$AH = o;
|
|
377
377
|
}
|
|
378
378
|
}
|
|
379
379
|
_$AC(t) {
|
|
380
|
-
let
|
|
381
|
-
return
|
|
380
|
+
let r = zt.get(t.strings);
|
|
381
|
+
return r === void 0 && zt.set(t.strings, r = new X(t)), r;
|
|
382
382
|
}
|
|
383
383
|
k(t) {
|
|
384
384
|
jt(this._$AH) || (this._$AH = [], this._$AR());
|
|
385
|
-
const
|
|
386
|
-
let i,
|
|
387
|
-
for (const o of t)
|
|
388
|
-
|
|
389
|
-
}
|
|
390
|
-
_$AR(t = this._$AA.nextSibling,
|
|
391
|
-
for (this._$AP?.(!1, !0,
|
|
392
|
-
const i =
|
|
393
|
-
|
|
385
|
+
const r = this._$AH;
|
|
386
|
+
let i, s = 0;
|
|
387
|
+
for (const o of t) s === r.length ? r.push(i = new et(this.O(J()), this.O(J()), this, this.options)) : i = r[s], i._$AI(o), s++;
|
|
388
|
+
s < r.length && (this._$AR(i && i._$AB.nextSibling, s), r.length = s);
|
|
389
|
+
}
|
|
390
|
+
_$AR(t = this._$AA.nextSibling, r) {
|
|
391
|
+
for (this._$AP?.(!1, !0, r); t !== this._$AB; ) {
|
|
392
|
+
const i = Ft(t).nextSibling;
|
|
393
|
+
Ft(t).remove(), t = i;
|
|
394
394
|
}
|
|
395
395
|
}
|
|
396
396
|
setConnected(t) {
|
|
397
397
|
this._$AM === void 0 && (this._$Cv = t, this._$AP?.(t));
|
|
398
398
|
}
|
|
399
399
|
}
|
|
400
|
-
class
|
|
400
|
+
class ft {
|
|
401
401
|
get tagName() {
|
|
402
402
|
return this.element.tagName;
|
|
403
403
|
}
|
|
404
404
|
get _$AU() {
|
|
405
405
|
return this._$AM._$AU;
|
|
406
406
|
}
|
|
407
|
-
constructor(t,
|
|
408
|
-
this.type = 1, this._$AH = l, this._$AN = void 0, this.element = t, this.name =
|
|
407
|
+
constructor(t, r, i, s, o) {
|
|
408
|
+
this.type = 1, this._$AH = l, this._$AN = void 0, this.element = t, this.name = r, this._$AM = s, this.options = o, i.length > 2 || i[0] !== "" || i[1] !== "" ? (this._$AH = Array(i.length - 1).fill(new String()), this.strings = i) : this._$AH = l;
|
|
409
409
|
}
|
|
410
|
-
_$AI(t,
|
|
410
|
+
_$AI(t, r = this, i, s) {
|
|
411
411
|
const o = this.strings;
|
|
412
412
|
let n = !1;
|
|
413
|
-
if (o === void 0) t =
|
|
413
|
+
if (o === void 0) t = W(this, t, r, 0), n = !Z(t) || t !== this._$AH && t !== V, n && (this._$AH = t);
|
|
414
414
|
else {
|
|
415
415
|
const a = t;
|
|
416
|
-
let c,
|
|
417
|
-
for (t = o[0], c = 0; c < o.length - 1; c++)
|
|
416
|
+
let c, d;
|
|
417
|
+
for (t = o[0], c = 0; c < o.length - 1; c++) d = W(this, a[i + c], r, c), d === V && (d = this._$AH[c]), n ||= !Z(d) || d !== this._$AH[c], d === l ? t = l : t !== l && (t += (d ?? "") + o[c + 1]), this._$AH[c] = d;
|
|
418
418
|
}
|
|
419
|
-
n && !
|
|
419
|
+
n && !s && this.j(t);
|
|
420
420
|
}
|
|
421
421
|
j(t) {
|
|
422
422
|
t === l ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
|
|
423
423
|
}
|
|
424
424
|
}
|
|
425
|
-
class
|
|
425
|
+
class Ue extends ft {
|
|
426
426
|
constructor() {
|
|
427
427
|
super(...arguments), this.type = 3;
|
|
428
428
|
}
|
|
@@ -430,7 +430,7 @@ class je extends ht {
|
|
|
430
430
|
this.element[this.name] = t === l ? void 0 : t;
|
|
431
431
|
}
|
|
432
432
|
}
|
|
433
|
-
class
|
|
433
|
+
class ke extends ft {
|
|
434
434
|
constructor() {
|
|
435
435
|
super(...arguments), this.type = 4;
|
|
436
436
|
}
|
|
@@ -438,43 +438,43 @@ class Ee extends ht {
|
|
|
438
438
|
this.element.toggleAttribute(this.name, !!t && t !== l);
|
|
439
439
|
}
|
|
440
440
|
}
|
|
441
|
-
class
|
|
442
|
-
constructor(t,
|
|
443
|
-
super(t,
|
|
441
|
+
class De extends ft {
|
|
442
|
+
constructor(t, r, i, s, o) {
|
|
443
|
+
super(t, r, i, s, o), this.type = 5;
|
|
444
444
|
}
|
|
445
|
-
_$AI(t,
|
|
446
|
-
if ((t =
|
|
447
|
-
const i = this._$AH,
|
|
448
|
-
|
|
445
|
+
_$AI(t, r = this) {
|
|
446
|
+
if ((t = W(this, t, r, 0) ?? l) === V) return;
|
|
447
|
+
const i = this._$AH, s = t === l && i !== l || t.capture !== i.capture || t.once !== i.once || t.passive !== i.passive, o = t !== l && (i === l || s);
|
|
448
|
+
s && this.element.removeEventListener(this.name, this, i), o && this.element.addEventListener(this.name, this, t), this._$AH = t;
|
|
449
449
|
}
|
|
450
450
|
handleEvent(t) {
|
|
451
451
|
typeof this._$AH == "function" ? this._$AH.call(this.options?.host ?? this.element, t) : this._$AH.handleEvent(t);
|
|
452
452
|
}
|
|
453
453
|
}
|
|
454
|
-
class
|
|
455
|
-
constructor(t,
|
|
456
|
-
this.element = t, this.type = 6, this._$AN = void 0, this._$AM =
|
|
454
|
+
class Oe {
|
|
455
|
+
constructor(t, r, i) {
|
|
456
|
+
this.element = t, this.type = 6, this._$AN = void 0, this._$AM = r, this.options = i;
|
|
457
457
|
}
|
|
458
458
|
get _$AU() {
|
|
459
459
|
return this._$AM._$AU;
|
|
460
460
|
}
|
|
461
461
|
_$AI(t) {
|
|
462
|
-
|
|
462
|
+
W(this, t);
|
|
463
463
|
}
|
|
464
464
|
}
|
|
465
|
-
const
|
|
466
|
-
|
|
467
|
-
const
|
|
468
|
-
const i =
|
|
469
|
-
let
|
|
470
|
-
if (
|
|
471
|
-
const o =
|
|
472
|
-
i._$litPart$ =
|
|
473
|
-
}
|
|
474
|
-
return
|
|
465
|
+
const Le = Et.litHtmlPolyfillSupport;
|
|
466
|
+
Le?.(X, et), (Et.litHtmlVersions ??= []).push("3.3.2");
|
|
467
|
+
const Te = (e, t, r) => {
|
|
468
|
+
const i = r?.renderBefore ?? t;
|
|
469
|
+
let s = i._$litPart$;
|
|
470
|
+
if (s === void 0) {
|
|
471
|
+
const o = r?.renderBefore ?? null;
|
|
472
|
+
i._$litPart$ = s = new et(t.insertBefore(J(), o), o, void 0, r ?? {});
|
|
473
|
+
}
|
|
474
|
+
return s._$AI(e), s;
|
|
475
475
|
};
|
|
476
|
-
const
|
|
477
|
-
let
|
|
476
|
+
const Ut = globalThis;
|
|
477
|
+
let z = class extends B {
|
|
478
478
|
constructor() {
|
|
479
479
|
super(...arguments), this.renderOptions = { host: this }, this._$Do = void 0;
|
|
480
480
|
}
|
|
@@ -483,8 +483,8 @@ let q = class extends M {
|
|
|
483
483
|
return this.renderOptions.renderBefore ??= t.firstChild, t;
|
|
484
484
|
}
|
|
485
485
|
update(t) {
|
|
486
|
-
const
|
|
487
|
-
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t), this._$Do =
|
|
486
|
+
const r = this.render();
|
|
487
|
+
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t), this._$Do = Te(r, this.renderRoot, this.renderOptions);
|
|
488
488
|
}
|
|
489
489
|
connectedCallback() {
|
|
490
490
|
super.connectedCallback(), this._$Do?.setConnected(!0);
|
|
@@ -493,33 +493,33 @@ let q = class extends M {
|
|
|
493
493
|
super.disconnectedCallback(), this._$Do?.setConnected(!1);
|
|
494
494
|
}
|
|
495
495
|
render() {
|
|
496
|
-
return
|
|
496
|
+
return V;
|
|
497
497
|
}
|
|
498
498
|
};
|
|
499
|
-
|
|
500
|
-
const
|
|
501
|
-
|
|
502
|
-
(
|
|
503
|
-
class
|
|
499
|
+
z._$litElement$ = !0, z.finalized = !0, Ut.litElementHydrateSupport?.({ LitElement: z });
|
|
500
|
+
const Ie = Ut.litElementPolyfillSupport;
|
|
501
|
+
Ie?.({ LitElement: z });
|
|
502
|
+
(Ut.litElementVersions ??= []).push("4.2.2");
|
|
503
|
+
class Fe extends z {
|
|
504
504
|
constructor() {
|
|
505
505
|
super(...arguments), this.object = {
|
|
506
506
|
"@id": ""
|
|
507
|
-
}, this.isType = (t,
|
|
508
|
-
const
|
|
509
|
-
return Array.isArray(
|
|
507
|
+
}, this.isType = (t, r) => {
|
|
508
|
+
const s = (r ?? this.object)["@type"];
|
|
509
|
+
return Array.isArray(s) ? s.includes(t) : typeof s == "string" ? s === t : !1;
|
|
510
510
|
};
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
|
-
const
|
|
514
|
-
|
|
513
|
+
const M = (e) => (t, r) => {
|
|
514
|
+
r !== void 0 ? r.addInitializer(() => {
|
|
515
515
|
customElements.define(e, t);
|
|
516
516
|
}) : customElements.define(e, t);
|
|
517
517
|
};
|
|
518
|
-
const
|
|
519
|
-
const { kind: i, metadata:
|
|
520
|
-
let o = globalThis.litPropertyMetadata.get(
|
|
521
|
-
if (o === void 0 && globalThis.litPropertyMetadata.set(
|
|
522
|
-
const { name: n } =
|
|
518
|
+
const Ne = { attribute: !0, type: String, converter: at, reflect: !1, hasChanged: pt }, Me = (e = Ne, t, r) => {
|
|
519
|
+
const { kind: i, metadata: s } = r;
|
|
520
|
+
let o = globalThis.litPropertyMetadata.get(s);
|
|
521
|
+
if (o === void 0 && globalThis.litPropertyMetadata.set(s, o = /* @__PURE__ */ new Map()), i === "setter" && ((e = Object.create(e)).wrapped = !0), o.set(r.name, e), i === "accessor") {
|
|
522
|
+
const { name: n } = r;
|
|
523
523
|
return { set(a) {
|
|
524
524
|
const c = t.get.call(this);
|
|
525
525
|
t.set.call(this, a), this.requestUpdate(n, c, e, !0, a);
|
|
@@ -528,7 +528,7 @@ const Te = { attribute: !0, type: String, converter: it, reflect: !1, hasChanged
|
|
|
528
528
|
} };
|
|
529
529
|
}
|
|
530
530
|
if (i === "setter") {
|
|
531
|
-
const { name: n } =
|
|
531
|
+
const { name: n } = r;
|
|
532
532
|
return function(a) {
|
|
533
533
|
const c = this[n];
|
|
534
534
|
t.call(this, a), this.requestUpdate(n, c, e, !0, a);
|
|
@@ -536,64 +536,79 @@ const Te = { attribute: !0, type: String, converter: it, reflect: !1, hasChanged
|
|
|
536
536
|
}
|
|
537
537
|
throw Error("Unsupported decorator location: " + i);
|
|
538
538
|
};
|
|
539
|
-
function
|
|
540
|
-
return (t,
|
|
541
|
-
const n =
|
|
542
|
-
return
|
|
543
|
-
})(e, t,
|
|
539
|
+
function v(e) {
|
|
540
|
+
return (t, r) => typeof r == "object" ? Me(e, t, r) : ((i, s, o) => {
|
|
541
|
+
const n = s.hasOwnProperty(o);
|
|
542
|
+
return s.constructor.createProperty(o, i), n ? Object.getOwnPropertyDescriptor(s, o) : void 0;
|
|
543
|
+
})(e, t, r);
|
|
544
544
|
}
|
|
545
|
-
function
|
|
546
|
-
return
|
|
545
|
+
function m(e) {
|
|
546
|
+
return v({ ...e, state: !0, attribute: !1 });
|
|
547
547
|
}
|
|
548
|
-
var
|
|
549
|
-
for (var
|
|
550
|
-
(n = e[o]) && (
|
|
551
|
-
return
|
|
548
|
+
var Be = Object.defineProperty, qe = (e, t, r, i) => {
|
|
549
|
+
for (var s = void 0, o = e.length - 1, n; o >= 0; o--)
|
|
550
|
+
(n = e[o]) && (s = n(t, r, s) || s);
|
|
551
|
+
return s && Be(t, r, s), s;
|
|
552
552
|
};
|
|
553
|
-
class
|
|
553
|
+
class kt extends z {
|
|
554
554
|
constructor() {
|
|
555
|
-
super(...arguments), this.objects = [], this.hasType = (t,
|
|
555
|
+
super(...arguments), this.objects = [], this.hasType = (t, r) => (r ?? this.objects ?? []).some((s) => {
|
|
556
|
+
const o = s["@type"];
|
|
557
|
+
return Array.isArray(o) ? o.includes(t) : typeof o == "string" ? o === t : !1;
|
|
558
|
+
});
|
|
556
559
|
}
|
|
557
560
|
}
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
],
|
|
561
|
-
var
|
|
562
|
-
for (var
|
|
563
|
-
(n = e[o]) && (
|
|
564
|
-
return
|
|
561
|
+
qe([
|
|
562
|
+
v({ attribute: !1 })
|
|
563
|
+
], kt.prototype, "objects");
|
|
564
|
+
var He = Object.defineProperty, x = (e, t, r, i) => {
|
|
565
|
+
for (var s = void 0, o = e.length - 1, n; o >= 0; o--)
|
|
566
|
+
(n = e[o]) && (s = n(t, r, s) || s);
|
|
567
|
+
return s && He(t, r, s), s;
|
|
565
568
|
};
|
|
566
|
-
class
|
|
569
|
+
class $ extends kt {
|
|
567
570
|
constructor({
|
|
568
571
|
defaultRoute: t = !1,
|
|
569
|
-
setupSubscriptions:
|
|
572
|
+
setupSubscriptions: r = !0,
|
|
570
573
|
ignoreRouter: i = !1
|
|
571
574
|
} = {}) {
|
|
572
|
-
super(), this.cherryPickedProperties = [], this.currentRoute = "";
|
|
573
|
-
const
|
|
574
|
-
document.readyState === "complete" && this._attach(t,
|
|
575
|
+
super(), this.ready = !1, this.cherryPickedProperties = [], this.currentRoute = "";
|
|
576
|
+
const s = () => {
|
|
577
|
+
document.readyState === "complete" && this._attach(t, r, i).then(
|
|
575
578
|
(o) => {
|
|
576
579
|
o && this.requestUpdate();
|
|
577
580
|
}
|
|
578
581
|
);
|
|
579
582
|
};
|
|
580
|
-
document.readyState === "complete" ?
|
|
583
|
+
document.readyState === "complete" ? s() : document.addEventListener("readystatechange", s);
|
|
581
584
|
}
|
|
582
|
-
async _attach(t,
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
585
|
+
async _attach(t, r, i) {
|
|
586
|
+
if (!this.orbit && window.orbit && (this.orbit = window.orbit, r)) {
|
|
587
|
+
if (ne({
|
|
588
|
+
component: this,
|
|
589
|
+
defaultRoute: t,
|
|
590
|
+
ignoreRouter: i
|
|
591
|
+
}), this.route && (this.component = this.orbit.getComponentFromRoute(this.route), this.component))
|
|
592
|
+
for (const s of this.orbit.components)
|
|
593
|
+
s.uniq === this.component.uniq && (s.instance = this);
|
|
594
|
+
return await this._afterAttach(), this.ready = !0, this.dispatchEvent(
|
|
595
|
+
new CustomEvent("component-ready", {
|
|
596
|
+
detail: {
|
|
597
|
+
component: this.component
|
|
598
|
+
}
|
|
599
|
+
})
|
|
600
|
+
), Promise.resolve(!0);
|
|
601
|
+
}
|
|
602
|
+
return Promise.resolve(!1);
|
|
588
603
|
}
|
|
589
604
|
async _afterAttach() {
|
|
590
605
|
return Promise.resolve();
|
|
591
606
|
}
|
|
592
607
|
_navigate(t) {
|
|
593
608
|
window.sibRouter.previousRoute = this.currentRoute, window.sibRouter.previousResource = window.sibRouter.currentResource;
|
|
594
|
-
const
|
|
595
|
-
let i =
|
|
596
|
-
const
|
|
609
|
+
const r = t.target?.closest("[navigation-target]");
|
|
610
|
+
let i = r.getAttribute("navigation-target");
|
|
611
|
+
const s = r.getAttribute("navigation-subrouter"), o = r.getAttribute("navigation-resource"), n = r.getAttribute("navigation-rdf-type");
|
|
597
612
|
if (n) {
|
|
598
613
|
const a = window.orbit?.components?.filter(
|
|
599
614
|
(c) => c?.routeAttributes?.["rdf-type"] === n
|
|
@@ -601,76 +616,63 @@ class b extends Rt {
|
|
|
601
616
|
a && (i = a[0]?.uniq);
|
|
602
617
|
}
|
|
603
618
|
i && L(
|
|
604
|
-
(window.orbit ? window.orbit.getRoute(i, !0) : i) + (
|
|
619
|
+
(window.orbit ? window.orbit.getRoute(i, !0) : i) + (s ? `-${s}` : ""),
|
|
605
620
|
o
|
|
606
621
|
), t.preventDefault();
|
|
607
622
|
}
|
|
608
623
|
_normalizeLdpContains(t) {
|
|
609
|
-
return
|
|
624
|
+
return t === null ? [] : Array.isArray(t) ? t : [t];
|
|
610
625
|
}
|
|
611
|
-
async _expandContainer(t,
|
|
612
|
-
const
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
await
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
626
|
+
async _expandContainer(t, r = !0, i = this.cherryPickedProperties) {
|
|
627
|
+
const s = [];
|
|
628
|
+
return await Promise.all(
|
|
629
|
+
t.map(async (o) => {
|
|
630
|
+
const n = await this._getProxyValue(
|
|
631
|
+
await o,
|
|
632
|
+
r,
|
|
633
|
+
i
|
|
634
|
+
);
|
|
635
|
+
n && s.push(n);
|
|
636
|
+
})
|
|
637
|
+
), s;
|
|
622
638
|
}
|
|
623
|
-
async _getProperties(t,
|
|
624
|
-
const
|
|
639
|
+
async _getProperties(t, r = !0, i = this.cherryPickedProperties) {
|
|
640
|
+
const s = await t.properties, o = {
|
|
625
641
|
"@id": t["@id"],
|
|
626
642
|
"@type": t["@type"],
|
|
627
643
|
"@context": t.serverContext,
|
|
628
644
|
_originalResource: t
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
645
|
+
}, n = i.map(async (c) => {
|
|
646
|
+
if (!s?.includes(c.key)) return;
|
|
647
|
+
let d = await t.get(c.key);
|
|
648
|
+
return c.expand && (d = await this._getProxyValue(d, r, i)), c.cast && (d = await c.cast(d)), { prop: c, value: d };
|
|
649
|
+
}), a = (await Promise.all(n)).filter(
|
|
650
|
+
(c) => c !== void 0
|
|
651
|
+
);
|
|
652
|
+
for (const { prop: c, value: d } of a)
|
|
653
|
+
d !== void 0 && (o[c.value] = d);
|
|
636
654
|
return await this._responseAdaptator(o);
|
|
637
655
|
}
|
|
638
656
|
async _hasCherryPickedProperties(t) {
|
|
639
|
-
const
|
|
657
|
+
const r = await t.properties;
|
|
640
658
|
for (const i of this.cherryPickedProperties)
|
|
641
|
-
if (
|
|
659
|
+
if (r?.includes(i.key))
|
|
642
660
|
return !0;
|
|
643
661
|
return !1;
|
|
644
662
|
}
|
|
645
|
-
async _getProxyValue(t,
|
|
663
|
+
async _getProxyValue(t, r = !0, i = this.cherryPickedProperties) {
|
|
646
664
|
try {
|
|
647
|
-
if (t)
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
return await this._getProperties(
|
|
657
|
-
r,
|
|
658
|
-
s,
|
|
659
|
-
i
|
|
660
|
-
);
|
|
661
|
-
const o = this._normalizeLdpContains(
|
|
662
|
-
await r["ldp:contains"]
|
|
663
|
-
);
|
|
664
|
-
return await this._expandContainer(
|
|
665
|
-
o,
|
|
666
|
-
s,
|
|
667
|
-
i
|
|
668
|
-
);
|
|
669
|
-
}
|
|
670
|
-
return await this._getProperties(r, s, i);
|
|
671
|
-
}
|
|
665
|
+
if (!t) return;
|
|
666
|
+
let s = t;
|
|
667
|
+
if (typeof t == "string" ? s = await window.sibStore.getData(t, Gt) : t.isFullResource && !t.isFullResource?.() && (s = await window.sibStore.getData(t["@id"], Gt)), !s) return { _originalResource: s };
|
|
668
|
+
if (typeof s != "object" || s === null) return;
|
|
669
|
+
if (s.isContainer?.() && s["ldp:contains"]) {
|
|
670
|
+
if (await this._hasCherryPickedProperties(s))
|
|
671
|
+
return await this._getProperties(s, r, i);
|
|
672
|
+
const o = this._normalizeLdpContains(await s["ldp:contains"]);
|
|
673
|
+
return await this._expandContainer(o, r, i);
|
|
672
674
|
}
|
|
673
|
-
return;
|
|
675
|
+
return await this._getProperties(s, r, i);
|
|
674
676
|
} catch {
|
|
675
677
|
}
|
|
676
678
|
}
|
|
@@ -682,133 +684,136 @@ class b extends Rt {
|
|
|
682
684
|
return l;
|
|
683
685
|
}
|
|
684
686
|
}
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
],
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
],
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
],
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
],
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
],
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
],
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
],
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
],
|
|
709
|
-
|
|
687
|
+
x([
|
|
688
|
+
m()
|
|
689
|
+
], $.prototype, "ready");
|
|
690
|
+
x([
|
|
691
|
+
v({ attribute: "default-data-src", reflect: !0 })
|
|
692
|
+
], $.prototype, "defaultDataSrc");
|
|
693
|
+
x([
|
|
694
|
+
v({ attribute: "data-src", reflect: !0 })
|
|
695
|
+
], $.prototype, "dataSrc");
|
|
696
|
+
x([
|
|
697
|
+
v({ attribute: "nested-field" })
|
|
698
|
+
], $.prototype, "nestedField");
|
|
699
|
+
x([
|
|
700
|
+
v({ attribute: "uniq" })
|
|
701
|
+
], $.prototype, "uniq");
|
|
702
|
+
x([
|
|
703
|
+
v({ attribute: "route" })
|
|
704
|
+
], $.prototype, "route");
|
|
705
|
+
x([
|
|
706
|
+
v({ attribute: !1 })
|
|
707
|
+
], $.prototype, "cherryPickedProperties");
|
|
708
|
+
x([
|
|
709
|
+
m()
|
|
710
|
+
], $.prototype, "orbit");
|
|
711
|
+
x([
|
|
712
|
+
m()
|
|
713
|
+
], $.prototype, "currentRoute");
|
|
714
|
+
function H(e) {
|
|
710
715
|
return e ? e.replace(/^urn:uuid:/i, "").replace(/^urn:tems:/i, "") : "";
|
|
711
716
|
}
|
|
712
|
-
function
|
|
717
|
+
function ze(e, t, r) {
|
|
713
718
|
if (!e) return null;
|
|
714
719
|
const i = JSON.parse(JSON.stringify(e));
|
|
715
|
-
i["@id"] && (i["@id"] =
|
|
716
|
-
const
|
|
717
|
-
return i.target =
|
|
720
|
+
i["@id"] && (i["@id"] = H(i["@id"]));
|
|
721
|
+
const s = q(t, ["@id"]) || "";
|
|
722
|
+
return i.target = H(s), i;
|
|
718
723
|
}
|
|
719
|
-
function
|
|
724
|
+
function q(e, t) {
|
|
720
725
|
if (t.length === 0)
|
|
721
726
|
return;
|
|
722
|
-
let
|
|
727
|
+
let r = e;
|
|
723
728
|
for (const i of t) {
|
|
724
|
-
if (
|
|
729
|
+
if (r == null)
|
|
725
730
|
return;
|
|
726
|
-
|
|
731
|
+
r = r[i];
|
|
727
732
|
}
|
|
728
|
-
return
|
|
733
|
+
return r;
|
|
729
734
|
}
|
|
730
|
-
class
|
|
735
|
+
class Ve {
|
|
731
736
|
constructor(t) {
|
|
732
737
|
this.config = t;
|
|
733
738
|
}
|
|
734
739
|
/**
|
|
735
740
|
* Maps source data to TEMS-compatible resource
|
|
736
741
|
*/
|
|
737
|
-
map(t,
|
|
742
|
+
map(t, r = {}) {
|
|
738
743
|
const i = {};
|
|
739
|
-
for (const [
|
|
740
|
-
const n = this.mapField(t, o,
|
|
741
|
-
n !== void 0 && (i[
|
|
744
|
+
for (const [s, o] of Object.entries(this.config.baseFields)) {
|
|
745
|
+
const n = this.mapField(t, o, r);
|
|
746
|
+
n !== void 0 && (i[s] = n);
|
|
742
747
|
}
|
|
743
748
|
if (this.config.containerFields)
|
|
744
|
-
for (const [
|
|
749
|
+
for (const [s, o] of Object.entries(
|
|
745
750
|
this.config.containerFields
|
|
746
751
|
)) {
|
|
747
|
-
const n = this.mapContainerField(t, o,
|
|
748
|
-
n && (i[
|
|
752
|
+
const n = this.mapContainerField(t, o, r);
|
|
753
|
+
n && (i[s] = n);
|
|
749
754
|
}
|
|
750
755
|
if (this.config.nestedObjects)
|
|
751
|
-
for (const [
|
|
756
|
+
for (const [s, o] of Object.entries(
|
|
752
757
|
this.config.nestedObjects
|
|
753
758
|
)) {
|
|
754
|
-
const n = this.mapNestedObject(t, o,
|
|
755
|
-
n && (i[
|
|
759
|
+
const n = this.mapNestedObject(t, o, r);
|
|
760
|
+
n && (i[s] = n);
|
|
756
761
|
}
|
|
757
762
|
if (this.config.contractFields)
|
|
758
|
-
for (const [
|
|
763
|
+
for (const [s, o] of Object.entries(
|
|
759
764
|
this.config.contractFields
|
|
760
765
|
)) {
|
|
761
|
-
const n = this.mapField(t, o,
|
|
762
|
-
n !== void 0 && (i[
|
|
766
|
+
const n = this.mapField(t, o, r);
|
|
767
|
+
n !== void 0 && (i[s] = n);
|
|
763
768
|
}
|
|
764
|
-
return this.config.postProcess ? this.config.postProcess(i, t,
|
|
769
|
+
return this.config.postProcess ? this.config.postProcess(i, t, r) : i;
|
|
765
770
|
}
|
|
766
771
|
/**
|
|
767
772
|
* Maps a single field
|
|
768
773
|
*/
|
|
769
|
-
mapField(t,
|
|
770
|
-
let
|
|
771
|
-
return
|
|
774
|
+
mapField(t, r, i) {
|
|
775
|
+
let s = q(t, r.source);
|
|
776
|
+
return r.transform && (s = r.transform(s, t, i)), (s == null || s === "") && r.fallback && (typeof r.fallback == "function" ? s = r.fallback(t, i) : s = q(t, [r.fallback])), (s == null || s === "") && (s = r.defaultValue), s;
|
|
772
777
|
}
|
|
773
778
|
/**
|
|
774
779
|
* Maps a container field (array wrapped in LDP container)
|
|
775
780
|
*/
|
|
776
|
-
mapContainerField(t,
|
|
777
|
-
let
|
|
778
|
-
if (!
|
|
781
|
+
mapContainerField(t, r, i) {
|
|
782
|
+
let s = q(t, r.source);
|
|
783
|
+
if (!s)
|
|
779
784
|
return null;
|
|
780
|
-
|
|
781
|
-
(n, a) =>
|
|
785
|
+
r.transform && (s = r.transform(s, t, i)), Array.isArray(s) || (s = [s]), r.filter && (s = s.filter(
|
|
786
|
+
(n, a) => r.filter(n, a, i)
|
|
782
787
|
));
|
|
783
|
-
const o =
|
|
788
|
+
const o = s.map((n, a) => {
|
|
784
789
|
const c = {
|
|
785
|
-
"@type":
|
|
790
|
+
"@type": r.itemType
|
|
786
791
|
};
|
|
787
|
-
for (const [
|
|
788
|
-
const
|
|
789
|
-
|
|
792
|
+
for (const [d, p] of Object.entries(r.itemFields)) {
|
|
793
|
+
const u = p(n, a, i);
|
|
794
|
+
u !== void 0 && (c[d] = u);
|
|
790
795
|
}
|
|
791
796
|
return c;
|
|
792
797
|
});
|
|
793
798
|
return {
|
|
794
|
-
"@type":
|
|
799
|
+
"@type": r.containerType,
|
|
795
800
|
"ldp:contains": o
|
|
796
801
|
};
|
|
797
802
|
}
|
|
798
803
|
/**
|
|
799
804
|
* Maps a nested object
|
|
800
805
|
*/
|
|
801
|
-
mapNestedObject(t,
|
|
802
|
-
const
|
|
803
|
-
if (!
|
|
806
|
+
mapNestedObject(t, r, i) {
|
|
807
|
+
const s = q(t, r.source);
|
|
808
|
+
if (!s)
|
|
804
809
|
return null;
|
|
805
810
|
const o = {};
|
|
806
|
-
|
|
807
|
-
for (const [n, a] of Object.entries(
|
|
811
|
+
r.type && (o["@type"] = r.type);
|
|
812
|
+
for (const [n, a] of Object.entries(r.fields)) {
|
|
808
813
|
let c;
|
|
809
|
-
Array.isArray(a) ? c =
|
|
814
|
+
Array.isArray(a) ? c = q(s, a) : c = this.mapField(s, a, i), c !== void 0 && (o[n] = c);
|
|
810
815
|
}
|
|
811
|
-
return Object.keys(o).length > (
|
|
816
|
+
return Object.keys(o).length > (r.type ? 1 : 0) ? o : null;
|
|
812
817
|
}
|
|
813
818
|
/**
|
|
814
819
|
* Unwraps LDP containers (converts ldp:contains arrays to plain arrays)
|
|
@@ -817,32 +822,32 @@ class qe {
|
|
|
817
822
|
* for rendering.
|
|
818
823
|
*/
|
|
819
824
|
static unwrapLdpContainers(t) {
|
|
820
|
-
const
|
|
821
|
-
for (const [i,
|
|
822
|
-
|
|
823
|
-
return
|
|
825
|
+
const r = { ...t };
|
|
826
|
+
for (const [i, s] of Object.entries(r))
|
|
827
|
+
s && typeof s == "object" && s["@type"] === "ldp:Container" && s["ldp:contains"] && (r[i] = s["ldp:contains"]);
|
|
828
|
+
return r;
|
|
824
829
|
}
|
|
825
830
|
}
|
|
826
|
-
function
|
|
831
|
+
function y(e) {
|
|
827
832
|
return e["dcat:distribution"]?.[0] || e.properties || e;
|
|
828
833
|
}
|
|
829
|
-
function
|
|
830
|
-
const t =
|
|
834
|
+
function Vt(e) {
|
|
835
|
+
const t = y(e);
|
|
831
836
|
return e["dcat:endpointUrl"] || e["dcat:endpointURL"] || e["http://www.w3.org/ns/dcat#endpointUrl"] || e.endpointUrl || e.endpointURL || // Then check distribution/props level
|
|
832
837
|
t["http://www.w3.org/ns/dcat#endpointUrl"] || t["dcat:endpointUrl"] || t["dcat:endpointURL"] || t["dcat:accessService"]?.["dcat:endpointURL"] || t.endpointURL || t.endpointUrl || "";
|
|
833
838
|
}
|
|
834
|
-
function
|
|
835
|
-
const t =
|
|
839
|
+
function We(e) {
|
|
840
|
+
const t = y(e);
|
|
836
841
|
return e.contenttype || e.contentType || e["http://www.w3.org/ns/dcat#mediaType"] || e["dcat:mediaType"] || // Then check distribution/props level
|
|
837
842
|
t.contenttype || t.contentType || t["http://www.w3.org/ns/dcat#mediaType"] || t["dcat:mediaType"] || "";
|
|
838
843
|
}
|
|
839
|
-
const
|
|
844
|
+
const Ke = {
|
|
840
845
|
baseFields: {
|
|
841
846
|
"@id": {
|
|
842
847
|
source: ["@id"],
|
|
843
|
-
transform: (e, t,
|
|
844
|
-
const
|
|
845
|
-
return `${
|
|
848
|
+
transform: (e, t, r) => {
|
|
849
|
+
const s = H(e || t.id || "") || e?.split("/").pop() || "unknown", o = r.providerParticipantId ? `${encodeURIComponent(r.providerParticipantId)}/` : "";
|
|
850
|
+
return `${r.temsServiceBase || "https://api.tems.example.com/services/"}${o}${encodeURIComponent(s)}/`;
|
|
846
851
|
}
|
|
847
852
|
},
|
|
848
853
|
"@type": {
|
|
@@ -852,12 +857,12 @@ const ze = {
|
|
|
852
857
|
name: {
|
|
853
858
|
source: [],
|
|
854
859
|
transform: (e, t) => {
|
|
855
|
-
const
|
|
860
|
+
const r = y(t);
|
|
856
861
|
return (
|
|
857
862
|
// Source-level fields (EDC catalog returns these at top level)
|
|
858
863
|
t.name || t.title || t["dct:title"] || t["dcterms:title"] || // EDC namespace fields at source level
|
|
859
864
|
t["https://w3id.org/edc/v0.0.1/ns/name"] || t["edc:name"] || // Distribution/props level
|
|
860
|
-
|
|
865
|
+
r["dct:title"] || r["dcterms:title"] || r.title || r["https://w3id.org/edc/v0.0.1/ns/name"] || r["edc:name"] || r.name || // Fall back to ID but extract meaningful part
|
|
861
866
|
(t["@id"]?.startsWith("urn:uuid:") ? t["@id"] : t["@id"]?.split("/").pop() || t["@id"]) || t.id || ""
|
|
862
867
|
);
|
|
863
868
|
}
|
|
@@ -865,101 +870,101 @@ const ze = {
|
|
|
865
870
|
description: {
|
|
866
871
|
source: [],
|
|
867
872
|
transform: (e, t) => {
|
|
868
|
-
const
|
|
873
|
+
const r = y(t);
|
|
869
874
|
return (
|
|
870
875
|
// Source-level fields (EDC catalog returns these at top level)
|
|
871
876
|
t.description || t["dct:description"] || t["dcterms:description"] || t["https://w3id.org/edc/v0.0.1/ns/description"] || t["edc:description"] || // Distribution/props level
|
|
872
|
-
|
|
877
|
+
r["dct:description"] || r["dcterms:description"] || r.description || r["https://w3id.org/edc/v0.0.1/ns/description"] || r["edc:description"] || ""
|
|
873
878
|
);
|
|
874
879
|
}
|
|
875
880
|
},
|
|
876
881
|
long_description: {
|
|
877
882
|
source: [],
|
|
878
883
|
transform: (e, t) => {
|
|
879
|
-
const
|
|
880
|
-
return i.length > 0 ? `Keywords: ${i.join(", ")}` :
|
|
884
|
+
const r = y(t), i = Array.isArray(r["dcat:keyword"]) ? r["dcat:keyword"] : r["dcat:keyword"] ? [r["dcat:keyword"]] : [], s = r["dct:description"] || r["dcterms:description"] || r.description || "";
|
|
885
|
+
return i.length > 0 ? `Keywords: ${i.join(", ")}` : s;
|
|
881
886
|
}
|
|
882
887
|
},
|
|
883
888
|
url: {
|
|
884
889
|
source: [],
|
|
885
|
-
transform: (e, t) =>
|
|
890
|
+
transform: (e, t) => Vt(t)
|
|
886
891
|
},
|
|
887
892
|
endpointUrl: {
|
|
888
893
|
source: [],
|
|
889
|
-
transform: (e, t) =>
|
|
894
|
+
transform: (e, t) => Vt(t)
|
|
890
895
|
},
|
|
891
896
|
contentType: {
|
|
892
897
|
source: [],
|
|
893
|
-
transform: (e, t) =>
|
|
898
|
+
transform: (e, t) => We(t)
|
|
894
899
|
},
|
|
895
900
|
activation_status: {
|
|
896
901
|
source: [],
|
|
897
902
|
transform: (e, t) => {
|
|
898
|
-
const
|
|
899
|
-
return (
|
|
903
|
+
const r = y(t);
|
|
904
|
+
return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
|
|
900
905
|
}
|
|
901
906
|
},
|
|
902
907
|
is_in_app: {
|
|
903
908
|
source: [],
|
|
904
909
|
transform: (e, t) => {
|
|
905
|
-
const
|
|
906
|
-
return (
|
|
910
|
+
const r = y(t);
|
|
911
|
+
return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
|
|
907
912
|
}
|
|
908
913
|
},
|
|
909
914
|
is_external: {
|
|
910
915
|
source: [],
|
|
911
916
|
transform: (e, t) => {
|
|
912
|
-
const
|
|
913
|
-
return (
|
|
917
|
+
const r = y(t);
|
|
918
|
+
return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
|
|
914
919
|
}
|
|
915
920
|
},
|
|
916
921
|
is_api: {
|
|
917
922
|
source: [],
|
|
918
923
|
transform: (e, t) => {
|
|
919
|
-
const
|
|
920
|
-
return (
|
|
924
|
+
const r = y(t);
|
|
925
|
+
return (r["dcat:endpointURL"] || r["dcat:accessService"]?.["dcat:endpointURL"] || r.endpointURL || "").trim().length > 0;
|
|
921
926
|
}
|
|
922
927
|
},
|
|
923
928
|
contact_url: {
|
|
924
929
|
source: [],
|
|
925
930
|
transform: (e, t) => {
|
|
926
|
-
const
|
|
927
|
-
return
|
|
931
|
+
const r = y(t);
|
|
932
|
+
return r["dcat:endpointDescription"] || r["dct:conformsTo"] || "";
|
|
928
933
|
}
|
|
929
934
|
},
|
|
930
935
|
documentation_url: {
|
|
931
936
|
source: [],
|
|
932
937
|
transform: (e, t) => {
|
|
933
|
-
const
|
|
934
|
-
return
|
|
938
|
+
const r = y(t);
|
|
939
|
+
return r["dcat:endpointDescription"] || r["dct:conformsTo"] || "";
|
|
935
940
|
}
|
|
936
941
|
},
|
|
937
942
|
creation_date: {
|
|
938
943
|
source: [],
|
|
939
944
|
transform: (e, t) => {
|
|
940
|
-
const
|
|
941
|
-
return
|
|
945
|
+
const r = y(t);
|
|
946
|
+
return r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
|
|
942
947
|
}
|
|
943
948
|
},
|
|
944
949
|
update_date: {
|
|
945
950
|
source: [],
|
|
946
951
|
transform: (e, t) => {
|
|
947
|
-
const
|
|
948
|
-
return
|
|
952
|
+
const r = y(t), i = r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
|
|
953
|
+
return r["dct:modified"] || r["dcterms:modified"] || i;
|
|
949
954
|
}
|
|
950
955
|
},
|
|
951
956
|
release_date: {
|
|
952
957
|
source: [],
|
|
953
958
|
transform: (e, t) => {
|
|
954
|
-
const
|
|
955
|
-
return
|
|
959
|
+
const r = y(t);
|
|
960
|
+
return r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
|
|
956
961
|
}
|
|
957
962
|
},
|
|
958
963
|
last_update: {
|
|
959
964
|
source: [],
|
|
960
965
|
transform: (e, t) => {
|
|
961
|
-
const
|
|
962
|
-
return
|
|
966
|
+
const r = y(t), i = r["dct:issued"] || r["dcterms:issued"] || (/* @__PURE__ */ new Date()).toISOString();
|
|
967
|
+
return r["dct:modified"] || r["dcterms:modified"] || i;
|
|
963
968
|
}
|
|
964
969
|
},
|
|
965
970
|
activation_date: {
|
|
@@ -985,11 +990,11 @@ const ze = {
|
|
|
985
990
|
containerType: "ldp:Container",
|
|
986
991
|
itemType: "tems:Category",
|
|
987
992
|
transform: (e, t) => {
|
|
988
|
-
const i =
|
|
993
|
+
const i = y(t)["dcat:keyword"];
|
|
989
994
|
return i ? Array.isArray(i) ? i : [i] : [];
|
|
990
995
|
},
|
|
991
996
|
itemFields: {
|
|
992
|
-
"@id": (e, t,
|
|
997
|
+
"@id": (e, t, r) => `${r.temsCategoryBase || "https://api.tems.example.com/categories/"}${encodeURIComponent(e)}/`,
|
|
993
998
|
name: (e) => e
|
|
994
999
|
}
|
|
995
1000
|
},
|
|
@@ -998,15 +1003,15 @@ const ze = {
|
|
|
998
1003
|
containerType: "ldp:Container",
|
|
999
1004
|
itemType: "tems:Image",
|
|
1000
1005
|
transform: (e, t) => {
|
|
1001
|
-
const
|
|
1002
|
-
return
|
|
1003
|
-
|
|
1006
|
+
const r = y(t), i = [];
|
|
1007
|
+
return r["foaf:thumbnail"]?.["rdf:resource"] && i.push(r["foaf:thumbnail"]["rdf:resource"]), r["dcterms:creator"]?.["foaf:thumbnail"]?.["rdf:resource"] && i.push(
|
|
1008
|
+
r["dcterms:creator"]["foaf:thumbnail"]["rdf:resource"]
|
|
1004
1009
|
), i;
|
|
1005
1010
|
},
|
|
1006
1011
|
itemFields: {
|
|
1007
|
-
"@id": (e, t,
|
|
1012
|
+
"@id": (e, t, r) => {
|
|
1008
1013
|
const i = e.split("/").pop() || `image-${t}`;
|
|
1009
|
-
return `${
|
|
1014
|
+
return `${r.temsImageBase || "https://api.tems.example.com/images/"}${encodeURIComponent(i)}/`;
|
|
1010
1015
|
},
|
|
1011
1016
|
url: (e) => e,
|
|
1012
1017
|
iframe: () => !1,
|
|
@@ -1021,27 +1026,27 @@ const ze = {
|
|
|
1021
1026
|
fields: {
|
|
1022
1027
|
"@id": {
|
|
1023
1028
|
source: [],
|
|
1024
|
-
transform: (e, t,
|
|
1025
|
-
const i =
|
|
1026
|
-
return `${
|
|
1029
|
+
transform: (e, t, r) => {
|
|
1030
|
+
const i = r.providerParticipantId || r.providerName || "unknown";
|
|
1031
|
+
return `${r.temsProviderBase || "https://api.tems.example.com/providers/"}${encodeURIComponent(i)}/`;
|
|
1027
1032
|
}
|
|
1028
1033
|
},
|
|
1029
1034
|
name: {
|
|
1030
1035
|
source: [],
|
|
1031
|
-
transform: (e, t,
|
|
1036
|
+
transform: (e, t, r) => y(t)["dcterms:creator"]?.["foaf:name"] || r.providerName || ""
|
|
1032
1037
|
},
|
|
1033
1038
|
image: {
|
|
1034
1039
|
source: [],
|
|
1035
|
-
transform: (e, t,
|
|
1036
|
-
const
|
|
1037
|
-
if (!
|
|
1038
|
-
const o =
|
|
1040
|
+
transform: (e, t, r) => {
|
|
1041
|
+
const s = y(t)["dcterms:creator"]?.["foaf:thumbnail"]?.["rdf:resource"];
|
|
1042
|
+
if (!s) return;
|
|
1043
|
+
const o = s.split("/").pop() || "provider-logo";
|
|
1039
1044
|
return {
|
|
1040
1045
|
// FIXME: Avoid magic strings
|
|
1041
|
-
"@id": `${
|
|
1046
|
+
"@id": `${r.temsImageBase || "https://api.tems.example.com/images/"}${encodeURIComponent(o)}/`,
|
|
1042
1047
|
"@type": "tems:Image",
|
|
1043
1048
|
iframe: !1,
|
|
1044
|
-
url:
|
|
1049
|
+
url: s,
|
|
1045
1050
|
name: o
|
|
1046
1051
|
};
|
|
1047
1052
|
}
|
|
@@ -1052,53 +1057,53 @@ const ze = {
|
|
|
1052
1057
|
contractFields: {
|
|
1053
1058
|
counterPartyAddress: {
|
|
1054
1059
|
source: [],
|
|
1055
|
-
transform: (e, t,
|
|
1060
|
+
transform: (e, t, r) => r.providerAddress
|
|
1056
1061
|
},
|
|
1057
1062
|
counterPartyId: {
|
|
1058
1063
|
source: [],
|
|
1059
|
-
transform: (e, t,
|
|
1064
|
+
transform: (e, t, r) => r.providerParticipantId || r.providerName
|
|
1060
1065
|
},
|
|
1061
1066
|
assetId: {
|
|
1062
1067
|
source: ["@id"],
|
|
1063
|
-
transform: (e, t) =>
|
|
1068
|
+
transform: (e, t) => H(e || t.id || "")
|
|
1064
1069
|
},
|
|
1065
1070
|
datasetId: {
|
|
1066
1071
|
source: ["@id"],
|
|
1067
|
-
transform: (e, t) =>
|
|
1072
|
+
transform: (e, t) => H(e || t.id || "")
|
|
1068
1073
|
},
|
|
1069
1074
|
// Index endpoint URL for index assets - try multiple property variations
|
|
1070
1075
|
// Priority: source-level dcat:endpointUrl (index endpoint) over props-level dcat:endpointURL (protocol URL)
|
|
1071
1076
|
indexEndpointUrl: {
|
|
1072
1077
|
source: [],
|
|
1073
|
-
transform: (e, t,
|
|
1074
|
-
const i =
|
|
1078
|
+
transform: (e, t, r) => {
|
|
1079
|
+
const i = y(t);
|
|
1075
1080
|
console.log("[DSP Mapping] indexEndpointUrl extraction for:", {
|
|
1076
1081
|
assetId: t["@id"] || t.id,
|
|
1077
1082
|
assetName: t.name || i.name || i["dct:title"],
|
|
1078
|
-
provider:
|
|
1079
|
-
providerParticipantId:
|
|
1083
|
+
provider: r.providerName,
|
|
1084
|
+
providerParticipantId: r.providerParticipantId,
|
|
1080
1085
|
"source.dcat:endpointUrl": t["dcat:endpointUrl"],
|
|
1081
1086
|
"props.dcat:endpointUrl": i["dcat:endpointUrl"],
|
|
1082
1087
|
"source.dcat:endpointURL": t["dcat:endpointURL"],
|
|
1083
1088
|
"props.dcat:accessService": i["dcat:accessService"]
|
|
1084
1089
|
});
|
|
1085
|
-
const
|
|
1086
|
-
return console.log("[DSP Mapping] indexEndpointUrl result:",
|
|
1090
|
+
const s = t["dcat:endpointUrl"] || i["dcat:endpointUrl"] || t["dcat:endpointURL"] || i["dcat:accessService"]?.["dcat:endpointUrl"] || i["dcat:accessService"]?.["dcat:endpointURL"] || i.endpointUrl || i.endpointURL || void 0;
|
|
1091
|
+
return console.log("[DSP Mapping] indexEndpointUrl result:", s), s;
|
|
1087
1092
|
}
|
|
1088
1093
|
},
|
|
1089
1094
|
policy: {
|
|
1090
1095
|
source: ["odrl:hasPolicy"],
|
|
1091
1096
|
fallback: (e) => e.hasPolicy,
|
|
1092
|
-
transform: (e, t,
|
|
1097
|
+
transform: (e, t, r) => {
|
|
1093
1098
|
if (!e) return;
|
|
1094
|
-
const i =
|
|
1099
|
+
const i = ze(e, t);
|
|
1095
1100
|
if (i) {
|
|
1096
|
-
const
|
|
1097
|
-
i["odrl:permission"] && (i["odrl:permission"] =
|
|
1101
|
+
const s = (o) => Array.isArray(o) ? o.map((n) => (n["@id"] && (n["@id"] = H(n["@id"])), n)) : o;
|
|
1102
|
+
i["odrl:permission"] && (i["odrl:permission"] = s(
|
|
1098
1103
|
i["odrl:permission"]
|
|
1099
|
-
)), i["odrl:prohibition"] && (i["odrl:prohibition"] =
|
|
1104
|
+
)), i["odrl:prohibition"] && (i["odrl:prohibition"] = s(
|
|
1100
1105
|
i["odrl:prohibition"]
|
|
1101
|
-
)), i["odrl:obligation"] && (i["odrl:obligation"] =
|
|
1106
|
+
)), i["odrl:obligation"] && (i["odrl:obligation"] = s(
|
|
1102
1107
|
i["odrl:obligation"]
|
|
1103
1108
|
));
|
|
1104
1109
|
}
|
|
@@ -1107,29 +1112,29 @@ const ze = {
|
|
|
1107
1112
|
}
|
|
1108
1113
|
},
|
|
1109
1114
|
// Post-processing to add provider metadata fields
|
|
1110
|
-
postProcess: (e, t,
|
|
1115
|
+
postProcess: (e, t, r) => ({
|
|
1111
1116
|
...e,
|
|
1112
|
-
_provider:
|
|
1113
|
-
_providerAddress:
|
|
1114
|
-
_providerColor:
|
|
1115
|
-
_providerParticipantId:
|
|
1117
|
+
_provider: r.providerName,
|
|
1118
|
+
_providerAddress: r.providerAddress,
|
|
1119
|
+
_providerColor: r.providerColor || "#1976d2",
|
|
1120
|
+
_providerParticipantId: r.providerParticipantId
|
|
1116
1121
|
})
|
|
1117
1122
|
};
|
|
1118
|
-
var
|
|
1119
|
-
for (var
|
|
1120
|
-
(n = e[o]) && (
|
|
1121
|
-
return
|
|
1123
|
+
var Ge = Object.defineProperty, j = (e, t, r, i) => {
|
|
1124
|
+
for (var s = void 0, o = e.length - 1, n; o >= 0; o--)
|
|
1125
|
+
(n = e[o]) && (s = n(t, r, s) || s);
|
|
1126
|
+
return s && Ge(t, r, s), s;
|
|
1122
1127
|
};
|
|
1123
|
-
class
|
|
1128
|
+
class P extends $ {
|
|
1124
1129
|
constructor() {
|
|
1125
1130
|
super(...arguments), this.providers = [];
|
|
1126
1131
|
}
|
|
1127
1132
|
willUpdate(t) {
|
|
1128
1133
|
(!this.providers || this.providers.length === 0) && this.component?.parameters?.providers && (this.providers = this.component.parameters.providers || []);
|
|
1129
1134
|
}
|
|
1130
|
-
async _attach(t,
|
|
1131
|
-
if (!this.orbit && window.orbit && (this.orbit = window.orbit,
|
|
1132
|
-
if (
|
|
1135
|
+
async _attach(t, r, i) {
|
|
1136
|
+
if (!this.orbit && window.orbit && (this.orbit = window.orbit, r)) {
|
|
1137
|
+
if (ne({
|
|
1133
1138
|
component: this,
|
|
1134
1139
|
defaultRoute: t,
|
|
1135
1140
|
ignoreRouter: i
|
|
@@ -1137,9 +1142,9 @@ class S extends b {
|
|
|
1137
1142
|
const o = this.component?.parameters;
|
|
1138
1143
|
o?.["participant-connector-uri"] && (this.participantConnectorUri = o["participant-connector-uri"]), o?.["participant-api-key"] && (this.participantApiKey = o["participant-api-key"]), o?.providers && (this.providers = o.providers), o?.["participant-id"] && (this.participantId = o["participant-id"]);
|
|
1139
1144
|
}
|
|
1140
|
-
const
|
|
1141
|
-
if (
|
|
1142
|
-
this.apiGatewayConfig =
|
|
1145
|
+
const s = this.component?.parameters;
|
|
1146
|
+
if (s?.["api-gateway-config"]) {
|
|
1147
|
+
this.apiGatewayConfig = s["api-gateway-config"];
|
|
1143
1148
|
try {
|
|
1144
1149
|
this._apiGatewayConfigParsed = typeof this.apiGatewayConfig == "string" ? JSON.parse(this.apiGatewayConfig) : this.apiGatewayConfig;
|
|
1145
1150
|
} catch {
|
|
@@ -1149,7 +1154,7 @@ class S extends b {
|
|
|
1149
1154
|
if (!this.storeService && this.participantConnectorUri)
|
|
1150
1155
|
try {
|
|
1151
1156
|
const o = `dsp-connector-${this.component.uniq}`, n = {
|
|
1152
|
-
type:
|
|
1157
|
+
type: me.DataspaceConnector,
|
|
1153
1158
|
endpoint: this.participantConnectorUri,
|
|
1154
1159
|
catalogEndpoint: `${this.participantConnectorUri}/management/v3/catalog/request`,
|
|
1155
1160
|
contractNegotiationEndpoint: `${this.participantConnectorUri}/management/v3/contractnegotiations`,
|
|
@@ -1165,7 +1170,7 @@ class S extends b {
|
|
|
1165
1170
|
apiGatewayConfig: this._apiGatewayConfigParsed
|
|
1166
1171
|
}
|
|
1167
1172
|
};
|
|
1168
|
-
this.storeService =
|
|
1173
|
+
this.storeService = ge.addStore(o, n), this.dspStoreService = this.storeService, window.dspStore || (window.dspStore = this.storeService);
|
|
1169
1174
|
} catch (o) {
|
|
1170
1175
|
console.error("DSP Store initialization error:", o);
|
|
1171
1176
|
}
|
|
@@ -1180,12 +1185,12 @@ class S extends b {
|
|
|
1180
1185
|
if (!this.storeService || !this.providers || this.providers.length === 0)
|
|
1181
1186
|
return console.warn("DSP store or providers not configured"), [];
|
|
1182
1187
|
try {
|
|
1183
|
-
const t = "https://api.tems.example.com/services/",
|
|
1188
|
+
const t = "https://api.tems.example.com/services/", r = new Ve(Ke), i = this.providers.map(async (n) => {
|
|
1184
1189
|
try {
|
|
1185
1190
|
const a = await this.storeService.getCatalog(n.address);
|
|
1186
1191
|
if (a?.["dcat:dataset"]) {
|
|
1187
|
-
const c = a["dcat:dataset"],
|
|
1188
|
-
return
|
|
1192
|
+
const c = a["dcat:dataset"], d = Array.isArray(c) ? c : [c], p = a.participantId || a["edc:participantId"] || a["https://w3id.org/edc/v0.0.1/ns/participantId"], u = n.participantId || p;
|
|
1193
|
+
return d.map((g) => {
|
|
1189
1194
|
const w = {
|
|
1190
1195
|
temsServiceBase: t,
|
|
1191
1196
|
temsCategoryBase: t.replace(
|
|
@@ -1201,9 +1206,9 @@ class S extends b {
|
|
|
1201
1206
|
providerName: n.name,
|
|
1202
1207
|
providerAddress: n.address,
|
|
1203
1208
|
providerColor: n.color,
|
|
1204
|
-
providerParticipantId:
|
|
1209
|
+
providerParticipantId: u
|
|
1205
1210
|
};
|
|
1206
|
-
return
|
|
1211
|
+
return r.map(g, w);
|
|
1207
1212
|
});
|
|
1208
1213
|
}
|
|
1209
1214
|
return [];
|
|
@@ -1223,64 +1228,83 @@ class S extends b {
|
|
|
1223
1228
|
return this.storeService;
|
|
1224
1229
|
}
|
|
1225
1230
|
}
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
],
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
],
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
],
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
],
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
],
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
],
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
],
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
],
|
|
1250
|
-
const
|
|
1231
|
+
j([
|
|
1232
|
+
v({ attribute: "participant-connector-uri", reflect: !0 })
|
|
1233
|
+
], P.prototype, "participantConnectorUri");
|
|
1234
|
+
j([
|
|
1235
|
+
v({ attribute: "participant-id", reflect: !0 })
|
|
1236
|
+
], P.prototype, "participantId");
|
|
1237
|
+
j([
|
|
1238
|
+
v({ attribute: "participant-api-key", reflect: !0 })
|
|
1239
|
+
], P.prototype, "participantApiKey");
|
|
1240
|
+
j([
|
|
1241
|
+
v({ attribute: "api-gateway-config", reflect: !0 })
|
|
1242
|
+
], P.prototype, "apiGatewayConfig");
|
|
1243
|
+
j([
|
|
1244
|
+
m()
|
|
1245
|
+
], P.prototype, "storeService");
|
|
1246
|
+
j([
|
|
1247
|
+
m()
|
|
1248
|
+
], P.prototype, "dspStoreService");
|
|
1249
|
+
j([
|
|
1250
|
+
m()
|
|
1251
|
+
], P.prototype, "_apiGatewayConfigParsed");
|
|
1252
|
+
j([
|
|
1253
|
+
v({ type: Array })
|
|
1254
|
+
], P.prototype, "providers");
|
|
1255
|
+
const oe = (e, { keywords: t = [], attributes: r = ["dataSrc"] } = {}) => {
|
|
1251
1256
|
const i = () => {
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1257
|
+
if (!t.length || !r.length) return;
|
|
1258
|
+
e.caching === void 0 && (e.caching = 0), e.hasCachedDatas === void 0 && (e.hasCachedDatas = !1);
|
|
1259
|
+
let s = !1;
|
|
1260
|
+
const o = new Set(t);
|
|
1261
|
+
e.cacheListener = (n) => {
|
|
1262
|
+
const a = n.detail.id || n.detail.resource?.["@id"];
|
|
1263
|
+
if (!a || !Array.from(o).some((p) => {
|
|
1264
|
+
const u = a.indexOf(p);
|
|
1265
|
+
return u !== -1 && (u === 0 || a[u - 1] === "/");
|
|
1266
|
+
})) return;
|
|
1267
|
+
let d = !1;
|
|
1268
|
+
for (const p of r)
|
|
1269
|
+
e[p] && a !== e[p] && (window.sibStore.clearCache(e[p]), d = !0);
|
|
1270
|
+
d && (e.caching++, e.hasCachedDatas = !1, s || (s = !0, requestAnimationFrame(() => {
|
|
1271
|
+
e.requestUpdate(), s = !1;
|
|
1272
|
+
})));
|
|
1273
|
+
}, e._subscriptions.add(["save", e.cacheListener]), e._subscribe();
|
|
1260
1274
|
};
|
|
1261
|
-
document.readyState !== "complete"
|
|
1275
|
+
if (document.readyState !== "complete") {
|
|
1276
|
+
const s = () => {
|
|
1277
|
+
document.readyState === "complete" && (document.removeEventListener("readystatechange", s), i());
|
|
1278
|
+
};
|
|
1279
|
+
document.addEventListener("readystatechange", s);
|
|
1280
|
+
} else
|
|
1281
|
+
i();
|
|
1262
1282
|
};
|
|
1263
|
-
function
|
|
1264
|
-
return Math.random().toString(16).slice(2)
|
|
1283
|
+
function Je() {
|
|
1284
|
+
return `${Date.now()}-${Math.random().toString(16).slice(2)}`;
|
|
1265
1285
|
}
|
|
1266
|
-
const
|
|
1286
|
+
const ne = ({
|
|
1267
1287
|
component: e,
|
|
1268
1288
|
defaultRoute: t = !1,
|
|
1269
|
-
ignoreRouter:
|
|
1289
|
+
ignoreRouter: r = !1
|
|
1270
1290
|
}) => {
|
|
1271
|
-
if (e.uniq || (e.uniq =
|
|
1291
|
+
if (e.uniq || (e.uniq = Je(), t && !e.route && !r && (e.route = t)), e._subscriptions = /* @__PURE__ */ new Set(), !r) {
|
|
1272
1292
|
e.route || (e.route = e.uniq, window.orbit && (e.route = window.orbit.getRoute(e.uniq))), e.noRouter = !0;
|
|
1273
1293
|
let i = document.querySelector("solid-router");
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1294
|
+
const s = window.sibRouter.currentResource;
|
|
1295
|
+
for (; i; ) {
|
|
1296
|
+
e.noRouter = !1, e.currentRoute = i.currentRouteName, e.currentResource = s;
|
|
1297
|
+
const o = `[data-view="${i.currentRouteName}"] solid-router`;
|
|
1298
|
+
i = document.querySelector(o);
|
|
1299
|
+
}
|
|
1278
1300
|
e.navigationListener = () => {
|
|
1279
|
-
let
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1301
|
+
let o = document.querySelector("solid-router");
|
|
1302
|
+
const n = window.sibRouter.currentResource;
|
|
1303
|
+
for (; o; ) {
|
|
1304
|
+
e.noRouter = !1, e.currentRoute = o.currentRouteName, e.currentResource = n;
|
|
1305
|
+
const a = `[data-view="${o.currentRouteName}"] solid-router`;
|
|
1306
|
+
o = document.querySelector(a);
|
|
1307
|
+
}
|
|
1284
1308
|
e.requestUpdate();
|
|
1285
1309
|
}, e._subscriptions.add(["navigate", e.navigationListener]);
|
|
1286
1310
|
}
|
|
@@ -1293,195 +1317,219 @@ const re = ({
|
|
|
1293
1317
|
document.removeEventListener(i[0], i[1]);
|
|
1294
1318
|
}, e._subscribe();
|
|
1295
1319
|
};
|
|
1296
|
-
function
|
|
1320
|
+
function Wt(e) {
|
|
1297
1321
|
return !Number.isNaN(new Date(e).getTime());
|
|
1298
1322
|
}
|
|
1299
|
-
const
|
|
1323
|
+
const bt = (e, t, r) => {
|
|
1300
1324
|
if (e == null)
|
|
1301
1325
|
return !1;
|
|
1302
1326
|
const i = t.split(".");
|
|
1303
|
-
let
|
|
1327
|
+
let s = e;
|
|
1304
1328
|
for (const o of i)
|
|
1305
|
-
if (
|
|
1306
|
-
|
|
1329
|
+
if (s && typeof s == "object" && o in s)
|
|
1330
|
+
s = s[o];
|
|
1307
1331
|
else
|
|
1308
1332
|
return !1;
|
|
1309
|
-
if (
|
|
1310
|
-
if (new Date(
|
|
1333
|
+
if (Wt(s)) {
|
|
1334
|
+
if (new Date(s) > r)
|
|
1311
1335
|
return !0;
|
|
1312
1336
|
} else
|
|
1313
1337
|
return !1;
|
|
1314
1338
|
return Array.isArray(e) ? e.some(
|
|
1315
|
-
(o) =>
|
|
1316
|
-
) : typeof e == "object" ? Object.entries(e).some(([o, n]) => o === t &&
|
|
1317
|
-
},
|
|
1318
|
-
if (!t || !
|
|
1339
|
+
(o) => bt(o, t, r)
|
|
1340
|
+
) : typeof e == "object" ? Object.entries(e).some(([o, n]) => o === t && Wt(n) ? !1 : bt(n, t, r)) : !1;
|
|
1341
|
+
}, Ze = (e, t, r) => {
|
|
1342
|
+
if (!t || !r || typeof r != "string")
|
|
1319
1343
|
return e;
|
|
1320
|
-
const i = new Date(
|
|
1321
|
-
return Number.isNaN(i.getTime()) ? (console.warn(`Invalid threshold date provided: ${
|
|
1322
|
-
(
|
|
1344
|
+
const i = new Date(r);
|
|
1345
|
+
return Number.isNaN(i.getTime()) ? (console.warn(`Invalid threshold date provided: ${r}`), e) : e.filter(
|
|
1346
|
+
(s) => bt(s, t, i)
|
|
1323
1347
|
);
|
|
1324
|
-
}
|
|
1325
|
-
|
|
1326
|
-
const o = t.split(".");
|
|
1327
|
-
for (const a of o)
|
|
1328
|
-
if (r && typeof r == "object" && a in r)
|
|
1329
|
-
r = r[a];
|
|
1330
|
-
else
|
|
1331
|
-
return !1;
|
|
1332
|
-
const n = r;
|
|
1333
|
-
return n ? typeof n == "object" && !Array.isArray(n) && n !== null && "@id" in n && n["@id"] === s ? !0 : Array.isArray(n) ? n.some(
|
|
1334
|
-
(a) => typeof a == "object" && a !== null && "@id" in a && a["@id"] === s
|
|
1335
|
-
) : !1 : !1;
|
|
1336
|
-
});
|
|
1337
|
-
function Ze(e) {
|
|
1348
|
+
};
|
|
1349
|
+
function Xe(e) {
|
|
1338
1350
|
return typeof e != "string" && typeof e != "number" && !(e instanceof Date) ? !1 : !Number.isNaN(new Date(e).getTime());
|
|
1339
1351
|
}
|
|
1340
|
-
const
|
|
1352
|
+
const $t = (e, t, r, i) => {
|
|
1341
1353
|
if (e == null)
|
|
1342
1354
|
return !1;
|
|
1343
|
-
const
|
|
1355
|
+
const s = t.split(".");
|
|
1344
1356
|
let o = e;
|
|
1345
|
-
for (const n of
|
|
1357
|
+
for (const n of s)
|
|
1346
1358
|
if (o && typeof o == "object" && n in o)
|
|
1347
1359
|
o = o[n];
|
|
1348
1360
|
else
|
|
1349
1361
|
return !1;
|
|
1350
1362
|
if (typeof o == "number") {
|
|
1351
|
-
if (typeof
|
|
1363
|
+
if (typeof r == "number" && typeof i == "number" && r <= o && o <= i)
|
|
1352
1364
|
return !0;
|
|
1353
|
-
} else if (
|
|
1365
|
+
} else if (Xe(o)) {
|
|
1354
1366
|
const n = new Date(o);
|
|
1355
|
-
if (
|
|
1367
|
+
if (r instanceof Date && i instanceof Date && r <= n && n <= i)
|
|
1356
1368
|
return !0;
|
|
1357
1369
|
} else
|
|
1358
1370
|
return !1;
|
|
1359
1371
|
return Array.isArray(e) ? e.some(
|
|
1360
|
-
(n) =>
|
|
1372
|
+
(n) => $t(n, t, r, i)
|
|
1361
1373
|
) : typeof e == "object" ? Object.entries(e).some(
|
|
1362
|
-
([n, a]) =>
|
|
1374
|
+
([n, a]) => $t(a, t, r, i)
|
|
1363
1375
|
) : !1;
|
|
1364
|
-
},
|
|
1365
|
-
if (!t || !
|
|
1376
|
+
}, Qe = (e, t, r) => {
|
|
1377
|
+
if (!t || !r)
|
|
1378
|
+
return e;
|
|
1379
|
+
const i = t.split(".");
|
|
1380
|
+
return e.filter((s) => {
|
|
1381
|
+
let o = s;
|
|
1382
|
+
for (const a of i)
|
|
1383
|
+
if (o && typeof o == "object" && a in o)
|
|
1384
|
+
o = o[a];
|
|
1385
|
+
else
|
|
1386
|
+
return !1;
|
|
1387
|
+
const n = o;
|
|
1388
|
+
return n ? typeof n == "object" && !Array.isArray(n) && n !== null && "@id" in n && n["@id"] === r ? !0 : Array.isArray(n) ? n.some(
|
|
1389
|
+
(a) => typeof a == "object" && a !== null && "@id" in a && a["@id"] === r
|
|
1390
|
+
) : !1 : !1;
|
|
1391
|
+
});
|
|
1392
|
+
}, Ye = (e, t, r) => {
|
|
1393
|
+
if (!t || !r || typeof r != "string")
|
|
1366
1394
|
return e;
|
|
1367
|
-
const [i,
|
|
1368
|
-
return Number.isNaN(i) || Number.isNaN(
|
|
1369
|
-
(o) =>
|
|
1395
|
+
const [i, s] = r.split("/").map(Number);
|
|
1396
|
+
return Number.isNaN(i) || Number.isNaN(s) ? e : i > s ? (console.warn(`Start number is after end number in interval: ${r}`), e) : e.filter(
|
|
1397
|
+
(o) => $t(o, t, i, s)
|
|
1370
1398
|
);
|
|
1371
|
-
},
|
|
1399
|
+
}, _t = (e, t, r) => {
|
|
1372
1400
|
if (e == null)
|
|
1373
1401
|
return 0;
|
|
1374
1402
|
if (typeof e != "object") {
|
|
1375
|
-
const
|
|
1403
|
+
const s = String(e).toLowerCase(), o = t.replace(
|
|
1376
1404
|
/[.*+?^${}()|[\]\\]/g,
|
|
1377
1405
|
"\\$&"
|
|
1378
1406
|
), n = new RegExp(`\\b${o}\\b`);
|
|
1379
1407
|
let a = 0;
|
|
1380
|
-
return n.test(
|
|
1408
|
+
return n.test(s) ? a = 2 : s.includes(t) && (a = 1), a;
|
|
1381
1409
|
}
|
|
1382
1410
|
if (Array.isArray(e)) {
|
|
1383
|
-
let
|
|
1411
|
+
let s = 0;
|
|
1384
1412
|
for (const o of e)
|
|
1385
|
-
if (
|
|
1386
|
-
|
|
1387
|
-
|
|
1413
|
+
if (s = Math.max(
|
|
1414
|
+
s,
|
|
1415
|
+
_t(
|
|
1388
1416
|
o,
|
|
1389
1417
|
t
|
|
1390
1418
|
)
|
|
1391
|
-
),
|
|
1392
|
-
return
|
|
1419
|
+
), s === 2) break;
|
|
1420
|
+
return s;
|
|
1393
1421
|
}
|
|
1394
1422
|
let i = 0;
|
|
1395
|
-
for (const
|
|
1423
|
+
for (const s of Object.values(e))
|
|
1396
1424
|
if (i = Math.max(
|
|
1397
1425
|
i,
|
|
1398
|
-
|
|
1399
|
-
|
|
1426
|
+
_t(
|
|
1427
|
+
s,
|
|
1400
1428
|
t
|
|
1401
1429
|
)
|
|
1402
1430
|
), i === 2) break;
|
|
1403
1431
|
return i;
|
|
1404
|
-
},
|
|
1405
|
-
if (!t || !
|
|
1432
|
+
}, tr = (e, t, r) => {
|
|
1433
|
+
if (!t || !r || r.trim() === "")
|
|
1406
1434
|
return e;
|
|
1407
|
-
const i =
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
for (const
|
|
1411
|
-
if (
|
|
1412
|
-
|
|
1435
|
+
const i = r.toLowerCase(), s = t.split(".");
|
|
1436
|
+
return e.map((o) => {
|
|
1437
|
+
let n = o;
|
|
1438
|
+
for (const c of s)
|
|
1439
|
+
if (n && typeof n == "object" && c in n)
|
|
1440
|
+
n = n[c];
|
|
1413
1441
|
else {
|
|
1414
|
-
|
|
1442
|
+
n = null;
|
|
1415
1443
|
break;
|
|
1416
1444
|
}
|
|
1417
|
-
let
|
|
1418
|
-
return
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1445
|
+
let a = 0;
|
|
1446
|
+
return n && (a = _t(
|
|
1447
|
+
n,
|
|
1448
|
+
i
|
|
1449
|
+
)), { obj: o, score: a };
|
|
1450
|
+
}).filter((o) => o.score > 0).sort((o, n) => n.score - o.score).map((o) => o.obj);
|
|
1451
|
+
}, er = (e, t) => t ? e.filter((r) => {
|
|
1452
|
+
const i = r["@type"];
|
|
1453
|
+
return i ? typeof i == "string" ? i === t : Array.isArray(i) ? i.some((s) => s === t) : !1 : !1;
|
|
1454
|
+
}) : e, wt = (e, t, r) => {
|
|
1425
1455
|
if (e == null)
|
|
1426
1456
|
return 0;
|
|
1427
1457
|
if (typeof e != "object") {
|
|
1428
|
-
const
|
|
1458
|
+
const s = String(e).toLowerCase(), o = t.replace(
|
|
1429
1459
|
/[.*+?^${}()|[\]\\]/g,
|
|
1430
1460
|
"\\$&"
|
|
1431
1461
|
), n = new RegExp(`\\b${o}\\b`);
|
|
1432
1462
|
let a = 0;
|
|
1433
|
-
return n.test(
|
|
1463
|
+
return n.test(s) ? r === "name" || r === "title" ? a = 4 : a = 3 : s.includes(t) && (r === "name" || r === "title" ? a = 2 : a = 1), a;
|
|
1434
1464
|
}
|
|
1435
1465
|
if (Array.isArray(e)) {
|
|
1436
|
-
let
|
|
1466
|
+
let s = 0;
|
|
1437
1467
|
for (const o of e)
|
|
1438
|
-
if (
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
),
|
|
1442
|
-
return
|
|
1468
|
+
if (s = Math.max(
|
|
1469
|
+
s,
|
|
1470
|
+
wt(o, t)
|
|
1471
|
+
), s === 4) break;
|
|
1472
|
+
return s;
|
|
1443
1473
|
}
|
|
1444
1474
|
let i = 0;
|
|
1445
|
-
for (const [
|
|
1475
|
+
for (const [s, o] of Object.entries(e))
|
|
1446
1476
|
if (i = Math.max(
|
|
1447
1477
|
i,
|
|
1448
|
-
|
|
1478
|
+
wt(o, t, s)
|
|
1449
1479
|
), i === 4) break;
|
|
1450
1480
|
return i;
|
|
1451
|
-
},
|
|
1481
|
+
}, ae = (e, t) => {
|
|
1452
1482
|
if (!t || t.trim() === "")
|
|
1453
1483
|
return e;
|
|
1454
|
-
const
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
},
|
|
1460
|
-
let
|
|
1461
|
-
for (
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1484
|
+
const r = t.toLowerCase();
|
|
1485
|
+
return e.map((i) => ({
|
|
1486
|
+
obj: i,
|
|
1487
|
+
score: wt(i, r)
|
|
1488
|
+
})).filter((i) => i.score > 0).sort((i, s) => s.score - i.score).map((i) => i.obj);
|
|
1489
|
+
}, D = (e, t) => {
|
|
1490
|
+
let r = e;
|
|
1491
|
+
for (const i of t)
|
|
1492
|
+
if (r && i in r)
|
|
1493
|
+
r = r[i];
|
|
1494
|
+
else
|
|
1495
|
+
return;
|
|
1496
|
+
return r;
|
|
1497
|
+
}, S = (e, t, r = "asc") => {
|
|
1498
|
+
const i = Array.isArray(t) ? t : [t], s = r !== "asc", o = [...e], a = (() => {
|
|
1499
|
+
const c = D(o[0], i);
|
|
1500
|
+
if (typeof c == "number")
|
|
1501
|
+
return (d, p) => {
|
|
1502
|
+
const u = D(d, i), g = D(p, i);
|
|
1503
|
+
return u == null ? g == null ? 0 : 1 : g == null ? -1 : u - g;
|
|
1504
|
+
};
|
|
1505
|
+
if (typeof c == "string")
|
|
1506
|
+
return (d, p) => {
|
|
1507
|
+
const u = D(d, i), g = D(p, i);
|
|
1508
|
+
return u == null ? g == null ? 0 : 1 : g == null ? -1 : u.localeCompare(g);
|
|
1509
|
+
};
|
|
1510
|
+
if (c instanceof Date)
|
|
1511
|
+
return (d, p) => {
|
|
1512
|
+
const u = D(d, i), g = D(p, i);
|
|
1513
|
+
return u == null ? g == null ? 0 : 1 : g == null ? -1 : u.getTime() - g.getTime();
|
|
1514
|
+
};
|
|
1475
1515
|
throw new TypeError(`Unsupported data type for key "${t}"`);
|
|
1476
|
-
|
|
1477
|
-
|
|
1516
|
+
})();
|
|
1517
|
+
return o.sort((c, d) => {
|
|
1518
|
+
const p = a(c, d);
|
|
1519
|
+
return s ? -p : p;
|
|
1520
|
+
}), o;
|
|
1521
|
+
}, Kt = /* @__PURE__ */ new Map(), rr = (e) => {
|
|
1522
|
+
const t = JSON.stringify(e);
|
|
1523
|
+
let r = Kt.get(t);
|
|
1524
|
+
return r || (r = new Intl.DateTimeFormat(void 0, e), Kt.set(t, r)), r;
|
|
1525
|
+
}, I = (e, t = {
|
|
1478
1526
|
day: "2-digit",
|
|
1479
1527
|
month: "2-digit",
|
|
1480
1528
|
year: "2-digit"
|
|
1481
1529
|
}) => {
|
|
1482
1530
|
if (!e) return "";
|
|
1483
|
-
const
|
|
1484
|
-
return typeof e == "string" &&
|
|
1531
|
+
const r = typeof e == "string" ? new Date(e) : e, s = rr(t).format(r);
|
|
1532
|
+
return typeof e == "string" && s === "Invalid Date" ? e : s;
|
|
1485
1533
|
}, L = (e, t = !1) => {
|
|
1486
1534
|
window.dispatchEvent(
|
|
1487
1535
|
new CustomEvent("requestNavigation", {
|
|
@@ -1491,49 +1539,49 @@ const bt = (e, t, s, i) => {
|
|
|
1491
1539
|
}
|
|
1492
1540
|
})
|
|
1493
1541
|
);
|
|
1494
|
-
},
|
|
1495
|
-
ds4go:
|
|
1496
|
-
link:
|
|
1497
|
-
enclosure:
|
|
1498
|
-
url:
|
|
1542
|
+
}, sr = "https://cdn.startinblox.com/owl/ds4go.jsonld#", ir = { "@id": "ds4go:link", "@type": "@id" }, or = { "@id": "ds4go:enclosure", "@type": "@id" }, nr = { "@id": "ds4go:url", "@type": "@id" }, Gt = {
|
|
1543
|
+
ds4go: sr,
|
|
1544
|
+
link: ir,
|
|
1545
|
+
enclosure: or,
|
|
1546
|
+
url: nr
|
|
1499
1547
|
};
|
|
1500
|
-
const
|
|
1501
|
-
const
|
|
1548
|
+
const At = "lit-localize-status";
|
|
1549
|
+
const ar = (e, ...t) => ({
|
|
1502
1550
|
strTag: !0,
|
|
1503
1551
|
strings: e,
|
|
1504
1552
|
values: t
|
|
1505
|
-
}),
|
|
1553
|
+
}), E = ar, cr = (e) => typeof e != "string" && "strTag" in e, ce = (e, t, r) => {
|
|
1506
1554
|
let i = e[0];
|
|
1507
|
-
for (let
|
|
1508
|
-
i += t[
|
|
1555
|
+
for (let s = 1; s < e.length; s++)
|
|
1556
|
+
i += t[r ? r[s - 1] : s - 1], i += e[s];
|
|
1509
1557
|
return i;
|
|
1510
1558
|
};
|
|
1511
|
-
const
|
|
1512
|
-
let
|
|
1513
|
-
function
|
|
1514
|
-
if (
|
|
1559
|
+
const le = ((e) => cr(e) ? ce(e.strings, e.values) : e);
|
|
1560
|
+
let h = le, Jt = !1;
|
|
1561
|
+
function lr(e) {
|
|
1562
|
+
if (Jt)
|
|
1515
1563
|
throw new Error("lit-localize can only be configured once");
|
|
1516
|
-
|
|
1564
|
+
h = e, Jt = !0;
|
|
1517
1565
|
}
|
|
1518
|
-
class
|
|
1566
|
+
class dr {
|
|
1519
1567
|
constructor(t) {
|
|
1520
|
-
this.__litLocalizeEventHandler = (
|
|
1521
|
-
|
|
1568
|
+
this.__litLocalizeEventHandler = (r) => {
|
|
1569
|
+
r.detail.status === "ready" && this.host.requestUpdate();
|
|
1522
1570
|
}, this.host = t;
|
|
1523
1571
|
}
|
|
1524
1572
|
hostConnected() {
|
|
1525
|
-
window.addEventListener(
|
|
1573
|
+
window.addEventListener(At, this.__litLocalizeEventHandler);
|
|
1526
1574
|
}
|
|
1527
1575
|
hostDisconnected() {
|
|
1528
|
-
window.removeEventListener(
|
|
1576
|
+
window.removeEventListener(At, this.__litLocalizeEventHandler);
|
|
1529
1577
|
}
|
|
1530
1578
|
}
|
|
1531
|
-
const
|
|
1532
|
-
const
|
|
1533
|
-
class
|
|
1579
|
+
const ur = (e) => e.addController(new dr(e)), hr = ur;
|
|
1580
|
+
const pr = () => (e, t) => (e.addInitializer(hr), e);
|
|
1581
|
+
class de {
|
|
1534
1582
|
constructor() {
|
|
1535
|
-
this.settled = !1, this.promise = new Promise((t,
|
|
1536
|
-
this._resolve = t, this._reject =
|
|
1583
|
+
this.settled = !1, this.promise = new Promise((t, r) => {
|
|
1584
|
+
this._resolve = t, this._reject = r;
|
|
1537
1585
|
});
|
|
1538
1586
|
}
|
|
1539
1587
|
resolve(t) {
|
|
@@ -1546,104 +1594,104 @@ class ae {
|
|
|
1546
1594
|
const C = [];
|
|
1547
1595
|
for (let e = 0; e < 256; e++)
|
|
1548
1596
|
C[e] = (e >> 4 & 15).toString(16) + (e & 15).toString(16);
|
|
1549
|
-
function
|
|
1550
|
-
let t = 0,
|
|
1551
|
-
for (let
|
|
1552
|
-
|
|
1553
|
-
return C[c >> 8] + C[c & 255] + C[n >> 8] + C[n & 255] + C[
|
|
1597
|
+
function fr(e) {
|
|
1598
|
+
let t = 0, r = 8997, i = 0, s = 33826, o = 0, n = 40164, a = 0, c = 52210;
|
|
1599
|
+
for (let d = 0; d < e.length; d++)
|
|
1600
|
+
r ^= e.charCodeAt(d), t = r * 435, i = s * 435, o = n * 435, a = c * 435, o += r << 8, a += s << 8, i += t >>> 16, r = t & 65535, o += i >>> 16, s = i & 65535, c = a + (o >>> 16) & 65535, n = o & 65535;
|
|
1601
|
+
return C[c >> 8] + C[c & 255] + C[n >> 8] + C[n & 255] + C[s >> 8] + C[s & 255] + C[r >> 8] + C[r & 255];
|
|
1554
1602
|
}
|
|
1555
|
-
const
|
|
1556
|
-
function
|
|
1557
|
-
return (t ?
|
|
1603
|
+
const mr = "", gr = "h", yr = "s";
|
|
1604
|
+
function vr(e, t) {
|
|
1605
|
+
return (t ? gr : yr) + fr(typeof e == "string" ? e : e.join(mr));
|
|
1558
1606
|
}
|
|
1559
|
-
const
|
|
1560
|
-
function
|
|
1607
|
+
const Zt = /* @__PURE__ */ new WeakMap(), Xt = /* @__PURE__ */ new Map();
|
|
1608
|
+
function br(e, t, r) {
|
|
1561
1609
|
if (e) {
|
|
1562
|
-
const i =
|
|
1563
|
-
if (
|
|
1564
|
-
if (typeof
|
|
1565
|
-
return
|
|
1566
|
-
if ("strTag" in
|
|
1567
|
-
return
|
|
1568
|
-
|
|
1610
|
+
const i = r?.id ?? $r(t), s = e[i];
|
|
1611
|
+
if (s) {
|
|
1612
|
+
if (typeof s == "string")
|
|
1613
|
+
return s;
|
|
1614
|
+
if ("strTag" in s)
|
|
1615
|
+
return ce(
|
|
1616
|
+
s.strings,
|
|
1569
1617
|
// Cast `template` because its type wasn't automatically narrowed (but
|
|
1570
1618
|
// we know it must be the same type as `localized`).
|
|
1571
1619
|
t.values,
|
|
1572
|
-
|
|
1620
|
+
s.values
|
|
1573
1621
|
);
|
|
1574
1622
|
{
|
|
1575
|
-
let o =
|
|
1576
|
-
return o === void 0 && (o =
|
|
1577
|
-
...
|
|
1623
|
+
let o = Zt.get(s);
|
|
1624
|
+
return o === void 0 && (o = s.values, Zt.set(s, o)), {
|
|
1625
|
+
...s,
|
|
1578
1626
|
values: o.map((n) => t.values[n])
|
|
1579
1627
|
};
|
|
1580
1628
|
}
|
|
1581
1629
|
}
|
|
1582
1630
|
}
|
|
1583
|
-
return
|
|
1631
|
+
return le(t);
|
|
1584
1632
|
}
|
|
1585
|
-
function
|
|
1633
|
+
function $r(e) {
|
|
1586
1634
|
const t = typeof e == "string" ? e : e.strings;
|
|
1587
|
-
let
|
|
1588
|
-
return
|
|
1635
|
+
let r = Xt.get(t);
|
|
1636
|
+
return r === void 0 && (r = vr(t, typeof e != "string" && !("strTag" in e)), Xt.set(t, r)), r;
|
|
1589
1637
|
}
|
|
1590
|
-
function
|
|
1591
|
-
window.dispatchEvent(new CustomEvent(
|
|
1638
|
+
function yt(e) {
|
|
1639
|
+
window.dispatchEvent(new CustomEvent(At, { detail: e }));
|
|
1592
1640
|
}
|
|
1593
|
-
let
|
|
1594
|
-
|
|
1595
|
-
let
|
|
1596
|
-
const
|
|
1597
|
-
if (e === (
|
|
1598
|
-
return
|
|
1599
|
-
if (!
|
|
1641
|
+
let lt = "", vt, ue, dt, Ct, he, O = new de();
|
|
1642
|
+
O.resolve();
|
|
1643
|
+
let ot = 0;
|
|
1644
|
+
const _r = (e) => (lr(((t, r) => br(he, t, r))), lt = ue = e.sourceLocale, dt = new Set(e.targetLocales), dt.add(e.sourceLocale), Ct = e.loadLocale, { getLocale: wr, setLocale: Ar }), wr = () => lt, Ar = (e) => {
|
|
1645
|
+
if (e === (vt ?? lt))
|
|
1646
|
+
return O.promise;
|
|
1647
|
+
if (!dt || !Ct)
|
|
1600
1648
|
throw new Error("Internal error");
|
|
1601
|
-
if (!
|
|
1649
|
+
if (!dt.has(e))
|
|
1602
1650
|
throw new Error("Invalid locale code");
|
|
1603
|
-
|
|
1604
|
-
const t =
|
|
1605
|
-
return
|
|
1651
|
+
ot++;
|
|
1652
|
+
const t = ot;
|
|
1653
|
+
return vt = e, O.settled && (O = new de()), yt({ status: "loading", loadingLocale: e }), (e === ue ? (
|
|
1606
1654
|
// We could switch to the source locale synchronously, but we prefer to
|
|
1607
1655
|
// queue it on a microtask so that switching locales is consistently
|
|
1608
1656
|
// asynchronous.
|
|
1609
1657
|
Promise.resolve({ templates: void 0 })
|
|
1610
|
-
) :
|
|
1611
|
-
|
|
1658
|
+
) : Ct(e)).then((i) => {
|
|
1659
|
+
ot === t && (lt = e, vt = void 0, he = i.templates, yt({ status: "ready", readyLocale: e }), O.resolve());
|
|
1612
1660
|
}, (i) => {
|
|
1613
|
-
|
|
1661
|
+
ot === t && (yt({
|
|
1614
1662
|
status: "error",
|
|
1615
1663
|
errorLocale: e,
|
|
1616
1664
|
errorMessage: i.toString()
|
|
1617
|
-
}),
|
|
1618
|
-
}),
|
|
1665
|
+
}), O.reject(i));
|
|
1666
|
+
}), O.promise;
|
|
1619
1667
|
};
|
|
1620
|
-
var
|
|
1621
|
-
for (var
|
|
1622
|
-
(n = e[o]) && (
|
|
1623
|
-
return i &&
|
|
1668
|
+
var Cr = Object.defineProperty, Sr = Object.getOwnPropertyDescriptor, Dt = (e, t, r, i) => {
|
|
1669
|
+
for (var s = i > 1 ? void 0 : i ? Sr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
|
|
1670
|
+
(n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
|
|
1671
|
+
return i && s && Cr(t, r, s), s;
|
|
1624
1672
|
};
|
|
1625
|
-
let
|
|
1673
|
+
let Q = class extends kt {
|
|
1626
1674
|
constructor() {
|
|
1627
1675
|
super(...arguments), this.search = [], this._displayObjects = [];
|
|
1628
1676
|
}
|
|
1629
1677
|
filter(e, t = []) {
|
|
1630
1678
|
if (!t || t.length === 0 || !e || e.length === 0)
|
|
1631
1679
|
return e;
|
|
1632
|
-
const
|
|
1633
|
-
for (const
|
|
1634
|
-
const o =
|
|
1635
|
-
n.push(
|
|
1680
|
+
const r = /* @__PURE__ */ new Map();
|
|
1681
|
+
for (const s of t) {
|
|
1682
|
+
const o = s.name, n = r.get(o) || [];
|
|
1683
|
+
n.push(s), r.set(o, n);
|
|
1636
1684
|
}
|
|
1637
1685
|
let i = [...e];
|
|
1638
|
-
for (const
|
|
1686
|
+
for (const s of r.values()) {
|
|
1639
1687
|
if (i.length === 0)
|
|
1640
1688
|
break;
|
|
1641
1689
|
const o = [];
|
|
1642
|
-
for (const n of
|
|
1690
|
+
for (const n of s)
|
|
1643
1691
|
switch (n.type) {
|
|
1644
1692
|
case "interval":
|
|
1645
1693
|
o.push(
|
|
1646
|
-
|
|
1694
|
+
Ye(
|
|
1647
1695
|
i,
|
|
1648
1696
|
n.name,
|
|
1649
1697
|
n.value
|
|
@@ -1652,7 +1700,7 @@ let X = class extends Rt {
|
|
|
1652
1700
|
break;
|
|
1653
1701
|
case "dateAfter":
|
|
1654
1702
|
o.push(
|
|
1655
|
-
|
|
1703
|
+
Ze(
|
|
1656
1704
|
i,
|
|
1657
1705
|
n.name,
|
|
1658
1706
|
n.value
|
|
@@ -1661,7 +1709,7 @@ let X = class extends Rt {
|
|
|
1661
1709
|
break;
|
|
1662
1710
|
case "matchId":
|
|
1663
1711
|
o.push(
|
|
1664
|
-
|
|
1712
|
+
Qe(
|
|
1665
1713
|
i,
|
|
1666
1714
|
n.name,
|
|
1667
1715
|
n.value
|
|
@@ -1670,12 +1718,12 @@ let X = class extends Rt {
|
|
|
1670
1718
|
break;
|
|
1671
1719
|
case "matchType":
|
|
1672
1720
|
o.push(
|
|
1673
|
-
|
|
1721
|
+
er(i, n.value)
|
|
1674
1722
|
);
|
|
1675
1723
|
break;
|
|
1676
1724
|
case "exact":
|
|
1677
1725
|
o.push(
|
|
1678
|
-
|
|
1726
|
+
tr(
|
|
1679
1727
|
i,
|
|
1680
1728
|
n.name,
|
|
1681
1729
|
n.value
|
|
@@ -1684,7 +1732,7 @@ let X = class extends Rt {
|
|
|
1684
1732
|
break;
|
|
1685
1733
|
default:
|
|
1686
1734
|
o.push(
|
|
1687
|
-
|
|
1735
|
+
ae(i, n.value)
|
|
1688
1736
|
);
|
|
1689
1737
|
}
|
|
1690
1738
|
i = [...o.flat()];
|
|
@@ -1702,15 +1750,15 @@ let X = class extends Rt {
|
|
|
1702
1750
|
));
|
|
1703
1751
|
}
|
|
1704
1752
|
render() {
|
|
1705
|
-
return !this._displayObjects || this._displayObjects.length === 0 ? l :
|
|
1753
|
+
return !this._displayObjects || this._displayObjects.length === 0 ? l : f`<div class="card-grid card-grid-vertical">
|
|
1706
1754
|
${this._displayObjects.map((e) => {
|
|
1707
1755
|
const t = [
|
|
1708
1756
|
{
|
|
1709
|
-
name: `${e.facts.length} ${e.facts.length > 1 ?
|
|
1757
|
+
name: `${e.facts.length} ${e.facts.length > 1 ? h("facts") : h("fact")}`,
|
|
1710
1758
|
type: "information"
|
|
1711
1759
|
}
|
|
1712
1760
|
];
|
|
1713
|
-
return
|
|
1761
|
+
return f`<tems-card-catalog
|
|
1714
1762
|
.object=${l}
|
|
1715
1763
|
type=${"bill-image"}
|
|
1716
1764
|
.tags=${t}
|
|
@@ -1723,7 +1771,7 @@ let X = class extends Rt {
|
|
|
1723
1771
|
</div>`;
|
|
1724
1772
|
}
|
|
1725
1773
|
};
|
|
1726
|
-
|
|
1774
|
+
Q.styles = tt`
|
|
1727
1775
|
.card-grid {
|
|
1728
1776
|
display: flex;
|
|
1729
1777
|
flex-direction: row;
|
|
@@ -1741,22 +1789,22 @@ X.styles = lt`
|
|
|
1741
1789
|
cursor: pointer;
|
|
1742
1790
|
}
|
|
1743
1791
|
`;
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
],
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
],
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
],
|
|
1753
|
-
const
|
|
1754
|
-
var
|
|
1755
|
-
for (var
|
|
1756
|
-
(n = e[o]) && (
|
|
1757
|
-
return i &&
|
|
1792
|
+
Dt([
|
|
1793
|
+
m()
|
|
1794
|
+
], Q.prototype, "search", 2);
|
|
1795
|
+
Dt([
|
|
1796
|
+
m()
|
|
1797
|
+
], Q.prototype, "_displayObjects", 2);
|
|
1798
|
+
Q = Dt([
|
|
1799
|
+
M("ds4go-fact-bundle-holder")
|
|
1800
|
+
], Q);
|
|
1801
|
+
const xr = ".flex{display:flex}.flex.flex-row{flex-direction:row}.flex.flex-column{flex-direction:column}.flex.wrap{flex-wrap:wrap}.flex.flex-1{flex:1}.flex .half,.flex.half{flex-basis:50%}.flex.justify-content-center{justify-content:center}.flex.justify-content-space-between{justify-content:space-between}.flex.align-items-center{align-items:center}.flex.align-items-flex-start{align-items:flex-start}.flex .align-items-flex-end{align-items:flex-end}.full-width{width:100%}.modal{background-color:var(--color-surface-primary);border:var(--border-width-sm) solid var(--color-border-primary);border-radius:var(--border-radius-lg);color:var(--color-text-body);display:flex;flex-direction:column;font-family:var(--font-family-body);font-size:var(--typography-size-body-md);font-style:normal;font-weight:var(--font-weight-regular);gap:var(--scale-600);height:90vh;letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-md);padding:var(--scale-600) var(--scale-900);width:90vw}.modal .topbar{display:flex;flex-direction:row;gap:var(--scale-400);width:100%}.modal .topbar tems-button:nth-child(2){margin-left:auto}.modal .modal-content-wrapper{display:flex;flex:1;flex-direction:column;overflow:hidden}.modal .modal-content-wrapper .modal-box{display:flex;flex:1;overflow-x:hidden;overflow-y:scroll}.modal .modal-content-wrapper .modal-content{display:flex;flex-direction:column;gap:var(--scale-400);height:fit-content;width:100%}.modal .modal-content-wrapper tems-division{width:fit-content}.modal .modal-content-wrapper tems-division div{display:block;height:auto;overflow:hidden;text-overflow:ellipsis}.modal .modal-content-wrapper .card-grid{display:flex;flex-direction:row;flex-wrap:wrap;gap:20px}.modal .modal-content-wrapper .card-grid-vertical{justify-content:stretch}.modal .modal-content-wrapper .card-grid-vertical tems-card-catalog{height:auto;width:354px}@media screen and (min-width:1100px){div.modal{height:fit-content;max-height:80vw;max-width:80vw;width:fit-content}}";
|
|
1802
|
+
var Pr = Object.defineProperty, Rr = Object.getOwnPropertyDescriptor, pe = (e, t, r, i) => {
|
|
1803
|
+
for (var s = i > 1 ? void 0 : i ? Rr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
|
|
1804
|
+
(n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
|
|
1805
|
+
return i && s && Pr(t, r, s), s;
|
|
1758
1806
|
};
|
|
1759
|
-
let
|
|
1807
|
+
let ut = class extends Fe {
|
|
1760
1808
|
constructor() {
|
|
1761
1809
|
super(...arguments), this.object = { "@id": "" };
|
|
1762
1810
|
}
|
|
@@ -1764,12 +1812,12 @@ let ct = class extends ke {
|
|
|
1764
1812
|
this.dispatchEvent(new CustomEvent("close"));
|
|
1765
1813
|
}
|
|
1766
1814
|
render() {
|
|
1767
|
-
return
|
|
1815
|
+
return f`<div class="modal">
|
|
1768
1816
|
<div class="topbar">
|
|
1769
1817
|
<tems-button
|
|
1770
1818
|
@click=${this._closeModal}
|
|
1771
1819
|
type="outline-gray"
|
|
1772
|
-
.iconLeft=${
|
|
1820
|
+
.iconLeft=${f`<icon-material-symbols-close-rounded></icon-material-symbols-close-rounded>`}
|
|
1773
1821
|
></tems-button>
|
|
1774
1822
|
</div>
|
|
1775
1823
|
<div class="modal-content-wrapper">
|
|
@@ -1782,22 +1830,22 @@ let ct = class extends ke {
|
|
|
1782
1830
|
><div>${String(this.object.description || "")}</div></tems-division
|
|
1783
1831
|
>
|
|
1784
1832
|
<tems-division type="h4"
|
|
1785
|
-
><div>${
|
|
1833
|
+
><div>${h("All facts in this bundle")}</div></tems-division
|
|
1786
1834
|
>
|
|
1787
1835
|
<div class="card-grid card-grid-vertical">
|
|
1788
1836
|
${this.object.facts.map((e) => {
|
|
1789
|
-
const t = e.categories.map((
|
|
1790
|
-
name:
|
|
1837
|
+
const t = e.categories.map((r) => ({
|
|
1838
|
+
name: r.name,
|
|
1791
1839
|
type: "information"
|
|
1792
1840
|
}));
|
|
1793
1841
|
if (t.length > 3) {
|
|
1794
|
-
const
|
|
1795
|
-
t.splice(3,
|
|
1796
|
-
name: `+${
|
|
1842
|
+
const r = t.length - 3;
|
|
1843
|
+
t.splice(3, r), t.push({
|
|
1844
|
+
name: `+${r} ${h("more")}`,
|
|
1797
1845
|
type: "information"
|
|
1798
1846
|
});
|
|
1799
1847
|
}
|
|
1800
|
-
return
|
|
1848
|
+
return f`<tems-card-catalog
|
|
1801
1849
|
.object=${l}
|
|
1802
1850
|
.tags=${t}
|
|
1803
1851
|
.header=${e.name || l}
|
|
@@ -1809,10 +1857,10 @@ let ct = class extends ke {
|
|
|
1809
1857
|
<tems-division type="body-sm"
|
|
1810
1858
|
><div>
|
|
1811
1859
|
<div>
|
|
1812
|
-
${
|
|
1860
|
+
${h("Bundle created on")} ${String(this.object.created_at)}
|
|
1813
1861
|
</div>
|
|
1814
1862
|
<div>
|
|
1815
|
-
${
|
|
1863
|
+
${h("Bundle updated on")} ${String(this.object.updated_at)}
|
|
1816
1864
|
</div>
|
|
1817
1865
|
</div></tems-division
|
|
1818
1866
|
>
|
|
@@ -1822,27 +1870,27 @@ let ct = class extends ke {
|
|
|
1822
1870
|
</div>`;
|
|
1823
1871
|
}
|
|
1824
1872
|
};
|
|
1825
|
-
|
|
1826
|
-
${
|
|
1873
|
+
ut.styles = tt`
|
|
1874
|
+
${Rt(xr)}
|
|
1827
1875
|
`;
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
],
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
],
|
|
1835
|
-
const
|
|
1836
|
-
class
|
|
1876
|
+
pe([
|
|
1877
|
+
v({ attribute: !1, type: Object })
|
|
1878
|
+
], ut.prototype, "object", 2);
|
|
1879
|
+
ut = pe([
|
|
1880
|
+
M("ds4go-fact-bundle-modal"),
|
|
1881
|
+
pr()
|
|
1882
|
+
], ut);
|
|
1883
|
+
const Er = /* @__PURE__ */ Symbol();
|
|
1884
|
+
class rt {
|
|
1837
1885
|
get taskComplete() {
|
|
1838
|
-
return this.t || (this.i === 1 ? this.t = new Promise(((t,
|
|
1839
|
-
this.o = t, this.h =
|
|
1886
|
+
return this.t || (this.i === 1 ? this.t = new Promise(((t, r) => {
|
|
1887
|
+
this.o = t, this.h = r;
|
|
1840
1888
|
})) : this.i === 3 ? this.t = Promise.reject(this.l) : this.t = Promise.resolve(this.u)), this.t;
|
|
1841
1889
|
}
|
|
1842
|
-
constructor(t,
|
|
1890
|
+
constructor(t, r, i) {
|
|
1843
1891
|
this.p = 0, this.i = 0, (this._ = t).addController(this);
|
|
1844
|
-
const
|
|
1845
|
-
this.v =
|
|
1892
|
+
const s = typeof r == "object" ? r : { task: r, args: i };
|
|
1893
|
+
this.v = s.task, this.j = s.args, this.m = s.argsEqual ?? jr, this.k = s.onComplete, this.A = s.onError, this.autoRun = s.autoRun ?? !0, "initialValue" in s && (this.u = s.initialValue, this.i = 2, this.O = this.T?.());
|
|
1846
1894
|
}
|
|
1847
1895
|
hostUpdate() {
|
|
1848
1896
|
this.autoRun === !0 && this.S();
|
|
@@ -1857,29 +1905,29 @@ class pt {
|
|
|
1857
1905
|
return t;
|
|
1858
1906
|
}
|
|
1859
1907
|
async S() {
|
|
1860
|
-
const t = this.T(),
|
|
1861
|
-
this.O = t, t ===
|
|
1908
|
+
const t = this.T(), r = this.O;
|
|
1909
|
+
this.O = t, t === r || t === void 0 || r !== void 0 && this.m(r, t) || await this.run(t);
|
|
1862
1910
|
}
|
|
1863
1911
|
async run(t) {
|
|
1864
|
-
let
|
|
1912
|
+
let r, i;
|
|
1865
1913
|
t ??= this.T(), this.O = t, this.i === 1 ? this.q?.abort() : (this.t = void 0, this.o = void 0, this.h = void 0), this.i = 1, this.autoRun === "afterUpdate" ? queueMicrotask((() => this._.requestUpdate())) : this._.requestUpdate();
|
|
1866
|
-
const
|
|
1914
|
+
const s = ++this.p;
|
|
1867
1915
|
this.q = new AbortController();
|
|
1868
1916
|
let o = !1;
|
|
1869
1917
|
try {
|
|
1870
|
-
|
|
1918
|
+
r = await this.v(t, { signal: this.q.signal });
|
|
1871
1919
|
} catch (n) {
|
|
1872
1920
|
o = !0, i = n;
|
|
1873
1921
|
}
|
|
1874
|
-
if (this.p ===
|
|
1875
|
-
if (
|
|
1922
|
+
if (this.p === s) {
|
|
1923
|
+
if (r === Er) this.i = 0;
|
|
1876
1924
|
else {
|
|
1877
1925
|
if (o === !1) {
|
|
1878
1926
|
try {
|
|
1879
|
-
this.k?.(
|
|
1927
|
+
this.k?.(r);
|
|
1880
1928
|
} catch {
|
|
1881
1929
|
}
|
|
1882
|
-
this.i = 2, this.o?.(
|
|
1930
|
+
this.i = 2, this.o?.(r);
|
|
1883
1931
|
} else {
|
|
1884
1932
|
try {
|
|
1885
1933
|
this.A?.(i);
|
|
@@ -1887,7 +1935,7 @@ class pt {
|
|
|
1887
1935
|
}
|
|
1888
1936
|
this.i = 3, this.h?.(i);
|
|
1889
1937
|
}
|
|
1890
|
-
this.u =
|
|
1938
|
+
this.u = r, this.l = i;
|
|
1891
1939
|
}
|
|
1892
1940
|
this._.requestUpdate();
|
|
1893
1941
|
}
|
|
@@ -1919,21 +1967,73 @@ class pt {
|
|
|
1919
1967
|
}
|
|
1920
1968
|
}
|
|
1921
1969
|
}
|
|
1922
|
-
const
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1970
|
+
const jr = (e, t) => e === t || e.length === t.length && e.every(((r, i) => !pt(r, t[i])));
|
|
1971
|
+
!window.orbit && !"/".includes("cypress") && await new Promise((e) => {
|
|
1972
|
+
document.addEventListener("orbit-ready", () => {
|
|
1973
|
+
e(!0);
|
|
1974
|
+
});
|
|
1975
|
+
});
|
|
1976
|
+
var Ur = Object.getOwnPropertyDescriptor, kr = (e, t, r, i) => {
|
|
1977
|
+
for (var s = i > 1 ? void 0 : i ? Ur(t, r) : t, o = e.length - 1, n; o >= 0; o--)
|
|
1978
|
+
(n = e[o]) && (s = n(s) || s);
|
|
1979
|
+
return s;
|
|
1980
|
+
};
|
|
1981
|
+
let St = class extends $ {
|
|
1982
|
+
constructor() {
|
|
1983
|
+
super(...arguments), this.cherryPickedProperties = [{ key: "name", value: "name" }], this._getResource = new rt(this, {
|
|
1984
|
+
task: async ([e]) => {
|
|
1985
|
+
if (!(!e || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
|
|
1986
|
+
if (!this.hasCachedDatas || this.oldDataSrc !== e) {
|
|
1987
|
+
if (!e) return;
|
|
1988
|
+
this.datas = await this._getProxyValue(e), this.hasCachedDatas = !0;
|
|
1989
|
+
}
|
|
1990
|
+
return this.oldDataSrc !== e && (this.oldDataSrc = e), S(this.datas, "name", "asc");
|
|
1991
|
+
}
|
|
1992
|
+
},
|
|
1993
|
+
args: () => [this.dataSrc, this.caching, this.currentRoute]
|
|
1994
|
+
});
|
|
1995
|
+
}
|
|
1996
|
+
async _afterAttach() {
|
|
1997
|
+
return oe(this, {
|
|
1998
|
+
keywords: ["some-keyword", "for-invalidating", "cache"]
|
|
1999
|
+
}), Promise.resolve();
|
|
2000
|
+
}
|
|
2001
|
+
render() {
|
|
2002
|
+
return this.gatekeeper() || this._getResource.render({
|
|
2003
|
+
pending: () => f`<solid-loader></solid-loader>`,
|
|
2004
|
+
complete: (e) => e ? f`<div>
|
|
2005
|
+
<sample-objects .objects=${e}></sample-objects>
|
|
2006
|
+
</div>` : l
|
|
2007
|
+
});
|
|
2008
|
+
}
|
|
1927
2009
|
};
|
|
1928
|
-
|
|
2010
|
+
St.styles = tt`
|
|
2011
|
+
div {
|
|
2012
|
+
background-color: red;
|
|
2013
|
+
position: absolute;
|
|
2014
|
+
top: 0;
|
|
2015
|
+
left: 0;
|
|
2016
|
+
right: 0;
|
|
2017
|
+
bottom: 0;
|
|
2018
|
+
}
|
|
2019
|
+
`;
|
|
2020
|
+
St = kr([
|
|
2021
|
+
M("solid-boilerplate")
|
|
2022
|
+
], St);
|
|
2023
|
+
var Dr = Object.defineProperty, Or = Object.getOwnPropertyDescriptor, U = (e, t, r, i) => {
|
|
2024
|
+
for (var s = i > 1 ? void 0 : i ? Or(t, r) : t, o = e.length - 1, n; o >= 0; o--)
|
|
2025
|
+
(n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
|
|
2026
|
+
return i && s && Dr(t, r, s), s;
|
|
2027
|
+
};
|
|
2028
|
+
let A = class extends $ {
|
|
1929
2029
|
constructor() {
|
|
1930
2030
|
super(...arguments), this.search = [], this.resultCount = this.objects?.length || 0, this.cherryPickedProperties = [
|
|
1931
2031
|
{ key: "dct:title", value: "title" },
|
|
1932
2032
|
{ key: "dct:description", value: "description" },
|
|
1933
2033
|
{ key: "dcat:dataset", value: "dataset", expand: !0 },
|
|
1934
2034
|
{ key: "dct:creator", value: "creator" }
|
|
1935
|
-
], this.sectors = [], this._getResource = new
|
|
1936
|
-
task: async ([e, t,
|
|
2035
|
+
], this.sectors = [], this._getResource = new rt(this, {
|
|
2036
|
+
task: async ([e, t, r]) => {
|
|
1937
2037
|
if (!(!e || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
|
|
1938
2038
|
if (this.displayFiltering = !this.component.parameters.disableFiltering, !this.hasCachedDatas) {
|
|
1939
2039
|
if (!e) return;
|
|
@@ -1948,25 +2048,25 @@ let A = class extends b {
|
|
|
1948
2048
|
}
|
|
1949
2049
|
if (t) {
|
|
1950
2050
|
this.catalogs = [];
|
|
1951
|
-
const i = t === "*" ? this.sectors : this.sectors.filter((
|
|
2051
|
+
const i = t === "*" ? this.sectors : this.sectors.filter((s) => s.id === t);
|
|
1952
2052
|
if (i.length > 0 && (this.catalogs = (await Promise.all(
|
|
1953
|
-
i.map(async (
|
|
2053
|
+
i.map(async (s) => {
|
|
1954
2054
|
try {
|
|
1955
2055
|
return (await (await fetch(
|
|
1956
|
-
`${
|
|
2056
|
+
`${s.federatedCatalogEndpoint}/discovery`
|
|
1957
2057
|
)).json()).catalogs;
|
|
1958
2058
|
} catch (o) {
|
|
1959
2059
|
return console.warn(
|
|
1960
|
-
`Failed to fetch sector authority ${
|
|
2060
|
+
`Failed to fetch sector authority ${s.federatedCatalogEndpoint}/discovery`,
|
|
1961
2061
|
o
|
|
1962
2062
|
), [];
|
|
1963
2063
|
}
|
|
1964
2064
|
})
|
|
1965
|
-
)).flat()),
|
|
1966
|
-
if (
|
|
2065
|
+
)).flat()), r) {
|
|
2066
|
+
if (r === "*")
|
|
1967
2067
|
return this.object = {
|
|
1968
2068
|
"@id": "urn:uuid:all-catalogs",
|
|
1969
|
-
"dct:title":
|
|
2069
|
+
"dct:title": h("All Catalogs"),
|
|
1970
2070
|
"dct:description": "",
|
|
1971
2071
|
"dcat:dataset": (await Promise.all(
|
|
1972
2072
|
this.catalogs.map(async (o) => {
|
|
@@ -1981,27 +2081,27 @@ let A = class extends b {
|
|
|
1981
2081
|
})
|
|
1982
2082
|
)).flat()
|
|
1983
2083
|
}, this.object;
|
|
1984
|
-
const
|
|
1985
|
-
(o) => o.catalogId ===
|
|
2084
|
+
const s = this.catalogs.find(
|
|
2085
|
+
(o) => o.catalogId === r
|
|
1986
2086
|
);
|
|
1987
|
-
if (
|
|
2087
|
+
if (s)
|
|
1988
2088
|
try {
|
|
1989
|
-
return this.object = await (await fetch(
|
|
2089
|
+
return this.object = await (await fetch(s.endpoints.catalog)).json(), this.object["dcat:dataset"] = S(
|
|
1990
2090
|
this.object["dcat:dataset"],
|
|
1991
2091
|
"dct:title",
|
|
1992
2092
|
"asc"
|
|
1993
2093
|
), this.object;
|
|
1994
2094
|
} catch (o) {
|
|
1995
2095
|
console.warn(
|
|
1996
|
-
`Failed to fetch catalog from ${
|
|
2096
|
+
`Failed to fetch catalog from ${s.endpoints.catalog}`,
|
|
1997
2097
|
o
|
|
1998
2098
|
);
|
|
1999
2099
|
return;
|
|
2000
2100
|
}
|
|
2001
2101
|
}
|
|
2002
|
-
return
|
|
2102
|
+
return S(this.catalogs, "catalogId", "asc");
|
|
2003
2103
|
}
|
|
2004
|
-
return
|
|
2104
|
+
return S(this.sectors, "id", "asc");
|
|
2005
2105
|
}
|
|
2006
2106
|
},
|
|
2007
2107
|
args: () => [
|
|
@@ -2035,70 +2135,70 @@ let A = class extends b {
|
|
|
2035
2135
|
}
|
|
2036
2136
|
render() {
|
|
2037
2137
|
return this.gatekeeper() || this._getResource.render({
|
|
2038
|
-
pending: () =>
|
|
2138
|
+
pending: () => f`<solid-loader></solid-loader>`,
|
|
2039
2139
|
error: (e) => (console.warn("[solid-dsif-explorer-poc] Task error:", e), l),
|
|
2040
|
-
complete: (e) =>
|
|
2140
|
+
complete: (e) => f`<tems-viewport>
|
|
2041
2141
|
<tems-header
|
|
2042
2142
|
slot="header"
|
|
2043
|
-
heading=${this.catalogId ? e ? this.catalogId === "*" ? `${
|
|
2044
|
-
${e["dct:title"]} (From ${this.sectorId})` : `${
|
|
2045
|
-
>${(this.sectorId || this.catalogId) && !(this.catalogId === "*" && this.sectorId === "*") && !(this.sectorId === "*" && !this.catalogId) ?
|
|
2143
|
+
heading=${this.catalogId ? e ? this.catalogId === "*" ? `${h("All Datasets")}` : `${h("Datasets from")}
|
|
2144
|
+
${e["dct:title"]} (From ${this.sectorId})` : `${h(E`Error while loading catalog ${this.catalogId}`)}` : this.sectorId ? this.sectorId === "*" ? `${h("All Sectors")}` : `${h("Catalogs available in")} ${this.sectorId}` : `${h("Root Authority")}`}
|
|
2145
|
+
>${(this.sectorId || this.catalogId) && !(this.catalogId === "*" && this.sectorId === "*") && !(this.sectorId === "*" && !this.catalogId) ? f`<div slot="cta">
|
|
2046
2146
|
<tems-button
|
|
2047
2147
|
type="primary"
|
|
2048
|
-
label=${
|
|
2049
|
-
|
|
2148
|
+
label=${h(
|
|
2149
|
+
E`Back to ${this.catalogId ? this.sectorId : "Root Authority"}`
|
|
2050
2150
|
)}
|
|
2051
2151
|
@click=${this._back}
|
|
2052
2152
|
></tems-button>
|
|
2053
2153
|
</div>` : l}</tems-header
|
|
2054
2154
|
>
|
|
2055
2155
|
<div slot="content">
|
|
2056
|
-
${e ?
|
|
2057
|
-
${this.catalogId ?
|
|
2156
|
+
${e ? f`<div>
|
|
2157
|
+
${this.catalogId ? f`<tems-division type="body-m"
|
|
2058
2158
|
>${e["dct:description"]}</tems-division
|
|
2059
2159
|
>` : l}
|
|
2060
2160
|
<div class="card-grid card-grid-vertical">
|
|
2061
|
-
${this.catalogId ?
|
|
2062
|
-
(t) =>
|
|
2161
|
+
${this.catalogId ? f`${e["dcat:dataset"].map(
|
|
2162
|
+
(t) => f`<tems-card-catalog
|
|
2063
2163
|
.object=${l}
|
|
2064
2164
|
type=${"bill-image"}
|
|
2065
2165
|
.header=${t["dct:title"] || l}
|
|
2066
2166
|
.content=${t["dct:description"] || l}
|
|
2067
2167
|
></tems-card-catalog>`
|
|
2068
|
-
)}` : this.sectorId ?
|
|
2069
|
-
(t) =>
|
|
2168
|
+
)}` : this.sectorId ? f`${e.map(
|
|
2169
|
+
(t) => f`<tems-card-catalog
|
|
2070
2170
|
class="cursor-pointer"
|
|
2071
2171
|
.object=${l}
|
|
2072
2172
|
type=${"bill-image"}
|
|
2073
2173
|
.header=${t.catalogId || l}
|
|
2074
2174
|
.content=${t.description || l}
|
|
2075
|
-
date=${
|
|
2175
|
+
date=${I(t.lastUpdated) || l}
|
|
2076
2176
|
@click=${() => this._selectCatalog(t.catalogId)}
|
|
2077
2177
|
></tems-card-catalog>`
|
|
2078
|
-
)}` :
|
|
2079
|
-
(t) =>
|
|
2178
|
+
)}` : f`${e.map(
|
|
2179
|
+
(t) => f`<tems-card-catalog
|
|
2080
2180
|
class="cursor-pointer"
|
|
2081
2181
|
.object=${l}
|
|
2082
2182
|
type=${"bill-image"}
|
|
2083
2183
|
.header=${t.id || l}
|
|
2084
2184
|
.content=${t.description || l}
|
|
2085
|
-
date=${
|
|
2185
|
+
date=${I(t.lastUpdated) || l}
|
|
2086
2186
|
@click=${() => this._selectSector(t.id)}
|
|
2087
2187
|
></tems-card-catalog>`
|
|
2088
2188
|
)}`}
|
|
2089
2189
|
</div>
|
|
2090
|
-
</div>` :
|
|
2091
|
-
${
|
|
2190
|
+
</div>` : f`<p>
|
|
2191
|
+
${h(
|
|
2092
2192
|
"No data available, data source may be temporarily unavailable."
|
|
2093
2193
|
)}
|
|
2094
2194
|
</p>
|
|
2095
|
-
${this.sectorId || this.catalogId ?
|
|
2195
|
+
${this.sectorId || this.catalogId ? f`<tems-button
|
|
2096
2196
|
type="primary"
|
|
2097
|
-
label=${
|
|
2197
|
+
label=${h("Back")}
|
|
2098
2198
|
@click=${this._back}
|
|
2099
|
-
></tems-button>` :
|
|
2199
|
+
></tems-button>` : f`<tems-button
|
|
2100
2200
|
type="primary"
|
|
2101
|
-
label=${
|
|
2201
|
+
label=${h("Retry")}
|
|
2102
2202
|
@click=${this.requestUpdate}
|
|
2103
2203
|
></tems-button>`}`}
|
|
2104
2204
|
</div>
|
|
@@ -2106,7 +2206,7 @@ let A = class extends b {
|
|
|
2106
2206
|
});
|
|
2107
2207
|
}
|
|
2108
2208
|
};
|
|
2109
|
-
A.styles =
|
|
2209
|
+
A.styles = tt`
|
|
2110
2210
|
.card-grid {
|
|
2111
2211
|
margin: var(--scale-900) 0;
|
|
2112
2212
|
display: flex;
|
|
@@ -2129,37 +2229,37 @@ A.styles = lt`
|
|
|
2129
2229
|
}
|
|
2130
2230
|
`;
|
|
2131
2231
|
U([
|
|
2132
|
-
|
|
2232
|
+
v({ attribute: "sector-id", type: String })
|
|
2133
2233
|
], A.prototype, "sectorId", 2);
|
|
2134
2234
|
U([
|
|
2135
|
-
|
|
2235
|
+
v({ attribute: "catalog-id", type: String })
|
|
2136
2236
|
], A.prototype, "catalogId", 2);
|
|
2137
2237
|
U([
|
|
2138
|
-
|
|
2238
|
+
m()
|
|
2139
2239
|
], A.prototype, "search", 2);
|
|
2140
2240
|
U([
|
|
2141
|
-
|
|
2241
|
+
m()
|
|
2142
2242
|
], A.prototype, "resultCount", 2);
|
|
2143
2243
|
U([
|
|
2144
|
-
|
|
2244
|
+
m()
|
|
2145
2245
|
], A.prototype, "sectors", 2);
|
|
2146
2246
|
U([
|
|
2147
|
-
|
|
2247
|
+
m()
|
|
2148
2248
|
], A.prototype, "catalogs", 2);
|
|
2149
2249
|
U([
|
|
2150
|
-
|
|
2250
|
+
m()
|
|
2151
2251
|
], A.prototype, "object", 2);
|
|
2152
2252
|
A = U([
|
|
2153
|
-
|
|
2253
|
+
M("solid-dsif-explorer-poc")
|
|
2154
2254
|
], A);
|
|
2155
|
-
var
|
|
2156
|
-
for (var
|
|
2157
|
-
(n = e[o]) && (
|
|
2158
|
-
return i &&
|
|
2255
|
+
var Lr = Object.defineProperty, Tr = Object.getOwnPropertyDescriptor, mt = (e, t, r, i) => {
|
|
2256
|
+
for (var s = i > 1 ? void 0 : i ? Tr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
|
|
2257
|
+
(n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
|
|
2258
|
+
return i && s && Lr(t, r, s), s;
|
|
2159
2259
|
};
|
|
2160
|
-
let
|
|
2260
|
+
let Y = class extends P {
|
|
2161
2261
|
constructor() {
|
|
2162
|
-
super(...arguments), this.assets = [], this.policies = [], this.contracts = [], this._getResource = new
|
|
2262
|
+
super(...arguments), this.assets = [], this.policies = [], this.contracts = [], this._getResource = new rt(this, {
|
|
2163
2263
|
task: async () => {
|
|
2164
2264
|
if (this.orbit) {
|
|
2165
2265
|
if (!this.hasCachedDatas) {
|
|
@@ -2265,30 +2365,30 @@ let Q = class extends S {
|
|
|
2265
2365
|
});
|
|
2266
2366
|
}
|
|
2267
2367
|
};
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
],
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
],
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
],
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
],
|
|
2280
|
-
const
|
|
2281
|
-
var
|
|
2282
|
-
for (var
|
|
2283
|
-
(n = e[o]) && (
|
|
2284
|
-
return i &&
|
|
2368
|
+
mt([
|
|
2369
|
+
m()
|
|
2370
|
+
], Y.prototype, "assets", 2);
|
|
2371
|
+
mt([
|
|
2372
|
+
m()
|
|
2373
|
+
], Y.prototype, "policies", 2);
|
|
2374
|
+
mt([
|
|
2375
|
+
m()
|
|
2376
|
+
], Y.prototype, "contracts", 2);
|
|
2377
|
+
Y = mt([
|
|
2378
|
+
M("solid-dsp-connector")
|
|
2379
|
+
], Y);
|
|
2380
|
+
const Ir = ".flex{display:flex}.flex.flex-row{flex-direction:row}.flex.flex-column{flex-direction:column}.flex.wrap{flex-wrap:wrap}.flex.flex-1{flex:1}.flex .half,.flex.half{flex-basis:50%}.flex.justify-content-center{justify-content:center}.flex.justify-content-space-between{justify-content:space-between}.flex.align-items-center{align-items:center}.flex.align-items-flex-start{align-items:flex-start}.flex .align-items-flex-end{align-items:flex-end}.full-width{width:100%}[slot=content]{height:100%}section{height:calc(100% - var(--scale-900)*2);padding:var(--scale-900) 0}section,section>div{gap:var(--scale-400)}section>div{display:flex;flex:1;flex-direction:column;height:100%}section>div:first-child{max-width:400px}.card-grid{align-content:flex-start;display:flex;flex:1;flex-direction:row;flex-wrap:wrap;gap:20px;overflow-y:scroll}.card-grid-vertical{justify-content:stretch}.card-grid-vertical tems-card-catalog{height:fit-content;width:354px}tems-card-catalog{cursor:pointer}tems-card-catalog[selected]{--color-border-primary:var(--color-surface-action-solid)}tems-search-bar{--scale-900:0}.gap-400{gap:var(--scale-400)}div.select{align-items:flex-start;display:flex;flex-direction:column;gap:var(--scale-200);width:100%}select{appearance:none;background-color:var(--color-surface-primary);border:var(--border-width-sm) solid var(--color-border-primary);border-radius:var(--border-radius-md);color:var(--color-text-body);cursor:pointer;font-family:var(--font-family-body);font-size:var(--typography-size-body-sm);font-style:normal;font-weight:var(--font-weight-regular);letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-sm);padding:var(--scale-100) var(--scale-300);width:100%}select:hover{border:var(--border-width-sm) solid var(--color-border-action)}select option{background-color:var(--color-surface-primary);color:var(--color-text-body);cursor:pointer;font-family:var(--font-family-body);font-size:var(--typography-size-body-sm);font-style:normal;font-weight:var(--font-weight-regular);letter-spacing:var(--font-letter-spacing-default);line-height:var(--line-height-body-sm);padding:var(--scale-100) var(--scale-300)}";
|
|
2381
|
+
var Fr = Object.defineProperty, Nr = Object.getOwnPropertyDescriptor, _ = (e, t, r, i) => {
|
|
2382
|
+
for (var s = i > 1 ? void 0 : i ? Nr(t, r) : t, o = e.length - 1, n; o >= 0; o--)
|
|
2383
|
+
(n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
|
|
2384
|
+
return i && s && Fr(t, r, s), s;
|
|
2285
2385
|
};
|
|
2286
|
-
let
|
|
2386
|
+
let b = class extends $ {
|
|
2287
2387
|
constructor() {
|
|
2288
2388
|
super(...arguments), this.header = "DS4GO Fact Bundling Creation", this.selectedFacts = [], this.bundleName = "", this.bundleDescription = "", this.bundleLanguage = "en", this.policyTemplates = [
|
|
2289
2389
|
{
|
|
2290
2390
|
id: "policy-open-access",
|
|
2291
|
-
name:
|
|
2391
|
+
name: h("Open access"),
|
|
2292
2392
|
policy: {
|
|
2293
2393
|
"@type": "Set",
|
|
2294
2394
|
permission: [
|
|
@@ -2301,8 +2401,8 @@ let v = class extends b {
|
|
|
2301
2401
|
}
|
|
2302
2402
|
}
|
|
2303
2403
|
], this.bundleAccessPolicy = this.policyTemplates[0].id, this.bundleContractPolicy = this.policyTemplates[0].id, this.filterFactText = "", this.spliceLength = 0, this.cherryPickedProperties = [
|
|
2304
|
-
{ key: "created_at", value: "created_at", cast:
|
|
2305
|
-
{ key: "updated_at", value: "updated_at", cast:
|
|
2404
|
+
{ key: "created_at", value: "created_at", cast: I },
|
|
2405
|
+
{ key: "updated_at", value: "updated_at", cast: I },
|
|
2306
2406
|
{ key: "name", value: "name" },
|
|
2307
2407
|
{ key: "description", value: "description" },
|
|
2308
2408
|
{ key: "author", value: "author" },
|
|
@@ -2310,27 +2410,27 @@ let v = class extends b {
|
|
|
2310
2410
|
key: "categories",
|
|
2311
2411
|
value: "categories",
|
|
2312
2412
|
expand: !0,
|
|
2313
|
-
cast: (t) =>
|
|
2413
|
+
cast: (t) => S(t, "name")
|
|
2314
2414
|
}
|
|
2315
|
-
], this._getResource = new
|
|
2316
|
-
task: async ([t,
|
|
2415
|
+
], this._getResource = new rt(this, {
|
|
2416
|
+
task: async ([t, r, i]) => {
|
|
2317
2417
|
if (!(!t || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
|
|
2318
2418
|
if (!this.hasCachedDatas || this.oldDataSrc !== t) {
|
|
2319
2419
|
if (!t) return;
|
|
2320
2420
|
this.facts = await this._getProxyValue(t), this.hasCachedDatas = !0;
|
|
2321
2421
|
}
|
|
2322
|
-
return this.oldDataSrc !== t && (this.oldDataSrc = t), Array.isArray(this.facts) || (this.facts = []),
|
|
2323
|
-
|
|
2422
|
+
return this.oldDataSrc !== t && (this.oldDataSrc = t), Array.isArray(this.facts) || (this.facts = []), r ? S(
|
|
2423
|
+
ae(
|
|
2324
2424
|
this.facts.filter(
|
|
2325
|
-
(
|
|
2425
|
+
(s) => !i.includes(s)
|
|
2326
2426
|
),
|
|
2327
|
-
|
|
2427
|
+
r
|
|
2328
2428
|
),
|
|
2329
2429
|
"name",
|
|
2330
2430
|
"asc"
|
|
2331
|
-
) : (i.length === 0 && (this.spliceLength = Math.floor((window.innerWidth - 800) / 354) * Math.floor((window.innerHeight - 255) / 500)),
|
|
2431
|
+
) : (i.length === 0 && (this.spliceLength = Math.floor((window.innerWidth - 800) / 354) * Math.floor((window.innerHeight - 255) / 500)), S(
|
|
2332
2432
|
this.facts.filter(
|
|
2333
|
-
(
|
|
2433
|
+
(s) => !this.selectedFacts.includes(s)
|
|
2334
2434
|
),
|
|
2335
2435
|
"name",
|
|
2336
2436
|
"asc"
|
|
@@ -2366,16 +2466,16 @@ let v = class extends b {
|
|
|
2366
2466
|
"@type": ["ldp:Container", "ds4go:FactBundle"],
|
|
2367
2467
|
name: this.bundleName,
|
|
2368
2468
|
description: this.bundleDescription || "",
|
|
2369
|
-
"ldp:contains": this.selectedFacts.map((
|
|
2370
|
-
"@id":
|
|
2469
|
+
"ldp:contains": this.selectedFacts.map((s) => ({
|
|
2470
|
+
"@id": s["@id"]
|
|
2371
2471
|
}))
|
|
2372
|
-
},
|
|
2472
|
+
}, r = await window.sibStore.post(
|
|
2373
2473
|
t,
|
|
2374
2474
|
this.dataSrc
|
|
2375
2475
|
);
|
|
2376
2476
|
if (document.dispatchEvent(
|
|
2377
2477
|
new CustomEvent("save", {
|
|
2378
|
-
detail: { resource: { "@id":
|
|
2478
|
+
detail: { resource: { "@id": r } },
|
|
2379
2479
|
bubbles: !0
|
|
2380
2480
|
})
|
|
2381
2481
|
), document.dispatchEvent(
|
|
@@ -2384,9 +2484,9 @@ let v = class extends b {
|
|
|
2384
2484
|
bubbles: !0
|
|
2385
2485
|
})
|
|
2386
2486
|
), this.dspConnector) {
|
|
2387
|
-
const
|
|
2487
|
+
const s = await window.crypto.subtle.digest("SHA-256", new TextEncoder().encode(r)).then((c) => `sha-256:${Array.from(new Uint8Array(c)).map((d) => d.toString(16).padStart(2, "0")).join("")}`);
|
|
2388
2488
|
await this.dspConnector.instance?.createAsset({
|
|
2389
|
-
"@id": `urn:asset-id:${
|
|
2489
|
+
"@id": `urn:asset-id:${s}`,
|
|
2390
2490
|
properties: {
|
|
2391
2491
|
name: this.bundleName,
|
|
2392
2492
|
description: this.bundleDescription,
|
|
@@ -2396,11 +2496,11 @@ let v = class extends b {
|
|
|
2396
2496
|
dataAddress: {
|
|
2397
2497
|
"@type": "DataAddress",
|
|
2398
2498
|
type: "HttpData",
|
|
2399
|
-
baseUrl:
|
|
2499
|
+
baseUrl: r
|
|
2400
2500
|
}
|
|
2401
2501
|
}), await Promise.all([
|
|
2402
2502
|
this.dspConnector.instance?.createPolicy({
|
|
2403
|
-
"@id": `urn:access-policy-id:${
|
|
2503
|
+
"@id": `urn:access-policy-id:${s}`,
|
|
2404
2504
|
"@type": "PolicyDefinition",
|
|
2405
2505
|
policy: {
|
|
2406
2506
|
"@context": "http://www.w3.org/ns/odrl.jsonld",
|
|
@@ -2410,7 +2510,7 @@ let v = class extends b {
|
|
|
2410
2510
|
}
|
|
2411
2511
|
}),
|
|
2412
2512
|
this.dspConnector.instance?.createPolicy({
|
|
2413
|
-
"@id": `urn:contract-policy-id:${
|
|
2513
|
+
"@id": `urn:contract-policy-id:${s}`,
|
|
2414
2514
|
"@type": "PolicyDefinition",
|
|
2415
2515
|
policy: {
|
|
2416
2516
|
"@context": "http://www.w3.org/ns/odrl.jsonld",
|
|
@@ -2420,16 +2520,16 @@ let v = class extends b {
|
|
|
2420
2520
|
}
|
|
2421
2521
|
}),
|
|
2422
2522
|
this.dspConnector.instance?.createContract({
|
|
2423
|
-
"@id": `urn:contract-id:${
|
|
2523
|
+
"@id": `urn:contract-id:${s}`,
|
|
2424
2524
|
"@type": "ContractDefinition",
|
|
2425
|
-
accessPolicyId: `urn:access-policy-id:${
|
|
2426
|
-
contractPolicyId: `urn:contract-policy-id:${
|
|
2525
|
+
accessPolicyId: `urn:access-policy-id:${s}`,
|
|
2526
|
+
contractPolicyId: `urn:contract-policy-id:${s}`,
|
|
2427
2527
|
assetsSelector: [
|
|
2428
2528
|
{
|
|
2429
2529
|
"@type": "Criterion",
|
|
2430
2530
|
operandLeft: "https://w3id.org/edc/v0.0.1/ns/id",
|
|
2431
2531
|
operator: "=",
|
|
2432
|
-
operandRight: `urn:asset-id:${
|
|
2532
|
+
operandRight: `urn:asset-id:${s}`
|
|
2433
2533
|
}
|
|
2434
2534
|
]
|
|
2435
2535
|
})
|
|
@@ -2475,25 +2575,25 @@ let v = class extends b {
|
|
|
2475
2575
|
t.preventDefault(), t.target && (this.bundleContractPolicy = t.target.value);
|
|
2476
2576
|
}
|
|
2477
2577
|
_toggleFactSelection(t) {
|
|
2478
|
-
this.selectedFacts.includes(t) ? this.selectedFacts = this.selectedFacts.filter((
|
|
2578
|
+
this.selectedFacts.includes(t) ? this.selectedFacts = this.selectedFacts.filter((r) => r !== t) : this.selectedFacts = [...this.selectedFacts, t];
|
|
2479
2579
|
}
|
|
2480
2580
|
_searchFacts(t) {
|
|
2481
2581
|
this.filterFactText = t.detail;
|
|
2482
2582
|
}
|
|
2483
2583
|
render() {
|
|
2484
2584
|
return this.gatekeeper() || this._getResource.render({
|
|
2485
|
-
pending: () =>
|
|
2585
|
+
pending: () => f`<solid-loader></solid-loader>`,
|
|
2486
2586
|
error: (t) => (console.warn("[solid-fact-bundle-creation] Task error:", t), l),
|
|
2487
2587
|
complete: (t) => {
|
|
2488
2588
|
if (!t) return l;
|
|
2489
|
-
const
|
|
2490
|
-
return
|
|
2589
|
+
const r = t.slice(0, this.spliceLength), i = this.selectedFacts.length, s = !!this.bundleName && i > 0 && !!this.bundleLanguage && !!this.bundleAccessPolicy && !!this.bundleContractPolicy;
|
|
2590
|
+
return f`<tems-viewport>
|
|
2491
2591
|
<tems-header slot="header" heading=${this.header}>
|
|
2492
2592
|
<div slot="cta">
|
|
2493
2593
|
<tems-button
|
|
2494
2594
|
type="primary"
|
|
2495
|
-
disabled=${!
|
|
2496
|
-
label=${
|
|
2595
|
+
disabled=${!s || l}
|
|
2596
|
+
label=${h("Create bundle")}
|
|
2497
2597
|
@click=${this._createFactBundle}
|
|
2498
2598
|
></tems-button>
|
|
2499
2599
|
</div>
|
|
@@ -2504,8 +2604,8 @@ let v = class extends b {
|
|
|
2504
2604
|
<div>
|
|
2505
2605
|
<tems-input
|
|
2506
2606
|
type="text"
|
|
2507
|
-
label=${
|
|
2508
|
-
placeholder=${
|
|
2607
|
+
label=${h("Bundle name")}
|
|
2608
|
+
placeholder=${h("Bundle name")}
|
|
2509
2609
|
required=""
|
|
2510
2610
|
.value=${this.bundleName}
|
|
2511
2611
|
@change=${this._updateBundleName}
|
|
@@ -2514,8 +2614,8 @@ let v = class extends b {
|
|
|
2514
2614
|
<div>
|
|
2515
2615
|
<tems-textarea
|
|
2516
2616
|
rows="4"
|
|
2517
|
-
label=${
|
|
2518
|
-
placeholder=${
|
|
2617
|
+
label=${h("Bundle description")}
|
|
2618
|
+
placeholder=${h("Bundle description")}
|
|
2519
2619
|
.value=${this.bundleDescription}
|
|
2520
2620
|
@change=${this._updateBundleDescription}
|
|
2521
2621
|
></tems-textarea>
|
|
@@ -2523,18 +2623,18 @@ let v = class extends b {
|
|
|
2523
2623
|
<div>
|
|
2524
2624
|
<tems-input
|
|
2525
2625
|
type="text"
|
|
2526
|
-
label=${
|
|
2527
|
-
placeholder=${
|
|
2528
|
-
hint=${
|
|
2626
|
+
label=${h("Language")}
|
|
2627
|
+
placeholder=${h("Language code (en, de, es, fr...)")}
|
|
2628
|
+
hint=${h("Comma-separated, eg.: en,de,es,fr)")}
|
|
2529
2629
|
required=""
|
|
2530
2630
|
.value=${this.bundleLanguage}
|
|
2531
2631
|
@change=${this._updateBundleLanguage}
|
|
2532
2632
|
></tems-input>
|
|
2533
2633
|
</div>
|
|
2534
2634
|
<div class="select">
|
|
2535
|
-
<tems-label label=${
|
|
2635
|
+
<tems-label label=${h("Access policy")}></tems-label>
|
|
2536
2636
|
<select @change=${this._selectBundleAccessPolicy}>
|
|
2537
|
-
${this.policyTemplates.map((o) =>
|
|
2637
|
+
${this.policyTemplates.map((o) => f`<option
|
|
2538
2638
|
value="${o.id}"
|
|
2539
2639
|
?selected="${o.id === this.bundleAccessPolicy}"
|
|
2540
2640
|
>
|
|
@@ -2543,9 +2643,9 @@ let v = class extends b {
|
|
|
2543
2643
|
</select>
|
|
2544
2644
|
</div>
|
|
2545
2645
|
<div class="select">
|
|
2546
|
-
<tems-label label=${
|
|
2646
|
+
<tems-label label=${h("Contract policy")}></tems-label>
|
|
2547
2647
|
<select @change=${this._selectBundleContractPolicy}>
|
|
2548
|
-
${this.policyTemplates.map((o) =>
|
|
2648
|
+
${this.policyTemplates.map((o) => f`<option
|
|
2549
2649
|
value="${o.id}"
|
|
2550
2650
|
?selected="${o.id === this.bundleContractPolicy}"
|
|
2551
2651
|
>
|
|
@@ -2553,10 +2653,10 @@ let v = class extends b {
|
|
|
2553
2653
|
</option>`)}
|
|
2554
2654
|
</select>
|
|
2555
2655
|
</div>
|
|
2556
|
-
${i > 0 ?
|
|
2656
|
+
${i > 0 ? f`<tems-division type="h4">
|
|
2557
2657
|
<div>
|
|
2558
|
-
${
|
|
2559
|
-
|
|
2658
|
+
${h(
|
|
2659
|
+
E`${i} selected fact${i > 1 ? "s" : ""}`
|
|
2560
2660
|
)}
|
|
2561
2661
|
</div></tems-division
|
|
2562
2662
|
>
|
|
@@ -2569,11 +2669,11 @@ let v = class extends b {
|
|
|
2569
2669
|
if (n.length > 3) {
|
|
2570
2670
|
const a = n.length - 3;
|
|
2571
2671
|
n.splice(3, a), n.push({
|
|
2572
|
-
name: `+${a} ${
|
|
2672
|
+
name: `+${a} ${h("more")}`,
|
|
2573
2673
|
type: "information"
|
|
2574
2674
|
});
|
|
2575
2675
|
}
|
|
2576
|
-
return
|
|
2676
|
+
return f`<tems-card-catalog
|
|
2577
2677
|
.object=${l}
|
|
2578
2678
|
.header=${o.name || l}
|
|
2579
2679
|
date=${o.updated_at || l}
|
|
@@ -2586,7 +2686,7 @@ let v = class extends b {
|
|
|
2586
2686
|
})}
|
|
2587
2687
|
</div>` : l}
|
|
2588
2688
|
</div>
|
|
2589
|
-
${
|
|
2689
|
+
${r.length > 0 || this.filterFactText ? f`<div>
|
|
2590
2690
|
<div>
|
|
2591
2691
|
<tems-search-bar
|
|
2592
2692
|
.displayFilters=${!1}
|
|
@@ -2601,8 +2701,8 @@ let v = class extends b {
|
|
|
2601
2701
|
@search=${this._searchFacts}
|
|
2602
2702
|
></tems-search-bar>
|
|
2603
2703
|
</div>
|
|
2604
|
-
${
|
|
2605
|
-
${
|
|
2704
|
+
${r.length > 0 ? f` <div class="card-grid card-grid-vertical">
|
|
2705
|
+
${r.map((o) => {
|
|
2606
2706
|
const n = o.categories.map(
|
|
2607
2707
|
(a) => ({
|
|
2608
2708
|
name: a.name,
|
|
@@ -2612,11 +2712,11 @@ let v = class extends b {
|
|
|
2612
2712
|
if (n.length > 3) {
|
|
2613
2713
|
const a = n.length - 3;
|
|
2614
2714
|
n.splice(3, a), n.push({
|
|
2615
|
-
name: `+${a} ${
|
|
2715
|
+
name: `+${a} ${h("more")}`,
|
|
2616
2716
|
type: "information"
|
|
2617
2717
|
});
|
|
2618
2718
|
}
|
|
2619
|
-
return
|
|
2719
|
+
return f`<tems-card-catalog
|
|
2620
2720
|
.object=${l}
|
|
2621
2721
|
.tags=${n}
|
|
2622
2722
|
.header=${o.name || l}
|
|
@@ -2629,12 +2729,12 @@ let v = class extends b {
|
|
|
2629
2729
|
></tems-card-catalog>`;
|
|
2630
2730
|
})}
|
|
2631
2731
|
</div>
|
|
2632
|
-
${
|
|
2732
|
+
${r.length < t.length ? f`<div
|
|
2633
2733
|
class="flex flex-row justify-content-space-between align-items-flex-end"
|
|
2634
2734
|
>
|
|
2635
2735
|
<div>
|
|
2636
|
-
${
|
|
2637
|
-
|
|
2736
|
+
${h(
|
|
2737
|
+
E`Displaying ${r.length} of ${t.length} result${t.length > 1 ? "s" : ""}`
|
|
2638
2738
|
)}
|
|
2639
2739
|
</div>
|
|
2640
2740
|
<div class="flex flex-row gap-400">
|
|
@@ -2642,16 +2742,16 @@ let v = class extends b {
|
|
|
2642
2742
|
@click=${this._showMoreResults}
|
|
2643
2743
|
type="primary"
|
|
2644
2744
|
size="sm"
|
|
2645
|
-
label=${
|
|
2745
|
+
label=${h("Show more results")}
|
|
2646
2746
|
></tems-button>
|
|
2647
2747
|
<tems-button
|
|
2648
2748
|
@click=${this._showAllResults}
|
|
2649
2749
|
type="primary"
|
|
2650
2750
|
size="sm"
|
|
2651
|
-
label=${
|
|
2751
|
+
label=${h("Show all results")}
|
|
2652
2752
|
></tems-button>
|
|
2653
2753
|
</div>
|
|
2654
|
-
</div>` : l}` :
|
|
2754
|
+
</div>` : l}` : f`${h("No results found")}
|
|
2655
2755
|
${this.filterFactText ? `for "${this.filterFactText}".` : ""}`}
|
|
2656
2756
|
</div>` : l}
|
|
2657
2757
|
</section>
|
|
@@ -2661,69 +2761,69 @@ let v = class extends b {
|
|
|
2661
2761
|
});
|
|
2662
2762
|
}
|
|
2663
2763
|
};
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
],
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
],
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
],
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
],
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
],
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
],
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
],
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
],
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
],
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
],
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
],
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
],
|
|
2701
|
-
var
|
|
2702
|
-
for (var
|
|
2703
|
-
(n = e[o]) && (
|
|
2704
|
-
return i &&
|
|
2764
|
+
b.styles = [Rt(Ir)];
|
|
2765
|
+
_([
|
|
2766
|
+
v({ attribute: "header", type: String })
|
|
2767
|
+
], b.prototype, "header", 2);
|
|
2768
|
+
_([
|
|
2769
|
+
v({ attribute: "facts-src", reflect: !0 })
|
|
2770
|
+
], b.prototype, "factsSrc", 2);
|
|
2771
|
+
_([
|
|
2772
|
+
m()
|
|
2773
|
+
], b.prototype, "selectedFacts", 2);
|
|
2774
|
+
_([
|
|
2775
|
+
m()
|
|
2776
|
+
], b.prototype, "bundleName", 2);
|
|
2777
|
+
_([
|
|
2778
|
+
m()
|
|
2779
|
+
], b.prototype, "bundleDescription", 2);
|
|
2780
|
+
_([
|
|
2781
|
+
m()
|
|
2782
|
+
], b.prototype, "bundleLanguage", 2);
|
|
2783
|
+
_([
|
|
2784
|
+
m()
|
|
2785
|
+
], b.prototype, "bundleAccessPolicy", 2);
|
|
2786
|
+
_([
|
|
2787
|
+
m()
|
|
2788
|
+
], b.prototype, "bundleContractPolicy", 2);
|
|
2789
|
+
_([
|
|
2790
|
+
m()
|
|
2791
|
+
], b.prototype, "filterFactText", 2);
|
|
2792
|
+
_([
|
|
2793
|
+
m()
|
|
2794
|
+
], b.prototype, "spliceLength", 2);
|
|
2795
|
+
_([
|
|
2796
|
+
m()
|
|
2797
|
+
], b.prototype, "dspConnector", 2);
|
|
2798
|
+
b = _([
|
|
2799
|
+
M("solid-fact-bundle-creation")
|
|
2800
|
+
], b);
|
|
2801
|
+
var Mr = Object.defineProperty, Br = Object.getOwnPropertyDescriptor, st = (e, t, r, i) => {
|
|
2802
|
+
for (var s = i > 1 ? void 0 : i ? Br(t, r) : t, o = e.length - 1, n; o >= 0; o--)
|
|
2803
|
+
(n = e[o]) && (s = (i ? n(t, r, s) : n(s)) || s);
|
|
2804
|
+
return i && s && Mr(t, r, s), s;
|
|
2705
2805
|
};
|
|
2706
|
-
let
|
|
2806
|
+
let N = class extends $ {
|
|
2707
2807
|
constructor() {
|
|
2708
2808
|
super(...arguments), this.header = "DS4GO Fact Bundling", this.search = [], this.resultCount = this.objects?.length || 0, this.cherryPickedProperties = [
|
|
2709
|
-
{ key: "created_at", value: "created_at", cast:
|
|
2710
|
-
{ key: "updated_at", value: "updated_at", cast:
|
|
2809
|
+
{ key: "created_at", value: "created_at", cast: I },
|
|
2810
|
+
{ key: "updated_at", value: "updated_at", cast: I },
|
|
2711
2811
|
{ key: "name", value: "name" },
|
|
2712
2812
|
{ key: "description", value: "description" }
|
|
2713
|
-
], this._getResource = new
|
|
2813
|
+
], this._getResource = new rt(this, {
|
|
2714
2814
|
task: async ([e, t]) => {
|
|
2715
2815
|
if (!(!e || !this.orbit || !this.noRouter && this.route && this.currentRoute && !this.route.startsWith(this.currentRoute))) {
|
|
2716
|
-
if (this.menuComponent.ready || await new Promise((
|
|
2816
|
+
if (this.menuComponent.ready || await new Promise((r) => {
|
|
2717
2817
|
this.menuComponent.addEventListener("user-ready", () => {
|
|
2718
|
-
|
|
2818
|
+
r(!0);
|
|
2719
2819
|
});
|
|
2720
2820
|
}), this.displayFiltering = !this.component.parameters.disableFiltering, !this.hasCachedDatas || this.oldDataSrc !== e) {
|
|
2721
2821
|
if (!e) return;
|
|
2722
2822
|
this.objects = await this._getProxyValue(e), this.hasCachedDatas = !0;
|
|
2723
2823
|
}
|
|
2724
2824
|
return this.oldDataSrc !== e && (this.oldDataSrc = e), Array.isArray(this.objects) || (this.objects = []), t ? this.object = this.objects.find(
|
|
2725
|
-
(
|
|
2726
|
-
) : this.dataSrc = e,
|
|
2825
|
+
(r) => r["@id"] === t
|
|
2826
|
+
) : this.dataSrc = e, S(this.objects, "name", "asc");
|
|
2727
2827
|
}
|
|
2728
2828
|
},
|
|
2729
2829
|
args: () => [
|
|
@@ -2738,14 +2838,14 @@ let F = class extends b {
|
|
|
2738
2838
|
return e?._originalResource?.hasType("ds4go:FactBundle") && (e.facts = await Promise.all(
|
|
2739
2839
|
(await e._originalResource["ldp:contains"]).map(
|
|
2740
2840
|
(t) => this._getProxyValue(t["@id"], !1, [
|
|
2741
|
-
{ key: "updated_at", value: "updated_at", cast:
|
|
2841
|
+
{ key: "updated_at", value: "updated_at", cast: I },
|
|
2742
2842
|
{ key: "name", value: "name" },
|
|
2743
2843
|
{ key: "description", value: "description" },
|
|
2744
2844
|
{
|
|
2745
2845
|
key: "categories",
|
|
2746
2846
|
value: "categories",
|
|
2747
2847
|
expand: !0,
|
|
2748
|
-
cast: (
|
|
2848
|
+
cast: (r) => S(r, "name")
|
|
2749
2849
|
},
|
|
2750
2850
|
{ key: "author", value: "author" },
|
|
2751
2851
|
{ key: "link", value: "link" },
|
|
@@ -2763,7 +2863,7 @@ let F = class extends b {
|
|
|
2763
2863
|
)), Promise.resolve(e);
|
|
2764
2864
|
}
|
|
2765
2865
|
async _afterAttach() {
|
|
2766
|
-
return
|
|
2866
|
+
return oe(this, {
|
|
2767
2867
|
keywords: ["factbundles"]
|
|
2768
2868
|
}), this.menuComponent = document.querySelector(
|
|
2769
2869
|
`[uniq="${this.orbit?.getComponent("menu")?.uniq}"]`
|
|
@@ -2781,10 +2881,10 @@ let F = class extends b {
|
|
|
2781
2881
|
else {
|
|
2782
2882
|
const t = e.detail["@type"]?.at(-1) ?? e.detail["@type"];
|
|
2783
2883
|
if (t) {
|
|
2784
|
-
const
|
|
2884
|
+
const r = window.orbit?.components?.filter(
|
|
2785
2885
|
(i) => i?.routeAttributes?.["rdf-type"] === t
|
|
2786
2886
|
);
|
|
2787
|
-
|
|
2887
|
+
r?.[0]?.route && L(r[0]?.route, e.detail["@id"]);
|
|
2788
2888
|
}
|
|
2789
2889
|
}
|
|
2790
2890
|
}
|
|
@@ -2802,15 +2902,15 @@ let F = class extends b {
|
|
|
2802
2902
|
}
|
|
2803
2903
|
render() {
|
|
2804
2904
|
return this.gatekeeper() || this._getResource.render({
|
|
2805
|
-
pending: () =>
|
|
2905
|
+
pending: () => f`<solid-loader></solid-loader>`,
|
|
2806
2906
|
error: (e) => (console.warn("[solid-fact-bundle] Task error:", e), l),
|
|
2807
|
-
complete: (e) =>
|
|
2907
|
+
complete: (e) => f`<tems-viewport>
|
|
2808
2908
|
<tems-header slot="header" heading=${this.header}>
|
|
2809
2909
|
<div slot="cta">
|
|
2810
2910
|
<tems-button
|
|
2811
2911
|
type="primary"
|
|
2812
2912
|
disabled=${!this.bundleCreationComponent?.route || l}
|
|
2813
|
-
label=${
|
|
2913
|
+
label=${h("Create a bundle")}
|
|
2814
2914
|
@click=${this._goToBundleCreation}
|
|
2815
2915
|
></tems-button>
|
|
2816
2916
|
</div>
|
|
@@ -2830,7 +2930,7 @@ let F = class extends b {
|
|
|
2830
2930
|
@clicked=${this._openModal}
|
|
2831
2931
|
@result-count=${this._resultCountUpdate}
|
|
2832
2932
|
></ds4go-fact-bundle-holder>
|
|
2833
|
-
${this.object ?
|
|
2933
|
+
${this.object ? f`<div
|
|
2834
2934
|
class="modal"
|
|
2835
2935
|
@click=${this._closeModalFromBackground}
|
|
2836
2936
|
>
|
|
@@ -2844,7 +2944,7 @@ let F = class extends b {
|
|
|
2844
2944
|
});
|
|
2845
2945
|
}
|
|
2846
2946
|
};
|
|
2847
|
-
|
|
2947
|
+
N.styles = tt`
|
|
2848
2948
|
.modal {
|
|
2849
2949
|
position: fixed;
|
|
2850
2950
|
top: 0;
|
|
@@ -2858,30 +2958,30 @@ F.styles = lt`
|
|
|
2858
2958
|
align-items: center;
|
|
2859
2959
|
}
|
|
2860
2960
|
`;
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
],
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
],
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
],
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
],
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
],
|
|
2876
|
-
const
|
|
2961
|
+
st([
|
|
2962
|
+
v({ attribute: "header", type: String })
|
|
2963
|
+
], N.prototype, "header", 2);
|
|
2964
|
+
st([
|
|
2965
|
+
m()
|
|
2966
|
+
], N.prototype, "search", 2);
|
|
2967
|
+
st([
|
|
2968
|
+
m()
|
|
2969
|
+
], N.prototype, "resultCount", 2);
|
|
2970
|
+
st([
|
|
2971
|
+
m()
|
|
2972
|
+
], N.prototype, "bundleCreationComponent", 2);
|
|
2973
|
+
N = st([
|
|
2974
|
+
M("solid-fact-bundle")
|
|
2975
|
+
], N);
|
|
2976
|
+
const qr = {
|
|
2877
2977
|
s20acf344316637a0: "All Catalogs",
|
|
2878
|
-
s67269ab6dc51ec41:
|
|
2978
|
+
s67269ab6dc51ec41: E`Error while loading catalog ${0}`,
|
|
2879
2979
|
s0b88896b7338837d: "All Datasets",
|
|
2880
2980
|
s541d9cd11a5bc840: "Datasets from",
|
|
2881
2981
|
s01ceffa02fa6bd7f: "All Sectors",
|
|
2882
2982
|
s4aaac20ff7887391: "Catalogs available in",
|
|
2883
2983
|
sa89a60c3e1230cec: "Root Authority",
|
|
2884
|
-
se5784a16a6799dad:
|
|
2984
|
+
se5784a16a6799dad: E`Back to ${0}`,
|
|
2885
2985
|
s6665daa6d6147db0: "No data available, data source may be temporarily unavailable.",
|
|
2886
2986
|
sc16e00a7a8b2fde2: "Back",
|
|
2887
2987
|
s2c8189544e3ea679: "Retry",
|
|
@@ -2894,9 +2994,9 @@ const Is = {
|
|
|
2894
2994
|
s21fb127cabcd5617: "Comma-separated, eg.: en,de,es,fr)",
|
|
2895
2995
|
sa6ef22f7e7e95e2b: "Access policy",
|
|
2896
2996
|
s6de61424bb681993: "Contract policy",
|
|
2897
|
-
sac1b0231875ff056:
|
|
2997
|
+
sac1b0231875ff056: E`${0} selected fact${1}`,
|
|
2898
2998
|
s0d1be7a2c400c080: "more",
|
|
2899
|
-
s8272d3578b7c78d5:
|
|
2999
|
+
s8272d3578b7c78d5: E`Displaying ${0} of ${1} result${2}`,
|
|
2900
3000
|
sa40e7f4f2a43e2f7: "Show more results",
|
|
2901
3001
|
sacf246e0fa11730d: "Show all results",
|
|
2902
3002
|
s9094c0cde8fb5058: "No results found",
|
|
@@ -2906,20 +3006,20 @@ const Is = {
|
|
|
2906
3006
|
s4979bd417e7c8052: "All facts in this bundle",
|
|
2907
3007
|
s57a40de45f324b96: "Bundle created on",
|
|
2908
3008
|
sd3682395cf86f913: "Bundle updated on"
|
|
2909
|
-
},
|
|
3009
|
+
}, Hr = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2910
3010
|
__proto__: null,
|
|
2911
|
-
templates:
|
|
2912
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
3011
|
+
templates: qr
|
|
3012
|
+
}, Symbol.toStringTag, { value: "Module" })), zr = "en", fe = [
|
|
2913
3013
|
"en"
|
|
2914
|
-
],
|
|
2915
|
-
|
|
3014
|
+
], Vr = /* @__PURE__ */ Object.assign({ "../../generated/locales/en.ts": Hr }), Wr = new Map(
|
|
3015
|
+
fe.map((e) => [
|
|
2916
3016
|
e,
|
|
2917
|
-
|
|
3017
|
+
Vr[`../../generated/locales/${e}.ts`]
|
|
2918
3018
|
])
|
|
2919
|
-
), { getLocale:
|
|
2920
|
-
sourceLocale:
|
|
2921
|
-
targetLocales:
|
|
2922
|
-
loadLocale: async (e) =>
|
|
3019
|
+
), { getLocale: Qt, setLocale: Yt } = _r({
|
|
3020
|
+
sourceLocale: zr,
|
|
3021
|
+
targetLocales: fe,
|
|
3022
|
+
loadLocale: async (e) => Wr.get(e)
|
|
2923
3023
|
});
|
|
2924
|
-
window.getLocale = window.getLocale ? window.getLocale.push(
|
|
2925
|
-
window.setLocale = window.setLocale ? window.setLocale.push(
|
|
3024
|
+
window.getLocale = window.getLocale ? window.getLocale.push(Qt) : [Qt];
|
|
3025
|
+
window.setLocale = window.setLocale ? window.setLocale.push(Yt) : [Yt];
|