@piveau/piveau-hub-ui-modules 4.9.4 → 4.9.6
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/dist/datasetDetails/features/DatasetDetailsPages.vue.d.ts +3 -1
- package/dist/datasetDetails/features/DatasetDetailsPages.vue.mjs +370 -230
- package/dist/datasetDetails/features/DatasetDetailsPages.vue.mjs.map +1 -1
- package/dist/datasetDetails/properties/DataserviceDetailsProperties.vue.d.ts +9 -0
- package/dist/datasetDetails/properties/DataserviceDetailsProperties.vue.mjs +9 -9
- package/dist/datasetDetails/properties/DataserviceDetailsProperties.vue.mjs.map +1 -1
- package/dist/datasetDetails/properties/DataserviceDetailsProperty.vue.mjs +4 -4
- package/dist/datasetDetails/properties/DataserviceDetailsProperty.vue.mjs.map +1 -1
- package/dist/datasetDetails/properties/ValuesList.vue.mjs +14 -14
- package/dist/datasetDetails/properties/ValuesList.vue.mjs.map +1 -1
- package/dist/datasetDetails/properties/specification.d.ts +10 -1
- package/dist/datasetDetails/properties/specification.mjs +18 -9
- package/dist/datasetDetails/properties/specification.mjs.map +1 -1
- package/dist/piveau-hub-ui-modules.css +1 -1
- package/dist/store/modules/dataserviceDetailsStore.d.ts +4 -0
- package/dist/store/modules/dataserviceDetailsStore.mjs +59 -51
- package/dist/store/modules/dataserviceDetailsStore.mjs.map +1 -1
- package/dist/utils/helpers.mjs +2 -2
- package/dist/utils/helpers.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { truncate as
|
|
3
|
-
import { isNil as
|
|
4
|
-
import
|
|
5
|
-
import { mapGetters as
|
|
6
|
-
import
|
|
7
|
-
import { resolveComponent as
|
|
1
|
+
import w from "jquery";
|
|
2
|
+
import { truncate as C, getTranslationFor as y } from "../../utils/helpers.mjs";
|
|
3
|
+
import { isNil as h, has as b } from "lodash-es";
|
|
4
|
+
import V from "../../widgets/AppLink.vue.mjs";
|
|
5
|
+
import { mapGetters as T } from "vuex";
|
|
6
|
+
import I from "../../PvBadge/PvBadge.vue.mjs";
|
|
7
|
+
import { resolveComponent as p, openBlock as l, createElementBlock as a, createVNode as P, createTextVNode as o, createElementVNode as s, toDisplayString as d, normalizeClass as m, Fragment as M, renderList as F, withKeys as D, withModifiers as O, createBlock as x, withCtx as A, createCommentVNode as u } from "vue";
|
|
8
8
|
import "./DatasetDetailsPages.vue2.mjs";
|
|
9
|
-
import
|
|
10
|
-
const
|
|
9
|
+
import S from "../../_virtual/_plugin-vue_export-helper.mjs";
|
|
10
|
+
const Z = {
|
|
11
11
|
name: "DatasetDetailsPages",
|
|
12
12
|
components: {
|
|
13
13
|
// DatasetDetailsFeatureHeader,
|
|
14
|
-
AppLink:
|
|
15
|
-
PvBadge:
|
|
14
|
+
AppLink: V,
|
|
15
|
+
PvBadge: I
|
|
16
16
|
},
|
|
17
17
|
props: {
|
|
18
18
|
pages: Object,
|
|
@@ -28,20 +28,21 @@ const S = {
|
|
|
28
28
|
visibleCount: 8,
|
|
29
29
|
incrementSize: 10,
|
|
30
30
|
initialVisibleCount: 8,
|
|
31
|
+
sortField: "title",
|
|
31
32
|
sortOrder: "asc"
|
|
32
33
|
};
|
|
33
34
|
},
|
|
34
35
|
computed: {
|
|
35
|
-
...
|
|
36
|
+
...T("datasetDetails", [
|
|
36
37
|
"getPages"
|
|
37
38
|
]),
|
|
38
39
|
sortedAndFilteredPages() {
|
|
39
40
|
if (!this.getPages)
|
|
40
41
|
return [];
|
|
41
42
|
let e = [...this.getPages];
|
|
42
|
-
return this.sortOrder && e.sort((t,
|
|
43
|
-
const f = this.
|
|
44
|
-
return this.sortOrder === "asc" ?
|
|
43
|
+
return this.sortOrder && e.sort((t, v) => {
|
|
44
|
+
const f = this.getPageSortValue(t), n = this.getPageSortValue(v), r = typeof f == "number" ? f - n : f.localeCompare(n);
|
|
45
|
+
return this.sortOrder === "asc" ? r : -r;
|
|
45
46
|
}), e;
|
|
46
47
|
},
|
|
47
48
|
visiblePages() {
|
|
@@ -74,9 +75,9 @@ const S = {
|
|
|
74
75
|
}
|
|
75
76
|
},
|
|
76
77
|
methods: {
|
|
77
|
-
truncate:
|
|
78
|
-
|
|
79
|
-
this.sortOrder ===
|
|
78
|
+
truncate: C,
|
|
79
|
+
toggleSort(e) {
|
|
80
|
+
this.sortOrder = this.sortField === e && this.sortOrder === "asc" ? "desc" : "asc", this.sortField = e, this.expandedItems = [];
|
|
80
81
|
},
|
|
81
82
|
togglePageDescription(e) {
|
|
82
83
|
const t = this.expandedPageDescriptions.indexOf(e);
|
|
@@ -95,25 +96,28 @@ const S = {
|
|
|
95
96
|
return this.expandedPageDescriptions.includes(e);
|
|
96
97
|
},
|
|
97
98
|
pageDescriptionIsExpandable(e) {
|
|
98
|
-
return
|
|
99
|
+
return h(e) ? !1 : e.length > this.pages.descriptionMaxChars;
|
|
99
100
|
},
|
|
100
101
|
pageIsExpanded(e) {
|
|
101
102
|
return this.expandedPages.includes(e);
|
|
102
103
|
},
|
|
103
104
|
getPageFormat(e) {
|
|
104
|
-
return
|
|
105
|
+
return b(e, "format.label") && !h(e.format.label) ? e.format.label : "UNKNOWN";
|
|
105
106
|
},
|
|
106
107
|
pageFormatTruncated(e) {
|
|
107
108
|
return this.getPageFormat(e).length > 10;
|
|
108
109
|
},
|
|
109
110
|
getPageTitle(e) {
|
|
110
|
-
return e.title ?
|
|
111
|
+
return e.title ? y(e.title, this.$route.query.locale, this.getLanguages) : C(e.resource, 50);
|
|
111
112
|
},
|
|
112
113
|
getPageDescription(e) {
|
|
113
|
-
return
|
|
114
|
+
return b(e, "description") && !h(e.description) ? y(e.description, this.$route.query.locale, this.getLanguages) : "";
|
|
114
115
|
},
|
|
115
116
|
getPageModified(e) {
|
|
116
|
-
return
|
|
117
|
+
return b(e, "modified") && !h(e.modified) ? e.modified : b(e, "issued") && !h(e.issued) ? e.issued : null;
|
|
118
|
+
},
|
|
119
|
+
getPageSortValue(e) {
|
|
120
|
+
return this.sortField === "format" ? String(this.getPageFormat(e) || "").toLowerCase() : this.sortField === "updated" ? new Date(this.getPageModified(e)).getTime() || 0 : String(this.getPageTitle(e) || "").toLowerCase();
|
|
117
121
|
},
|
|
118
122
|
formatDate(e) {
|
|
119
123
|
if (!e)
|
|
@@ -146,8 +150,8 @@ const S = {
|
|
|
146
150
|
});
|
|
147
151
|
},
|
|
148
152
|
initTooltips() {
|
|
149
|
-
typeof
|
|
150
|
-
|
|
153
|
+
typeof w < "u" && (w(".tooltip").remove(), w('[data-toggle="tooltip"]').tooltip("dispose"), this.$nextTick(() => {
|
|
154
|
+
w('[data-toggle="tooltip"]').tooltip({
|
|
151
155
|
container: "body",
|
|
152
156
|
html: !0
|
|
153
157
|
});
|
|
@@ -161,149 +165,281 @@ const S = {
|
|
|
161
165
|
this.initTooltips();
|
|
162
166
|
},
|
|
163
167
|
beforeUnmount() {
|
|
164
|
-
typeof
|
|
168
|
+
typeof w < "u" && (w(".tooltip").remove(), w('[data-toggle="tooltip"]').tooltip("dispose"));
|
|
165
169
|
}
|
|
166
|
-
},
|
|
170
|
+
}, N = { class: "dsd-feature d-flex flex-column mt-3" }, E = { key: 0 }, G = { class: "mobile-sort-controls d-md-none mb-3" }, z = ["aria-label"], K = { class: "sort-arrows" }, U = ["aria-label"], q = { class: "sort-arrows" }, H = ["aria-label"], j = { class: "sort-arrows" }, W = {
|
|
167
171
|
class: "table-responsive-wrapper d-none d-md-block mt-3",
|
|
168
172
|
"data-cy": "documentation"
|
|
169
|
-
},
|
|
173
|
+
}, X = { class: "pages-wrapper" }, J = { class: "pages-grid" }, Q = { class: "grid-header" }, R = { class: "grid-col title-col" }, Y = ["aria-label"], $ = { class: "sort-arrows" }, _ = { class: "grid-col format-col" }, tt = ["aria-label"], et = { class: "sort-arrows" }, st = { class: "grid-col date-col" }, ot = ["aria-label"], rt = { class: "sort-arrows" }, it = { class: "grid-col actions-col" }, lt = { class: "grid-row page-header" }, at = { class: "grid-col title-col" }, dt = { class: "title-with-arrow" }, nt = ["id", "aria-expanded", "aria-controls", "onClick", "onKeydown"], gt = { class: "m-0 page-title" }, ut = { class: "grid-col format-col" }, mt = ["data-toggle", "data-placement", "title"], wt = { class: "grid-col date-col" }, vt = { class: "grid-col actions-col" }, ht = ["id", "aria-labelledby"], ft = { class: "expanded-details" }, bt = { class: "details-list" }, kt = { key: 0 }, pt = { key: 1 }, Pt = { key: 2 }, ct = { key: 3 }, Ct = ["href"], yt = {
|
|
170
174
|
key: 0,
|
|
171
175
|
class: "grid-row empty-state"
|
|
172
|
-
},
|
|
176
|
+
}, Mt = { class: "grid-col-full text-center text-muted" }, Ft = {
|
|
173
177
|
key: 0,
|
|
174
178
|
class: "fade-overlay"
|
|
175
|
-
},
|
|
179
|
+
}, Dt = { class: "pages-cards d-md-none" }, At = ["onClick"], Lt = { class: "card-title-section" }, Bt = { class: "page-title" }, Vt = { class: "card-meta" }, Tt = { class: "badge badge-secondary" }, It = { class: "date" }, Ot = { class: "card-actions" }, xt = {
|
|
176
180
|
key: 0,
|
|
177
181
|
class: "card-expanded-content"
|
|
178
|
-
},
|
|
182
|
+
}, St = { class: "expanded-details" }, Zt = { class: "details-list" }, Nt = { key: 0 }, Et = { key: 1 }, Gt = { key: 2 }, zt = { key: 3 }, Kt = ["href"], Ut = {
|
|
179
183
|
key: 0,
|
|
180
184
|
class: "empty-state-card"
|
|
181
|
-
},
|
|
185
|
+
}, qt = { class: "text-center text-muted" }, Ht = {
|
|
182
186
|
key: 0,
|
|
183
187
|
class: "show-all-container"
|
|
184
188
|
};
|
|
185
|
-
function
|
|
186
|
-
const
|
|
187
|
-
return l(),
|
|
188
|
-
|
|
189
|
+
function jt(e, t, v, f, n, r) {
|
|
190
|
+
const L = p("dataset-details-feature-header"), B = p("PvBadge"), c = p("app-link");
|
|
191
|
+
return l(), a("div", N, [
|
|
192
|
+
P(L, {
|
|
189
193
|
title: `${e.$t("message.metadata.documentations")} (${e.getPages ? e.getPages.length.toLocaleString("fi") : 0})`,
|
|
190
|
-
arrowDown: !
|
|
194
|
+
arrowDown: !v.pages.isVisible,
|
|
191
195
|
tag: "documentation-toggle",
|
|
192
|
-
onClick:
|
|
196
|
+
onClick: r.togglePage
|
|
193
197
|
}, null, 8, ["title", "arrowDown", "onClick"]),
|
|
194
|
-
t[
|
|
195
|
-
|
|
196
|
-
s("div",
|
|
198
|
+
t[77] || (t[77] = o()),
|
|
199
|
+
v.pages.isVisible ? (l(), a("div", E, [
|
|
200
|
+
s("div", G, [
|
|
197
201
|
s("button", {
|
|
198
202
|
class: "sort-button",
|
|
199
|
-
onClick: t[0] || (t[0] = (
|
|
203
|
+
onClick: t[0] || (t[0] = (i) => r.toggleSort("title")),
|
|
200
204
|
"aria-label": e.$t("message.metadata.title") + " sortieren"
|
|
201
205
|
}, [
|
|
202
|
-
t
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
(l(), d("svg", {
|
|
207
|
-
class: m(["sort-arrow sort-arrow-up", { active: u.sortOrder === "asc" }]),
|
|
206
|
+
o(d(e.$t("message.metadata.title")) + " ", 1),
|
|
207
|
+
s("div", K, [
|
|
208
|
+
(l(), a("svg", {
|
|
209
|
+
class: m(["sort-arrow sort-arrow-up", { active: n.sortField === "title" && n.sortOrder === "asc" }]),
|
|
208
210
|
width: "10",
|
|
209
211
|
height: "8",
|
|
210
212
|
viewBox: "0 0 10 8"
|
|
211
|
-
}, [...t[
|
|
213
|
+
}, [...t[9] || (t[9] = [
|
|
212
214
|
s("path", {
|
|
213
215
|
d: "M5 1 L9 6 L1 6 Z",
|
|
214
216
|
fill: "currentColor"
|
|
215
217
|
}, null, -1)
|
|
216
218
|
])], 2)),
|
|
217
|
-
t[
|
|
218
|
-
(l(),
|
|
219
|
-
class: m(["sort-arrow sort-arrow-down", { active:
|
|
219
|
+
t[11] || (t[11] = o()),
|
|
220
|
+
(l(), a("svg", {
|
|
221
|
+
class: m(["sort-arrow sort-arrow-down", { active: n.sortField === "title" && n.sortOrder === "desc" }]),
|
|
220
222
|
width: "10",
|
|
221
223
|
height: "8",
|
|
222
224
|
viewBox: "0 0 10 8"
|
|
223
|
-
}, [...t[
|
|
225
|
+
}, [...t[10] || (t[10] = [
|
|
224
226
|
s("path", {
|
|
225
227
|
d: "M5 7 L1 2 L9 2 Z",
|
|
226
228
|
fill: "currentColor"
|
|
227
229
|
}, null, -1)
|
|
228
230
|
])], 2))
|
|
229
231
|
])
|
|
230
|
-
], 8,
|
|
232
|
+
], 8, z),
|
|
233
|
+
t[18] || (t[18] = o()),
|
|
234
|
+
s("button", {
|
|
235
|
+
class: "sort-button",
|
|
236
|
+
onClick: t[1] || (t[1] = (i) => r.toggleSort("format")),
|
|
237
|
+
"aria-label": e.$t("message.metadata.format") + " sortieren"
|
|
238
|
+
}, [
|
|
239
|
+
o(d(e.$t("message.metadata.format")) + " ", 1),
|
|
240
|
+
s("div", q, [
|
|
241
|
+
(l(), a("svg", {
|
|
242
|
+
class: m(["sort-arrow sort-arrow-up", { active: n.sortField === "format" && n.sortOrder === "asc" }]),
|
|
243
|
+
width: "10",
|
|
244
|
+
height: "8",
|
|
245
|
+
viewBox: "0 0 10 8"
|
|
246
|
+
}, [...t[12] || (t[12] = [
|
|
247
|
+
s("path", {
|
|
248
|
+
d: "M5 1 L9 6 L1 6 Z",
|
|
249
|
+
fill: "currentColor"
|
|
250
|
+
}, null, -1)
|
|
251
|
+
])], 2)),
|
|
252
|
+
t[14] || (t[14] = o()),
|
|
253
|
+
(l(), a("svg", {
|
|
254
|
+
class: m(["sort-arrow sort-arrow-down", { active: n.sortField === "format" && n.sortOrder === "desc" }]),
|
|
255
|
+
width: "10",
|
|
256
|
+
height: "8",
|
|
257
|
+
viewBox: "0 0 10 8"
|
|
258
|
+
}, [...t[13] || (t[13] = [
|
|
259
|
+
s("path", {
|
|
260
|
+
d: "M5 7 L1 2 L9 2 Z",
|
|
261
|
+
fill: "currentColor"
|
|
262
|
+
}, null, -1)
|
|
263
|
+
])], 2))
|
|
264
|
+
])
|
|
265
|
+
], 8, U),
|
|
266
|
+
t[19] || (t[19] = o()),
|
|
267
|
+
s("button", {
|
|
268
|
+
class: "sort-button",
|
|
269
|
+
onClick: t[2] || (t[2] = (i) => r.toggleSort("updated")),
|
|
270
|
+
"aria-label": e.$t("message.metadata.updated") + " sortieren"
|
|
271
|
+
}, [
|
|
272
|
+
o(d(e.$t("message.metadata.updated")) + " ", 1),
|
|
273
|
+
s("div", j, [
|
|
274
|
+
(l(), a("svg", {
|
|
275
|
+
class: m(["sort-arrow sort-arrow-up", { active: n.sortField === "updated" && n.sortOrder === "asc" }]),
|
|
276
|
+
width: "10",
|
|
277
|
+
height: "8",
|
|
278
|
+
viewBox: "0 0 10 8"
|
|
279
|
+
}, [...t[15] || (t[15] = [
|
|
280
|
+
s("path", {
|
|
281
|
+
d: "M5 1 L9 6 L1 6 Z",
|
|
282
|
+
fill: "currentColor"
|
|
283
|
+
}, null, -1)
|
|
284
|
+
])], 2)),
|
|
285
|
+
t[17] || (t[17] = o()),
|
|
286
|
+
(l(), a("svg", {
|
|
287
|
+
class: m(["sort-arrow sort-arrow-down", { active: n.sortField === "updated" && n.sortOrder === "desc" }]),
|
|
288
|
+
width: "10",
|
|
289
|
+
height: "8",
|
|
290
|
+
viewBox: "0 0 10 8"
|
|
291
|
+
}, [...t[16] || (t[16] = [
|
|
292
|
+
s("path", {
|
|
293
|
+
d: "M5 7 L1 2 L9 2 Z",
|
|
294
|
+
fill: "currentColor"
|
|
295
|
+
}, null, -1)
|
|
296
|
+
])], 2))
|
|
297
|
+
])
|
|
298
|
+
], 8, H)
|
|
231
299
|
]),
|
|
232
|
-
t[
|
|
233
|
-
s("div",
|
|
234
|
-
s("div",
|
|
235
|
-
s("div",
|
|
236
|
-
s("div",
|
|
237
|
-
s("div",
|
|
300
|
+
t[74] || (t[74] = o()),
|
|
301
|
+
s("div", W, [
|
|
302
|
+
s("div", X, [
|
|
303
|
+
s("div", J, [
|
|
304
|
+
s("div", Q, [
|
|
305
|
+
s("div", R, [
|
|
238
306
|
s("button", {
|
|
239
307
|
class: "sort-button",
|
|
240
|
-
onClick: t[
|
|
308
|
+
onClick: t[3] || (t[3] = (i) => r.toggleSort("title")),
|
|
241
309
|
"aria-label": e.$t("message.metadata.title") + " sortieren"
|
|
242
310
|
}, [
|
|
243
|
-
|
|
244
|
-
s("div",
|
|
245
|
-
(l(),
|
|
246
|
-
class: m(["sort-arrow sort-arrow-up", { active:
|
|
311
|
+
o(d(e.$t("message.metadata.title")) + " ", 1),
|
|
312
|
+
s("div", $, [
|
|
313
|
+
(l(), a("svg", {
|
|
314
|
+
class: m(["sort-arrow sort-arrow-up", { active: n.sortField === "title" && n.sortOrder === "asc" }]),
|
|
247
315
|
width: "10",
|
|
248
316
|
height: "8",
|
|
249
317
|
viewBox: "0 0 10 8"
|
|
250
|
-
}, [...t[
|
|
318
|
+
}, [...t[20] || (t[20] = [
|
|
251
319
|
s("path", {
|
|
252
320
|
d: "M5 1 L9 6 L1 6 Z",
|
|
253
321
|
fill: "currentColor"
|
|
254
322
|
}, null, -1)
|
|
255
323
|
])], 2)),
|
|
256
|
-
t[
|
|
257
|
-
(l(),
|
|
258
|
-
class: m(["sort-arrow sort-arrow-down", { active:
|
|
324
|
+
t[22] || (t[22] = o()),
|
|
325
|
+
(l(), a("svg", {
|
|
326
|
+
class: m(["sort-arrow sort-arrow-down", { active: n.sortField === "title" && n.sortOrder === "desc" }]),
|
|
259
327
|
width: "10",
|
|
260
328
|
height: "8",
|
|
261
329
|
viewBox: "0 0 10 8"
|
|
262
|
-
}, [...t[
|
|
330
|
+
}, [...t[21] || (t[21] = [
|
|
263
331
|
s("path", {
|
|
264
332
|
d: "M5 7 L1 2 L9 2 Z",
|
|
265
333
|
fill: "currentColor"
|
|
266
334
|
}, null, -1)
|
|
267
335
|
])], 2))
|
|
268
336
|
])
|
|
269
|
-
], 8,
|
|
337
|
+
], 8, Y)
|
|
270
338
|
]),
|
|
271
|
-
t[
|
|
272
|
-
s("div",
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
339
|
+
t[29] || (t[29] = o()),
|
|
340
|
+
s("div", _, [
|
|
341
|
+
s("button", {
|
|
342
|
+
class: "sort-button",
|
|
343
|
+
onClick: t[4] || (t[4] = (i) => r.toggleSort("format")),
|
|
344
|
+
"aria-label": e.$t("message.metadata.format") + " sortieren"
|
|
345
|
+
}, [
|
|
346
|
+
o(d(e.$t("message.metadata.format")) + " ", 1),
|
|
347
|
+
s("div", et, [
|
|
348
|
+
(l(), a("svg", {
|
|
349
|
+
class: m(["sort-arrow sort-arrow-up", { active: n.sortField === "format" && n.sortOrder === "asc" }]),
|
|
350
|
+
width: "10",
|
|
351
|
+
height: "8",
|
|
352
|
+
viewBox: "0 0 10 8"
|
|
353
|
+
}, [...t[23] || (t[23] = [
|
|
354
|
+
s("path", {
|
|
355
|
+
d: "M5 1 L9 6 L1 6 Z",
|
|
356
|
+
fill: "currentColor"
|
|
357
|
+
}, null, -1)
|
|
358
|
+
])], 2)),
|
|
359
|
+
t[25] || (t[25] = o()),
|
|
360
|
+
(l(), a("svg", {
|
|
361
|
+
class: m(["sort-arrow sort-arrow-down", { active: n.sortField === "format" && n.sortOrder === "desc" }]),
|
|
362
|
+
width: "10",
|
|
363
|
+
height: "8",
|
|
364
|
+
viewBox: "0 0 10 8"
|
|
365
|
+
}, [...t[24] || (t[24] = [
|
|
366
|
+
s("path", {
|
|
367
|
+
d: "M5 7 L1 2 L9 2 Z",
|
|
368
|
+
fill: "currentColor"
|
|
369
|
+
}, null, -1)
|
|
370
|
+
])], 2))
|
|
371
|
+
])
|
|
372
|
+
], 8, tt)
|
|
373
|
+
]),
|
|
374
|
+
t[30] || (t[30] = o()),
|
|
375
|
+
s("div", st, [
|
|
376
|
+
s("button", {
|
|
377
|
+
class: "sort-button",
|
|
378
|
+
onClick: t[5] || (t[5] = (i) => r.toggleSort("updated")),
|
|
379
|
+
"aria-label": e.$t("message.metadata.updated") + " sortieren"
|
|
380
|
+
}, [
|
|
381
|
+
o(d(e.$t("message.metadata.updated")) + " ", 1),
|
|
382
|
+
s("div", rt, [
|
|
383
|
+
(l(), a("svg", {
|
|
384
|
+
class: m(["sort-arrow sort-arrow-up", { active: n.sortField === "updated" && n.sortOrder === "asc" }]),
|
|
385
|
+
width: "10",
|
|
386
|
+
height: "8",
|
|
387
|
+
viewBox: "0 0 10 8"
|
|
388
|
+
}, [...t[26] || (t[26] = [
|
|
389
|
+
s("path", {
|
|
390
|
+
d: "M5 1 L9 6 L1 6 Z",
|
|
391
|
+
fill: "currentColor"
|
|
392
|
+
}, null, -1)
|
|
393
|
+
])], 2)),
|
|
394
|
+
t[28] || (t[28] = o()),
|
|
395
|
+
(l(), a("svg", {
|
|
396
|
+
class: m(["sort-arrow sort-arrow-down", { active: n.sortField === "updated" && n.sortOrder === "desc" }]),
|
|
397
|
+
width: "10",
|
|
398
|
+
height: "8",
|
|
399
|
+
viewBox: "0 0 10 8"
|
|
400
|
+
}, [...t[27] || (t[27] = [
|
|
401
|
+
s("path", {
|
|
402
|
+
d: "M5 7 L1 2 L9 2 Z",
|
|
403
|
+
fill: "currentColor"
|
|
404
|
+
}, null, -1)
|
|
405
|
+
])], 2))
|
|
406
|
+
])
|
|
407
|
+
], 8, ot)
|
|
408
|
+
]),
|
|
409
|
+
t[31] || (t[31] = o()),
|
|
410
|
+
s("div", it, d(e.$t("message.dataupload.menu.actions")), 1),
|
|
411
|
+
t[32] || (t[32] = o()),
|
|
412
|
+
t[33] || (t[33] = s("div", { class: "grid-col likes-col" }, null, -1))
|
|
277
413
|
]),
|
|
278
|
-
t[
|
|
279
|
-
(l(!0),
|
|
280
|
-
key:
|
|
281
|
-
class: m(["page-item", { "accordion-open":
|
|
414
|
+
t[50] || (t[50] = o()),
|
|
415
|
+
(l(!0), a(M, null, F(r.visiblePages, (i, g) => (l(), a("div", {
|
|
416
|
+
key: g,
|
|
417
|
+
class: m(["page-item", { "accordion-open": n.expandedItems[g] }])
|
|
282
418
|
}, [
|
|
283
|
-
s("div",
|
|
284
|
-
s("div",
|
|
285
|
-
s("div",
|
|
419
|
+
s("div", lt, [
|
|
420
|
+
s("div", at, [
|
|
421
|
+
s("div", dt, [
|
|
286
422
|
s("button", {
|
|
287
|
-
id: `accordion-button-${
|
|
423
|
+
id: `accordion-button-${g}`,
|
|
288
424
|
class: "accordion-title",
|
|
289
|
-
"aria-expanded":
|
|
290
|
-
"aria-controls": `accordion-content-${
|
|
425
|
+
"aria-expanded": n.expandedItems[g] || !1,
|
|
426
|
+
"aria-controls": `accordion-content-${g}`,
|
|
291
427
|
type: "button",
|
|
292
|
-
onClick: (k) =>
|
|
428
|
+
onClick: (k) => r.toggleAccordion(g),
|
|
293
429
|
onKeydown: [
|
|
294
|
-
|
|
295
|
-
|
|
430
|
+
D((k) => r.toggleAccordion(g), ["enter"]),
|
|
431
|
+
D(O((k) => r.toggleAccordion(g), ["prevent"]), ["space"])
|
|
296
432
|
]
|
|
297
433
|
}, [
|
|
298
|
-
s("h3",
|
|
299
|
-
t[
|
|
300
|
-
(l(),
|
|
301
|
-
class: m(`accordion-arrow ${
|
|
434
|
+
s("h3", gt, d(r.getPageTitle(i)), 1),
|
|
435
|
+
t[35] || (t[35] = o()),
|
|
436
|
+
(l(), a("svg", {
|
|
437
|
+
class: m(`accordion-arrow ${n.expandedItems[g] ? "rotated" : ""}`),
|
|
302
438
|
width: "16",
|
|
303
439
|
height: "16",
|
|
304
440
|
viewBox: "0 0 16 16",
|
|
305
441
|
"aria-hidden": "true"
|
|
306
|
-
}, [...t[
|
|
442
|
+
}, [...t[34] || (t[34] = [
|
|
307
443
|
s("path", {
|
|
308
444
|
d: "M4 6l4 4 4-4",
|
|
309
445
|
stroke: "currentColor",
|
|
@@ -311,75 +447,79 @@ function Et(e, t, c, f, u, o) {
|
|
|
311
447
|
fill: "none"
|
|
312
448
|
}, null, -1)
|
|
313
449
|
])], 2))
|
|
314
|
-
], 40,
|
|
450
|
+
], 40, nt)
|
|
315
451
|
])
|
|
316
452
|
]),
|
|
317
|
-
t[
|
|
318
|
-
s("div",
|
|
319
|
-
|
|
453
|
+
t[36] || (t[36] = o()),
|
|
454
|
+
s("div", ut, [
|
|
455
|
+
i.format ? (l(), x(B, {
|
|
320
456
|
key: 0,
|
|
321
457
|
class: "format-badge",
|
|
322
|
-
value:
|
|
323
|
-
type:
|
|
324
|
-
}, null, 8, ["value", "type"])) : (l(),
|
|
458
|
+
value: i.format,
|
|
459
|
+
type: i.format.id
|
|
460
|
+
}, null, 8, ["value", "type"])) : (l(), a("span", {
|
|
325
461
|
key: 1,
|
|
326
462
|
class: "badge badge-secondary",
|
|
327
|
-
"data-toggle":
|
|
328
|
-
"data-placement":
|
|
329
|
-
title:
|
|
330
|
-
},
|
|
463
|
+
"data-toggle": r.pageFormatTruncated(i) ? "tooltip" : !1,
|
|
464
|
+
"data-placement": r.pageFormatTruncated(i) ? "top" : !1,
|
|
465
|
+
title: r.pageFormatTruncated(i) ? r.getPageFormat(i) : !1
|
|
466
|
+
}, d(r.truncate(r.getPageFormat(i), 10, !0)), 9, mt))
|
|
331
467
|
]),
|
|
332
|
-
t[
|
|
333
|
-
s("div",
|
|
334
|
-
t[
|
|
335
|
-
s("div",
|
|
336
|
-
|
|
468
|
+
t[37] || (t[37] = o()),
|
|
469
|
+
s("div", wt, d(r.formatDate(r.getPageModified(i))), 1),
|
|
470
|
+
t[38] || (t[38] = o()),
|
|
471
|
+
s("div", vt, [
|
|
472
|
+
P(c, {
|
|
337
473
|
class: "action-btns",
|
|
338
|
-
to:
|
|
474
|
+
to: i.resource,
|
|
339
475
|
target: "_blank",
|
|
340
476
|
rel: "dcat:distribution noopener",
|
|
341
477
|
"matomo-track-download": "",
|
|
342
|
-
onAfterClick:
|
|
478
|
+
onAfterClick: v.trackGoto
|
|
343
479
|
}, {
|
|
344
|
-
default:
|
|
345
|
-
|
|
480
|
+
default: A(() => [
|
|
481
|
+
o(d(e.$t("message.datasetDetails.access")), 1)
|
|
346
482
|
]),
|
|
347
483
|
_: 1
|
|
348
484
|
}, 8, ["to", "onAfterClick"])
|
|
349
|
-
])
|
|
485
|
+
]),
|
|
486
|
+
t[39] || (t[39] = o()),
|
|
487
|
+
t[40] || (t[40] = s("div", { class: "grid-col likes-col" }, [
|
|
488
|
+
s("span", { class: "likes-dummy" })
|
|
489
|
+
], -1))
|
|
350
490
|
]),
|
|
351
|
-
t[
|
|
352
|
-
|
|
491
|
+
t[49] || (t[49] = o()),
|
|
492
|
+
n.expandedItems[g] ? (l(), a("div", {
|
|
353
493
|
key: 0,
|
|
354
|
-
id: `accordion-content-${
|
|
355
|
-
"aria-labelledby": `accordion-button-${
|
|
494
|
+
id: `accordion-content-${g}`,
|
|
495
|
+
"aria-labelledby": `accordion-button-${g}`,
|
|
356
496
|
class: "accordion-content",
|
|
357
497
|
role: "region"
|
|
358
498
|
}, [
|
|
359
|
-
s("div",
|
|
360
|
-
s("dl",
|
|
361
|
-
|
|
362
|
-
t[
|
|
363
|
-
|
|
364
|
-
t[
|
|
365
|
-
s("dt", null,
|
|
366
|
-
t[
|
|
367
|
-
s("dd", null,
|
|
368
|
-
t[
|
|
369
|
-
|
|
370
|
-
t[
|
|
371
|
-
|
|
372
|
-
t[
|
|
373
|
-
s("dt", null,
|
|
374
|
-
t[
|
|
499
|
+
s("div", ft, [
|
|
500
|
+
s("dl", bt, [
|
|
501
|
+
r.getPageDescription(i) ? (l(), a("dt", kt, d(e.$t("message.metadata.description")), 1)) : u("", !0),
|
|
502
|
+
t[42] || (t[42] = o()),
|
|
503
|
+
r.getPageDescription(i) ? (l(), a("dd", pt, d(r.getPageDescription(i)), 1)) : u("", !0),
|
|
504
|
+
t[43] || (t[43] = o()),
|
|
505
|
+
s("dt", null, d(e.$t("message.metadata.format")), 1),
|
|
506
|
+
t[44] || (t[44] = o()),
|
|
507
|
+
s("dd", null, d(r.getPageFormat(i)), 1),
|
|
508
|
+
t[45] || (t[45] = o()),
|
|
509
|
+
r.getPageModified(i) ? (l(), a("dt", Pt, d(e.$t("message.metadata.updated")), 1)) : u("", !0),
|
|
510
|
+
t[46] || (t[46] = o()),
|
|
511
|
+
r.getPageModified(i) ? (l(), a("dd", ct, d(r.formatDate(r.getPageModified(i))), 1)) : u("", !0),
|
|
512
|
+
t[47] || (t[47] = o()),
|
|
513
|
+
s("dt", null, d(e.$t("message.metadata.accessUrl")), 1),
|
|
514
|
+
t[48] || (t[48] = o()),
|
|
375
515
|
s("dd", null, [
|
|
376
516
|
s("a", {
|
|
377
|
-
href:
|
|
517
|
+
href: i.resource,
|
|
378
518
|
target: "_blank",
|
|
379
519
|
rel: "noopener"
|
|
380
520
|
}, [
|
|
381
|
-
|
|
382
|
-
t[
|
|
521
|
+
o(d((i.resource || "").substring(0, 80) + "...") + " ", 1),
|
|
522
|
+
t[41] || (t[41] = s("svg", {
|
|
383
523
|
class: "outgoing-icon ml-1",
|
|
384
524
|
width: "12",
|
|
385
525
|
height: "12",
|
|
@@ -391,13 +531,13 @@ function Et(e, t, c, f, u, o) {
|
|
|
391
531
|
stroke: "currentColor",
|
|
392
532
|
"stroke-width": "2"
|
|
393
533
|
}),
|
|
394
|
-
|
|
534
|
+
o(),
|
|
395
535
|
s("polyline", {
|
|
396
536
|
points: "15,3 21,3 21,9",
|
|
397
537
|
stroke: "currentColor",
|
|
398
538
|
"stroke-width": "2"
|
|
399
539
|
}),
|
|
400
|
-
|
|
540
|
+
o(),
|
|
401
541
|
s("line", {
|
|
402
542
|
x1: "10",
|
|
403
543
|
y1: "14",
|
|
@@ -407,48 +547,48 @@ function Et(e, t, c, f, u, o) {
|
|
|
407
547
|
"stroke-width": "2"
|
|
408
548
|
})
|
|
409
549
|
], -1))
|
|
410
|
-
], 8,
|
|
550
|
+
], 8, Ct)
|
|
411
551
|
])
|
|
412
552
|
])
|
|
413
553
|
])
|
|
414
|
-
], 8,
|
|
554
|
+
], 8, ht)) : u("", !0)
|
|
415
555
|
], 2))), 128)),
|
|
416
|
-
t[
|
|
417
|
-
!e.getPages || e.getPages.length === 0 ? (l(),
|
|
418
|
-
s("div",
|
|
419
|
-
])) :
|
|
556
|
+
t[51] || (t[51] = o()),
|
|
557
|
+
!e.getPages || e.getPages.length === 0 ? (l(), a("div", yt, [
|
|
558
|
+
s("div", Mt, d(e.$t("message.metadata.noDocumentationsAvailable")), 1)
|
|
559
|
+
])) : u("", !0)
|
|
420
560
|
])
|
|
421
561
|
]),
|
|
422
|
-
t[
|
|
423
|
-
|
|
562
|
+
t[52] || (t[52] = o()),
|
|
563
|
+
r.showingAll ? u("", !0) : (l(), a("div", Ft))
|
|
424
564
|
]),
|
|
425
|
-
t[
|
|
426
|
-
s("div",
|
|
427
|
-
(l(!0),
|
|
428
|
-
key:
|
|
429
|
-
class: m(["page-card", { expanded:
|
|
565
|
+
t[75] || (t[75] = o()),
|
|
566
|
+
s("div", Dt, [
|
|
567
|
+
(l(!0), a(M, null, F(r.visiblePages, (i, g) => (l(), a("div", {
|
|
568
|
+
key: g,
|
|
569
|
+
class: m(["page-card", { expanded: n.expandedItems[g] }])
|
|
430
570
|
}, [
|
|
431
571
|
s("div", {
|
|
432
572
|
class: "card-header",
|
|
433
|
-
onClick: (k) =>
|
|
573
|
+
onClick: (k) => r.toggleAccordion(g)
|
|
434
574
|
}, [
|
|
435
|
-
s("div",
|
|
436
|
-
s("h3",
|
|
437
|
-
t[
|
|
438
|
-
s("div",
|
|
439
|
-
s("span",
|
|
440
|
-
t[
|
|
441
|
-
s("span",
|
|
575
|
+
s("div", Lt, [
|
|
576
|
+
s("h3", Bt, d(r.getPageTitle(i)), 1),
|
|
577
|
+
t[54] || (t[54] = o()),
|
|
578
|
+
s("div", Vt, [
|
|
579
|
+
s("span", Tt, d(r.truncate(r.getPageFormat(i), 10, !0)), 1),
|
|
580
|
+
t[53] || (t[53] = o()),
|
|
581
|
+
s("span", It, d(r.formatDate(r.getPageModified(i))), 1)
|
|
442
582
|
])
|
|
443
583
|
]),
|
|
444
|
-
t[
|
|
445
|
-
(l(),
|
|
446
|
-
class: m(["accordion-arrow", { rotated:
|
|
584
|
+
t[56] || (t[56] = o()),
|
|
585
|
+
(l(), a("svg", {
|
|
586
|
+
class: m(["accordion-arrow", { rotated: n.expandedItems[g] }]),
|
|
447
587
|
width: "16",
|
|
448
588
|
height: "16",
|
|
449
589
|
viewBox: "0 0 16 16",
|
|
450
590
|
"aria-hidden": "true"
|
|
451
|
-
}, [...t[
|
|
591
|
+
}, [...t[55] || (t[55] = [
|
|
452
592
|
s("path", {
|
|
453
593
|
d: "M4 6l4 4 4-4",
|
|
454
594
|
stroke: "currentColor",
|
|
@@ -456,19 +596,19 @@ function Et(e, t, c, f, u, o) {
|
|
|
456
596
|
fill: "none"
|
|
457
597
|
}, null, -1)
|
|
458
598
|
])], 2))
|
|
459
|
-
], 8,
|
|
460
|
-
t[
|
|
461
|
-
s("div",
|
|
462
|
-
|
|
599
|
+
], 8, At),
|
|
600
|
+
t[66] || (t[66] = o()),
|
|
601
|
+
s("div", Ot, [
|
|
602
|
+
P(c, {
|
|
463
603
|
class: "card-action-btn access-btn",
|
|
464
|
-
to:
|
|
604
|
+
to: i.resource,
|
|
465
605
|
target: "_blank",
|
|
466
606
|
rel: "dcat:distribution noopener",
|
|
467
607
|
"matomo-track-download": "",
|
|
468
|
-
onAfterClick:
|
|
608
|
+
onAfterClick: v.trackGoto
|
|
469
609
|
}, {
|
|
470
|
-
default:
|
|
471
|
-
t[
|
|
610
|
+
default: A(() => [
|
|
611
|
+
t[57] || (t[57] = s("svg", {
|
|
472
612
|
class: "btn-icon",
|
|
473
613
|
width: "12",
|
|
474
614
|
height: "12",
|
|
@@ -480,13 +620,13 @@ function Et(e, t, c, f, u, o) {
|
|
|
480
620
|
stroke: "currentColor",
|
|
481
621
|
"stroke-width": "2"
|
|
482
622
|
}),
|
|
483
|
-
|
|
623
|
+
o(),
|
|
484
624
|
s("polyline", {
|
|
485
625
|
points: "15,3 21,3 21,9",
|
|
486
626
|
stroke: "currentColor",
|
|
487
627
|
"stroke-width": "2"
|
|
488
628
|
}),
|
|
489
|
-
|
|
629
|
+
o(),
|
|
490
630
|
s("line", {
|
|
491
631
|
x1: "10",
|
|
492
632
|
y1: "14",
|
|
@@ -496,37 +636,37 @@ function Et(e, t, c, f, u, o) {
|
|
|
496
636
|
"stroke-width": "2"
|
|
497
637
|
})
|
|
498
638
|
], -1)),
|
|
499
|
-
|
|
639
|
+
o(" " + d(e.$t("message.datasetDetails.access")), 1)
|
|
500
640
|
]),
|
|
501
641
|
_: 1
|
|
502
642
|
}, 8, ["to", "onAfterClick"])
|
|
503
643
|
]),
|
|
504
|
-
t[
|
|
505
|
-
|
|
506
|
-
s("div",
|
|
507
|
-
s("dl",
|
|
508
|
-
|
|
509
|
-
t[
|
|
510
|
-
|
|
511
|
-
t[
|
|
512
|
-
s("dt", null,
|
|
513
|
-
t[
|
|
514
|
-
s("dd", null,
|
|
515
|
-
t[
|
|
516
|
-
|
|
517
|
-
t[
|
|
518
|
-
|
|
519
|
-
t[
|
|
520
|
-
s("dt", null,
|
|
521
|
-
t[
|
|
644
|
+
t[67] || (t[67] = o()),
|
|
645
|
+
n.expandedItems[g] ? (l(), a("div", xt, [
|
|
646
|
+
s("div", St, [
|
|
647
|
+
s("dl", Zt, [
|
|
648
|
+
r.getPageDescription(i) ? (l(), a("dt", Nt, d(e.$t("message.metadata.description")), 1)) : u("", !0),
|
|
649
|
+
t[59] || (t[59] = o()),
|
|
650
|
+
r.getPageDescription(i) ? (l(), a("dd", Et, d(r.getPageDescription(i)), 1)) : u("", !0),
|
|
651
|
+
t[60] || (t[60] = o()),
|
|
652
|
+
s("dt", null, d(e.$t("message.metadata.format")), 1),
|
|
653
|
+
t[61] || (t[61] = o()),
|
|
654
|
+
s("dd", null, d(r.getPageFormat(i)), 1),
|
|
655
|
+
t[62] || (t[62] = o()),
|
|
656
|
+
r.getPageModified(i) ? (l(), a("dt", Gt, d(e.$t("message.metadata.updated")), 1)) : u("", !0),
|
|
657
|
+
t[63] || (t[63] = o()),
|
|
658
|
+
r.getPageModified(i) ? (l(), a("dd", zt, d(r.formatDate(r.getPageModified(i))), 1)) : u("", !0),
|
|
659
|
+
t[64] || (t[64] = o()),
|
|
660
|
+
s("dt", null, d(e.$t("message.metadata.accessUrl")), 1),
|
|
661
|
+
t[65] || (t[65] = o()),
|
|
522
662
|
s("dd", null, [
|
|
523
663
|
s("a", {
|
|
524
|
-
href:
|
|
664
|
+
href: i.resource,
|
|
525
665
|
target: "_blank",
|
|
526
666
|
rel: "noopener"
|
|
527
667
|
}, [
|
|
528
|
-
|
|
529
|
-
t[
|
|
668
|
+
o(d((i.resource || "").substring(0, 80) + "...") + " ", 1),
|
|
669
|
+
t[58] || (t[58] = s("svg", {
|
|
530
670
|
class: "outgoing-icon ml-1",
|
|
531
671
|
width: "12",
|
|
532
672
|
height: "12",
|
|
@@ -538,13 +678,13 @@ function Et(e, t, c, f, u, o) {
|
|
|
538
678
|
stroke: "currentColor",
|
|
539
679
|
"stroke-width": "2"
|
|
540
680
|
}),
|
|
541
|
-
|
|
681
|
+
o(),
|
|
542
682
|
s("polyline", {
|
|
543
683
|
points: "15,3 21,3 21,9",
|
|
544
684
|
stroke: "currentColor",
|
|
545
685
|
"stroke-width": "2"
|
|
546
686
|
}),
|
|
547
|
-
|
|
687
|
+
o(),
|
|
548
688
|
s("line", {
|
|
549
689
|
x1: "10",
|
|
550
690
|
y1: "14",
|
|
@@ -554,25 +694,25 @@ function Et(e, t, c, f, u, o) {
|
|
|
554
694
|
"stroke-width": "2"
|
|
555
695
|
})
|
|
556
696
|
], -1))
|
|
557
|
-
], 8,
|
|
697
|
+
], 8, Kt)
|
|
558
698
|
])
|
|
559
699
|
])
|
|
560
700
|
])
|
|
561
|
-
])) :
|
|
701
|
+
])) : u("", !0)
|
|
562
702
|
], 2))), 128)),
|
|
563
|
-
t[
|
|
564
|
-
!e.getPages || e.getPages.length === 0 ? (l(),
|
|
565
|
-
s("div",
|
|
566
|
-
])) :
|
|
703
|
+
t[68] || (t[68] = o()),
|
|
704
|
+
!e.getPages || e.getPages.length === 0 ? (l(), a("div", Ut, [
|
|
705
|
+
s("div", qt, d(e.$t("message.metadata.noDocumentationsAvailable")), 1)
|
|
706
|
+
])) : u("", !0)
|
|
567
707
|
]),
|
|
568
|
-
t[
|
|
569
|
-
|
|
570
|
-
!
|
|
708
|
+
t[76] || (t[76] = o()),
|
|
709
|
+
r.hasMorePages || r.showingMoreThanInitial ? (l(), a("div", Ht, [
|
|
710
|
+
!r.showingAll && r.hasMorePages ? (l(), a("button", {
|
|
571
711
|
key: 0,
|
|
572
712
|
class: "show-more-btn",
|
|
573
|
-
onClick: t[
|
|
713
|
+
onClick: t[6] || (t[6] = (...i) => r.showMorePages && r.showMorePages(...i))
|
|
574
714
|
}, [
|
|
575
|
-
t[
|
|
715
|
+
t[69] || (t[69] = s("svg", {
|
|
576
716
|
class: "arrow-icon",
|
|
577
717
|
width: "16",
|
|
578
718
|
height: "16",
|
|
@@ -585,15 +725,15 @@ function Et(e, t, c, f, u, o) {
|
|
|
585
725
|
fill: "none"
|
|
586
726
|
})
|
|
587
727
|
], -1)),
|
|
588
|
-
|
|
589
|
-
])) :
|
|
590
|
-
t[
|
|
591
|
-
|
|
728
|
+
o(" " + d(e.$t("message.metadata.showXMore", { increment: r.remainingCount })), 1)
|
|
729
|
+
])) : u("", !0),
|
|
730
|
+
t[72] || (t[72] = o()),
|
|
731
|
+
r.showingAll || r.showingMoreThanInitial ? (l(), a("button", {
|
|
592
732
|
key: 1,
|
|
593
|
-
class: m(["show-more-btn", { "ml-2": !
|
|
594
|
-
onClick: t[
|
|
733
|
+
class: m(["show-more-btn", { "ml-2": !r.showingAll }]),
|
|
734
|
+
onClick: t[7] || (t[7] = (...i) => r.resetView && r.resetView(...i))
|
|
595
735
|
}, [
|
|
596
|
-
t[
|
|
736
|
+
t[70] || (t[70] = s("svg", {
|
|
597
737
|
class: "arrow-icon rotated",
|
|
598
738
|
width: "16",
|
|
599
739
|
height: "16",
|
|
@@ -606,15 +746,15 @@ function Et(e, t, c, f, u, o) {
|
|
|
606
746
|
fill: "none"
|
|
607
747
|
})
|
|
608
748
|
], -1)),
|
|
609
|
-
|
|
610
|
-
], 2)) :
|
|
611
|
-
t[
|
|
612
|
-
!
|
|
749
|
+
o(" " + d(e.$t("message.metadata.showLess")), 1)
|
|
750
|
+
], 2)) : u("", !0),
|
|
751
|
+
t[73] || (t[73] = o()),
|
|
752
|
+
!r.showingAll && r.hasMorePages ? (l(), a("button", {
|
|
613
753
|
key: 2,
|
|
614
754
|
class: "show-all-btn ml-2",
|
|
615
|
-
onClick: t[
|
|
755
|
+
onClick: t[8] || (t[8] = (...i) => r.showAllPages && r.showAllPages(...i))
|
|
616
756
|
}, [
|
|
617
|
-
t[
|
|
757
|
+
t[71] || (t[71] = s("svg", {
|
|
618
758
|
class: "arrow-icon",
|
|
619
759
|
width: "16",
|
|
620
760
|
height: "16",
|
|
@@ -627,14 +767,14 @@ function Et(e, t, c, f, u, o) {
|
|
|
627
767
|
fill: "none"
|
|
628
768
|
})
|
|
629
769
|
], -1)),
|
|
630
|
-
|
|
631
|
-
])) :
|
|
632
|
-
])) :
|
|
633
|
-
])) :
|
|
770
|
+
o(" " + d(e.$t("message.metadata.showAll")), 1)
|
|
771
|
+
])) : u("", !0)
|
|
772
|
+
])) : u("", !0)
|
|
773
|
+
])) : u("", !0)
|
|
634
774
|
]);
|
|
635
775
|
}
|
|
636
|
-
const
|
|
776
|
+
const ee = /* @__PURE__ */ S(Z, [["render", jt], ["__scopeId", "data-v-ae508072"]]);
|
|
637
777
|
export {
|
|
638
|
-
|
|
778
|
+
ee as default
|
|
639
779
|
};
|
|
640
780
|
//# sourceMappingURL=DatasetDetailsPages.vue.mjs.map
|