@piveau/dpi 0.2.0-alpha.2 → 0.2.0-alpha.4
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/assets/dpi.css +1 -1
- package/dist/assets/stadt.png +0 -0
- package/dist/data-provider-interface/HappyFlowComponents/AboutProject.vue.js +99 -0
- package/dist/data-provider-interface/HappyFlowComponents/DPIHome.vue.js +38 -11
- package/dist/data-provider-interface/HappyFlowComponents/HomeTable.vue.js +17 -17
- package/dist/data-provider-interface/HappyFlowComponents/ProjectTable.vue.js +94 -0
- package/dist/data-provider-interface/HappyFlowComponents/img/DataProcessingSteps.svg.js +4 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Autocomplete/Autocomplete.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/Autocomplete/Autocomplete.vue2.js +1 -1
- package/dist/data-provider-interface/HappyFlowComponents/ui/Autocomplete/AutocompleteVocabFormKit.vue.js +18 -18
- package/dist/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectOrganisationStep.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectOrganisationStep.vue2.js +89 -67
- package/dist/data-provider-interface/HappyFlowComponents/ui/BasicInfosStep/ProjectStatusStep.vue.js +38 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Card.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/Card.vue2.js +34 -20
- package/dist/data-provider-interface/HappyFlowComponents/ui/ChipToggleList/ChipToggleList.vue.js +7 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/ChipToggleList/ChipToggleList.vue2.js +62 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Findability/CategoriesStep.vue.js +7 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Findability/CategoriesStep.vue2.js +60 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Findability/DiscoverabilityStep.vue.js +45 -28
- package/dist/data-provider-interface/HappyFlowComponents/ui/InputField/InputFieldDefinition.js +5 -3
- package/dist/data-provider-interface/HappyFlowComponents/ui/InputField/InputFieldFormKit.vue.js +45 -37
- package/dist/data-provider-interface/HappyFlowComponents/ui/LandingProjectStep/LandingProjectStep.vue.js +7 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/LandingProjectStep/LandingProjectStep.vue2.js +40 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/ListBox/ListBoxDefinition.js +2 -1
- package/dist/data-provider-interface/HappyFlowComponents/ui/ListBox/ListBoxFormKit.vue.js +20 -16
- package/dist/data-provider-interface/HappyFlowComponents/ui/ListBox/Listbox.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/ListBox/Listbox.vue2.js +41 -37
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue.js +7 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue2.js +341 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/PlanenStep.vue.js +64 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/ProjektPhasenOverviewStep.vue.js +48 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/UmstezenStep.vue.js +64 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/Projektphasen/WeiterdenkenStep.vue.js +64 -0
- package/dist/data-provider-interface/HappyFlowComponents/ui/WipStep.vue.js +2 -2
- package/dist/data-provider-interface/HappyFlowComponents/ui/WipStep.vue2.js +7 -7
- package/dist/data-provider-interface/components/ProgressSteps.vue.js +1 -1
- package/dist/data-provider-interface/components/ProgressSteps.vue2.js +45 -44
- package/dist/data-provider-interface/components/StepActionsSection.vue.js +2 -2
- package/dist/data-provider-interface/components/StepActionsSection.vue2.js +119 -42
- package/dist/data-provider-interface/composables/useDpiStepper.js +7 -7
- package/dist/data-provider-interface/views/InputPageProject.vue.js +354 -316
- package/dist/stories/components/DemoStepper.vue.js +2 -2
- package/dist/stories/components/DemoStepper.vue2.js +134 -102
- package/dist/stories/components/LinkCard.vue.js +7 -0
- package/dist/stories/components/LinkCard.vue2.js +52 -0
- package/dist/stories/components/PartnerCard.vue.js +2 -2
- package/dist/stories/components/PartnerCard.vue2.js +20 -19
- package/dist/stories/components/ScreenshotCard.vue.js +7 -0
- package/dist/stories/components/ScreenshotCard.vue2.js +25 -0
- package/package.json +1 -1
|
@@ -1,43 +1,52 @@
|
|
|
1
|
-
import { getNode as
|
|
2
|
-
import { getValidationMessages as
|
|
1
|
+
import { getNode as X } from "@formkit/core";
|
|
2
|
+
import { getValidationMessages as de } from "@formkit/validation";
|
|
3
3
|
import "@formkit/vue";
|
|
4
4
|
import "@phosphor-icons/vue";
|
|
5
|
-
import { useWindowScroll as
|
|
5
|
+
import { useWindowScroll as pe } from "@vueuse/core";
|
|
6
6
|
import "jquery";
|
|
7
|
-
import { has as
|
|
8
|
-
import { defineComponent as ue, resolveComponent as
|
|
7
|
+
import { has as j, isNil as Y } from "lodash-es";
|
|
8
|
+
import { defineComponent as ue, resolveComponent as i, createElementBlock as u, openBlock as p, createCommentVNode as S, createElementVNode as l, createVNode as t, createBlock as Z, withModifiers as me, withCtx as a, Fragment as x, renderList as ee, normalizeClass as ce, createTextVNode as te, toDisplayString as y, ref as D, computed as Q, markRaw as fe, toRef as ve, watch as ge, nextTick as Se } from "vue";
|
|
9
9
|
import { useI18n as he } from "vue-i18n";
|
|
10
|
-
import { mapActions as
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
10
|
+
import { mapActions as ne, mapGetters as oe } from "vuex";
|
|
11
|
+
import De from "../../stories/components/DemoStep.vue.js";
|
|
12
|
+
import be from "../../stories/components/ReviewStepDemo.vue.js";
|
|
13
|
+
import _e from "../components/InputPageStep.vue.js";
|
|
14
14
|
import ke from "../components/ProgressSteps.vue.js";
|
|
15
15
|
import we from "../components/StepActionsSection.vue.js";
|
|
16
16
|
import { useFormValues as Ve } from "../composables/useDpiFormValues.js";
|
|
17
|
-
import { useDpiStepper as
|
|
18
|
-
import
|
|
19
|
-
import { eventBus as
|
|
20
|
-
import
|
|
17
|
+
import { useDpiStepper as ye } from "../composables/useDpiStepper.js";
|
|
18
|
+
import Ce from "../config/dcatapdeHappyFlow/converter.js";
|
|
19
|
+
import { eventBus as Ie } from "../HappyFlowComponents/services/eventBus.js";
|
|
20
|
+
import Pe from "../HappyFlowComponents/ui/BasicInfosStep/ProjectDescriptionStep.vue.js";
|
|
21
21
|
import Te from "../HappyFlowComponents/ui/BasicInfosStep/ProjectNameStep.vue.js";
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import Fe from "../HappyFlowComponents/ui/
|
|
26
|
-
import
|
|
27
|
-
import He from "../HappyFlowComponents/ui/
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import
|
|
31
|
-
import Be from "../HappyFlowComponents/ui/
|
|
32
|
-
import
|
|
22
|
+
import $e from "../HappyFlowComponents/ui/BasicInfosStep/ProjectOrganisationStep.vue.js";
|
|
23
|
+
import je from "../HappyFlowComponents/ui/BasicInfosStep/ProjectStatusStep.vue.js";
|
|
24
|
+
import Oe from "../HappyFlowComponents/ui/ButtonV3.vue.js";
|
|
25
|
+
import Fe from "../HappyFlowComponents/ui/Card.vue.js";
|
|
26
|
+
import Ae from "../HappyFlowComponents/ui/DpiModalBase.vue.js";
|
|
27
|
+
import He from "../HappyFlowComponents/ui/Findability/CategoriesStep.vue.js";
|
|
28
|
+
import Le from "../HappyFlowComponents/ui/Findability/DiscoverabilityStep.vue.js";
|
|
29
|
+
import ze from "../HappyFlowComponents/ui/Illustration.vue.js";
|
|
30
|
+
import Me from "../HappyFlowComponents/ui/LandingProjectStep/LandingProjectStep.vue.js";
|
|
31
|
+
import Be from "../HappyFlowComponents/ui/ListBox/Listbox.vue.js";
|
|
32
|
+
import Ue from "../HappyFlowComponents/ui/LogoV3.vue.js";
|
|
33
|
+
import Ge from "../HappyFlowComponents/ui/ModalSimpleV3.vue.js";
|
|
34
|
+
import Ne from "../HappyFlowComponents/ui/OptionalDataStep/OptionalDataStep.vue.js";
|
|
35
|
+
import Re from "../HappyFlowComponents/ui/Projektphasen/PlanenStep.vue.js";
|
|
36
|
+
import We from "../HappyFlowComponents/ui/Projektphasen/ProjektPhasenOverviewStep.vue.js";
|
|
37
|
+
import Ee from "../HappyFlowComponents/ui/Projektphasen/UmstezenStep.vue.js";
|
|
38
|
+
import Ke from "../HappyFlowComponents/ui/Projektphasen/WeiterdenkenStep.vue.js";
|
|
39
|
+
import qe from "../HappyFlowComponents/ui/TextButtonSmall.vue.js";
|
|
40
|
+
import Je from "../HappyFlowComponents/ui/WipStep.vue.js";
|
|
41
|
+
import Qe from "./OverviewPage.vue.js";
|
|
33
42
|
/* empty css */
|
|
34
43
|
/* empty css */
|
|
35
44
|
/* empty css */
|
|
36
|
-
import
|
|
37
|
-
import { useDpiContext as
|
|
38
|
-
import { useEditModeInfo as
|
|
39
|
-
import { useFormSchema as
|
|
40
|
-
const
|
|
45
|
+
import Xe from "../../_virtual/_plugin-vue_export-helper.js";
|
|
46
|
+
import { useDpiContext as Ye } from "../composables/useDpiContext.js";
|
|
47
|
+
import { useEditModeInfo as Ze } from "../composables/useDpiEditMode.js";
|
|
48
|
+
import { useFormSchema as xe } from "../composables/useFormSchema.js";
|
|
49
|
+
const et = ue({
|
|
41
50
|
props: {
|
|
42
51
|
property: {
|
|
43
52
|
required: !0,
|
|
@@ -59,38 +68,47 @@ const Ee = ue({
|
|
|
59
68
|
};
|
|
60
69
|
},
|
|
61
70
|
components: {
|
|
62
|
-
InputPageStep:
|
|
71
|
+
InputPageStep: _e,
|
|
63
72
|
// DistributionInputPage,
|
|
64
|
-
LogoV3:
|
|
65
|
-
ButtonV3:
|
|
66
|
-
TextButtonSmall:
|
|
67
|
-
Illustration:
|
|
73
|
+
LogoV3: Ue,
|
|
74
|
+
ButtonV3: Oe,
|
|
75
|
+
TextButtonSmall: qe,
|
|
76
|
+
Illustration: ze,
|
|
68
77
|
// PhLightbulb,
|
|
69
78
|
// PhCheckCircle,
|
|
70
|
-
ModalSimpleV3:
|
|
79
|
+
ModalSimpleV3: Ge,
|
|
71
80
|
// DemoStepper,
|
|
72
|
-
DemoStep:
|
|
81
|
+
DemoStep: De,
|
|
73
82
|
ProgressSteps: ke,
|
|
74
|
-
ReviewStepDemo:
|
|
83
|
+
ReviewStepDemo: be,
|
|
84
|
+
LandingProjectStep: Me,
|
|
75
85
|
StepActionsSection: we,
|
|
86
|
+
DiscoverabilityStep: Le,
|
|
87
|
+
CategoriesStep: He,
|
|
76
88
|
ProjectNameStep: Te,
|
|
77
|
-
ProjectDescriptionStep:
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
89
|
+
ProjectDescriptionStep: Pe,
|
|
90
|
+
ProjectStatusStep: je,
|
|
91
|
+
ProjectOrganisationStep: $e,
|
|
92
|
+
OptionalDataStep: Ne,
|
|
93
|
+
UmstezenStep: Ee,
|
|
94
|
+
PlanenStep: Re,
|
|
95
|
+
WeiterdenkenStep: Ke,
|
|
96
|
+
ProjektPhasenOverviewStep: We,
|
|
97
|
+
Card: Fe,
|
|
98
|
+
Listbox: Be,
|
|
99
|
+
DpiModalBase: Ae,
|
|
100
|
+
WipStep: Je
|
|
83
101
|
},
|
|
84
102
|
computed: {
|
|
85
|
-
...
|
|
103
|
+
...oe("auth", [
|
|
86
104
|
"getIsEditMode",
|
|
87
105
|
"getUserCatalogIds",
|
|
88
106
|
"getUserData"
|
|
89
107
|
]),
|
|
90
|
-
...
|
|
108
|
+
...oe("dpiStore", ["getNavSteps", "getDeleteDistributionInline"]),
|
|
91
109
|
getTitleStep() {
|
|
92
110
|
return Object.keys(this.formValues).filter(
|
|
93
|
-
(e) =>
|
|
111
|
+
(e) => j(this.formValues[e], "dct:title")
|
|
94
112
|
)[0];
|
|
95
113
|
},
|
|
96
114
|
createIDFromTitle() {
|
|
@@ -101,7 +119,7 @@ const Ee = ue({
|
|
|
101
119
|
getFirstTitleFromForm() {
|
|
102
120
|
try {
|
|
103
121
|
const e = this.formValues[this.getTitleStep];
|
|
104
|
-
return
|
|
122
|
+
return j(e, "dct:title") && e["dct:title"].length > 0 && j(e["dct:title"][0], "@value") && !Y(e["dct:title"][0], "@value") ? e["dct:title"][0]["@value"] : "";
|
|
105
123
|
} catch {
|
|
106
124
|
}
|
|
107
125
|
},
|
|
@@ -110,8 +128,8 @@ const Ee = ue({
|
|
|
110
128
|
}
|
|
111
129
|
},
|
|
112
130
|
methods: {
|
|
113
|
-
...
|
|
114
|
-
...
|
|
131
|
+
...ne("auth", ["setIsEditMode", "setIsDraft"]),
|
|
132
|
+
...ne("dpiStore", [
|
|
115
133
|
"saveFormValues",
|
|
116
134
|
"saveLocalstorageValues",
|
|
117
135
|
"clearAll"
|
|
@@ -121,23 +139,23 @@ const Ee = ue({
|
|
|
121
139
|
},
|
|
122
140
|
// Route to the RAP Page
|
|
123
141
|
goToRAP() {
|
|
124
|
-
this.fillData(), this.activeStep = "ReviewAndPublish", this.activeSubStep = Object.keys(
|
|
142
|
+
this.fillData(), this.activeStep = "ReviewAndPublish", this.activeSubStep = Object.keys(X(this.activeStep).value)[0];
|
|
125
143
|
},
|
|
126
144
|
handleDistributionsValidation(e) {
|
|
127
|
-
|
|
145
|
+
Ie.emit("nextClicked", e);
|
|
128
146
|
},
|
|
129
147
|
gotToHome() {
|
|
130
148
|
window.location.href = this.$router.resolve({
|
|
131
149
|
name: "DPI-Home-HappyFlow"
|
|
132
150
|
}).href;
|
|
133
151
|
},
|
|
134
|
-
async dispatchDataToDPI(e, n, m,
|
|
135
|
-
var
|
|
136
|
-
console.log("body:", e, n, "params:", m,
|
|
152
|
+
async dispatchDataToDPI(e, n, m, h) {
|
|
153
|
+
var k, v;
|
|
154
|
+
console.log("body:", e, n, "params:", m, h);
|
|
137
155
|
try {
|
|
138
|
-
|
|
156
|
+
h === "publish" && (m.token = this.getUserData.rtpToken, console.log(m.token), m.url = `${this.$env.api.hubUrl}catalogues/${m.catalog}/datasets/origin?originalId=${m.id}`, await this.$store.dispatch(n, m)), h === "draft" && await this.$store.dispatch(n, m), (k = this.$Progress) == null || k.finish(), this.clearAll();
|
|
139
157
|
} catch (b) {
|
|
140
|
-
console.error(b), (
|
|
158
|
+
console.error(b), (v = this.$Progress) == null || v.fail();
|
|
141
159
|
}
|
|
142
160
|
},
|
|
143
161
|
clearForm() {
|
|
@@ -148,7 +166,7 @@ const Ee = ue({
|
|
|
148
166
|
},
|
|
149
167
|
createDatasetID() {
|
|
150
168
|
const e = this.formValues[this.getTitleStep];
|
|
151
|
-
!
|
|
169
|
+
!j(e, "datasetID") || Y(e.datasetID) ? this.formValues[this.getTitleStep].datasetID = this.createIDFromTitle : (this.createIDFromTitle.startsWith(e.datasetID) || e.datasetID.startsWith(this.createIDFromTitle)) && (this.formValues[this.getTitleStep].datasetID = this.createIDFromTitle);
|
|
152
170
|
},
|
|
153
171
|
generateandTranslateSchema(e) {
|
|
154
172
|
for (let n = 0; n < this.getNavSteps(this.$env.content.dataProviderInterface.specification)[e].length; n++)
|
|
@@ -210,49 +228,50 @@ const Ee = ue({
|
|
|
210
228
|
// })
|
|
211
229
|
// },
|
|
212
230
|
setup() {
|
|
213
|
-
const e =
|
|
231
|
+
const e = Ye(), { isEditMode: n } = Ze(), {
|
|
214
232
|
steps: m,
|
|
215
|
-
stepList:
|
|
216
|
-
visitedSteps:
|
|
217
|
-
activeStep:
|
|
233
|
+
stepList: h,
|
|
234
|
+
visitedSteps: k,
|
|
235
|
+
activeStep: v,
|
|
218
236
|
stepPlugin: b,
|
|
219
|
-
goToNextStep:
|
|
220
|
-
goToPreviousStep:
|
|
221
|
-
subSteps:
|
|
222
|
-
previousStep:
|
|
223
|
-
nextStep:
|
|
224
|
-
current:
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
237
|
+
goToNextStep: g,
|
|
238
|
+
goToPreviousStep: C,
|
|
239
|
+
subSteps: O,
|
|
240
|
+
previousStep: F,
|
|
241
|
+
nextStep: A,
|
|
242
|
+
current: o,
|
|
243
|
+
goToStep: H,
|
|
244
|
+
isLast: L,
|
|
245
|
+
triggerValidationCurrentStep: s
|
|
246
|
+
} = ye(), { formValues: I } = Ve(), { t: z, te: M } = he(), B = D(!1), w = D(!1), _ = D([]), U = Q(() => v.value ? X(v.value) : null), G = (d) => {
|
|
247
|
+
if (!d)
|
|
229
248
|
return;
|
|
230
|
-
const c =
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
$.map((
|
|
249
|
+
const c = de(d);
|
|
250
|
+
_.value = [], c.forEach(($) => {
|
|
251
|
+
_.value = _.value.concat(
|
|
252
|
+
$.map((le) => le.value)
|
|
234
253
|
);
|
|
235
254
|
});
|
|
236
|
-
}, { translateSchema:
|
|
237
|
-
t:
|
|
255
|
+
}, { translateSchema: N, createSchema: R, getSchema: W } = xe({
|
|
256
|
+
t: z,
|
|
238
257
|
te: M
|
|
239
|
-
}),
|
|
240
|
-
let { x:
|
|
258
|
+
}), E = () => {
|
|
259
|
+
let { x: d, y: c } = pe({ behavior: "smooth" });
|
|
241
260
|
c.value = 0;
|
|
242
|
-
},
|
|
243
|
-
n.value && (
|
|
244
|
-
const
|
|
261
|
+
}, K = fe({ OverviewPage: Qe }), P = D("");
|
|
262
|
+
n.value && (v.value = "ReviewAndPublish", P.value = "reviewAndPublishPage");
|
|
263
|
+
const q = ve(m), V = (d) => {
|
|
245
264
|
var $;
|
|
246
|
-
const c = ($ =
|
|
265
|
+
const c = ($ = q.value) == null ? void 0 : $[d];
|
|
247
266
|
return c ? c.valid : !1;
|
|
248
|
-
},
|
|
249
|
-
|
|
250
|
-
|
|
267
|
+
}, r = D(!1), f = D(0);
|
|
268
|
+
ge(v, (d) => {
|
|
269
|
+
d === "review" && (r.value = !0, f.value++);
|
|
251
270
|
});
|
|
252
|
-
const
|
|
271
|
+
const T = async () => {
|
|
253
272
|
try {
|
|
254
|
-
const
|
|
255
|
-
|
|
273
|
+
const d = "auth/createDataset", c = await Ce(
|
|
274
|
+
I.value,
|
|
256
275
|
e,
|
|
257
276
|
// We'll need to access getUserData somehow - for now using a placeholder
|
|
258
277
|
{},
|
|
@@ -262,95 +281,95 @@ const Ee = ue({
|
|
|
262
281
|
console.log("Publishing:", c), setTimeout(() => {
|
|
263
282
|
window.location.href = "/dpi-home-happyflow";
|
|
264
283
|
}, 1e3);
|
|
265
|
-
} catch (
|
|
266
|
-
console.error("Fehler beim Veröffentlichen:",
|
|
284
|
+
} catch (d) {
|
|
285
|
+
console.error("Fehler beim Veröffentlichen:", d);
|
|
267
286
|
}
|
|
268
287
|
};
|
|
269
|
-
function
|
|
270
|
-
|
|
288
|
+
function J() {
|
|
289
|
+
V(o.value) && g();
|
|
271
290
|
}
|
|
272
|
-
async function
|
|
273
|
-
|
|
274
|
-
const
|
|
275
|
-
c &&
|
|
291
|
+
async function ae() {
|
|
292
|
+
s(), await Se();
|
|
293
|
+
const d = U.value, c = d ? !V(o.value) : !1;
|
|
294
|
+
c && G(d), w.value = c, L.value ? console.log("Form submitted", values.value) : J();
|
|
276
295
|
}
|
|
277
|
-
const
|
|
296
|
+
const ie = Q(() => h.value.map((d) => ({ id: d, name: d }))), re = Q({
|
|
278
297
|
get() {
|
|
279
|
-
return { id:
|
|
298
|
+
return { id: o.value, name: o.value };
|
|
280
299
|
},
|
|
281
|
-
set(
|
|
282
|
-
|
|
300
|
+
set(d) {
|
|
301
|
+
H(d.id);
|
|
283
302
|
}
|
|
284
|
-
}),
|
|
303
|
+
}), se = D(!1);
|
|
285
304
|
return {
|
|
286
305
|
steps: m,
|
|
287
|
-
visitedSteps:
|
|
288
|
-
activeStep:
|
|
289
|
-
activeSubStep:
|
|
290
|
-
subSteps:
|
|
291
|
-
previousStep:
|
|
292
|
-
stepList:
|
|
293
|
-
nextStep:
|
|
306
|
+
visitedSteps: k,
|
|
307
|
+
activeStep: v,
|
|
308
|
+
activeSubStep: P,
|
|
309
|
+
subSteps: O,
|
|
310
|
+
previousStep: F,
|
|
311
|
+
stepList: h,
|
|
312
|
+
nextStep: A,
|
|
294
313
|
stepPlugin: b,
|
|
295
|
-
checkStepValidity:
|
|
296
|
-
goToNextStep:
|
|
297
|
-
goToNextStepIfValid:
|
|
298
|
-
goToPreviousStep:
|
|
299
|
-
scrollToTop:
|
|
300
|
-
library:
|
|
314
|
+
checkStepValidity: V,
|
|
315
|
+
goToNextStep: g,
|
|
316
|
+
goToNextStepIfValid: J,
|
|
317
|
+
goToPreviousStep: C,
|
|
318
|
+
scrollToTop: E,
|
|
319
|
+
library: K,
|
|
301
320
|
isEditMode: n,
|
|
302
|
-
translateSchema:
|
|
303
|
-
createSchema:
|
|
304
|
-
getSchema:
|
|
321
|
+
translateSchema: N,
|
|
322
|
+
createSchema: R,
|
|
323
|
+
getSchema: W,
|
|
305
324
|
dpiContext: e,
|
|
306
|
-
formValues:
|
|
307
|
-
activeSimpleModal:
|
|
308
|
-
shouldRenderReviewStep:
|
|
309
|
-
renderViewStepKey:
|
|
310
|
-
handlePublish:
|
|
311
|
-
handleSubmit:
|
|
312
|
-
showErrorSummary:
|
|
313
|
-
validationMessages:
|
|
314
|
-
stepOptions:
|
|
315
|
-
stepSelect:
|
|
316
|
-
hologramOpen:
|
|
325
|
+
formValues: I,
|
|
326
|
+
activeSimpleModal: B,
|
|
327
|
+
shouldRenderReviewStep: r,
|
|
328
|
+
renderViewStepKey: f,
|
|
329
|
+
handlePublish: T,
|
|
330
|
+
handleSubmit: ae,
|
|
331
|
+
showErrorSummary: w,
|
|
332
|
+
validationMessages: _,
|
|
333
|
+
stepOptions: ie,
|
|
334
|
+
stepSelect: re,
|
|
335
|
+
hologramOpen: se
|
|
317
336
|
};
|
|
318
337
|
}
|
|
319
|
-
}),
|
|
338
|
+
}), tt = { class: "input-page-project form-container V3-typography" }, nt = {
|
|
320
339
|
key: 0,
|
|
321
340
|
ref: "fkInputContainer",
|
|
322
341
|
class: "inputContainer"
|
|
323
|
-
},
|
|
342
|
+
}, ot = { class: "formContainer formkit" }, at = { key: 0 }, it = { class: "dpiV3_stepper draftStepper" }, rt = {
|
|
324
343
|
key: 0,
|
|
325
344
|
class: "draftCTA"
|
|
326
|
-
},
|
|
345
|
+
}, st = {
|
|
327
346
|
key: 1,
|
|
328
347
|
class: "draftCTA"
|
|
329
|
-
},
|
|
348
|
+
}, lt = { key: 1 }, dt = {
|
|
330
349
|
key: 0,
|
|
331
350
|
class: "dpiV3_stepper"
|
|
332
|
-
},
|
|
351
|
+
}, pt = {
|
|
333
352
|
key: 1,
|
|
334
353
|
class: "dpiV3_stepperLanding"
|
|
335
|
-
},
|
|
354
|
+
}, ut = { class: "dpiV3_bydata_logo_wordmark" }, mt = { class: "dpiV3_Illustration-Start" }, ct = {
|
|
336
355
|
key: 2,
|
|
337
356
|
class: "steps"
|
|
338
|
-
},
|
|
357
|
+
}, ft = ["data-step-active", "data-step-valid", "onClick"], vt = { class: "stepBubbleWrap" }, gt = { class: "circle stepCircle" }, St = ["textContent"], ht = {
|
|
339
358
|
key: 0,
|
|
340
359
|
class: "seperatorHorizontalStepper"
|
|
341
|
-
},
|
|
360
|
+
}, Dt = {
|
|
342
361
|
key: 0,
|
|
343
362
|
class: "step inactiveStep"
|
|
344
|
-
},
|
|
363
|
+
}, bt = { class: "step-content" }, _t = { style: { margin: "1rem 2.5rem", padding: "1rem", background: "#f5f5f5", "border-radius": "8px", "overflow-x": "auto", "max-width": "100%" } }, kt = { style: {} }, wt = {
|
|
345
364
|
key: 0,
|
|
346
365
|
class: "dpiV3_Card_Tips--error dpiV3_Card_Tips"
|
|
347
|
-
},
|
|
348
|
-
function
|
|
349
|
-
const b =
|
|
350
|
-
return
|
|
351
|
-
e.isInput ? (
|
|
352
|
-
|
|
353
|
-
t(
|
|
366
|
+
}, Vt = { class: "validation-errors" }, yt = { style: { display: "flex", "flex-direction": "column", gap: "2.5rem" } }, Ct = { class: "dev-actions" };
|
|
367
|
+
function It(e, n, m, h, k, v) {
|
|
368
|
+
const b = i("TextButtonSmall"), g = i("ButtonV3"), C = i("LogoV3"), O = i("ProgressSteps"), F = i("Illustration"), A = i("LandingProjectStep"), o = i("InputPageStep"), H = i("DiscoverabilityStep"), L = i("CategoriesStep"), s = i("WipStep"), I = i("ProjectNameStep"), z = i("ProjectDescriptionStep"), M = i("ProjectStatusStep"), B = i("ProjectOrganisationStep"), w = i("OptionalDataStep"), _ = i("DpiModalBase"), U = i("ProjektPhasenOverviewStep"), G = i("PlanenStep"), N = i("UmstezenStep"), R = i("WeiterdenkenStep"), W = i("ReviewStepDemo"), E = i("StepActionsSection"), K = i("Listbox"), P = i("Card"), q = i("FormKit"), V = i("ModalSimpleV3");
|
|
369
|
+
return p(), u("div", tt, [
|
|
370
|
+
e.isInput ? (p(), u("div", nt, [
|
|
371
|
+
l("div", ot, [
|
|
372
|
+
t(q, {
|
|
354
373
|
id: "dpiForm",
|
|
355
374
|
modelValue: e.formValues,
|
|
356
375
|
"onUpdate:modelValue": n[5] || (n[5] = (r) => e.formValues = r),
|
|
@@ -358,34 +377,34 @@ function ht(e, n, m, S, V, f) {
|
|
|
358
377
|
actions: !1,
|
|
359
378
|
plugins: [e.stepPlugin],
|
|
360
379
|
class: "d-flex",
|
|
361
|
-
onSubmit: n[6] || (n[6] =
|
|
380
|
+
onSubmit: n[6] || (n[6] = me(() => {
|
|
362
381
|
}, ["prevent"]))
|
|
363
382
|
}, {
|
|
364
|
-
default:
|
|
365
|
-
e.dpiContext.edit.fromDraft || e.dpiContext.edit.enabled ? (
|
|
366
|
-
|
|
383
|
+
default: a(() => [
|
|
384
|
+
e.dpiContext.edit.fromDraft || e.dpiContext.edit.enabled ? (p(), u("div", at, [
|
|
385
|
+
l("div", it, [
|
|
367
386
|
t(b, {
|
|
368
387
|
"button-text": "Übersicht",
|
|
369
388
|
"icon-start": "CaretLeft",
|
|
370
389
|
"icon-name": "caretLeft",
|
|
371
390
|
onClick: e.gotToHome
|
|
372
391
|
}, null, 8, ["onClick"]),
|
|
373
|
-
|
|
374
|
-
e.dpiContext.edit.enabled && !e.dpiContext.edit.fromDraft ? (
|
|
375
|
-
t(
|
|
392
|
+
l("div", null, [
|
|
393
|
+
e.dpiContext.edit.enabled && !e.dpiContext.edit.fromDraft ? (p(), u("div", rt, [
|
|
394
|
+
t(g, {
|
|
376
395
|
"button-text": "Veröffentlichung aufheben",
|
|
377
396
|
size: "large",
|
|
378
397
|
onClick: e.todoHandler
|
|
379
398
|
}, null, 8, ["onClick"]),
|
|
380
|
-
t(
|
|
399
|
+
t(g, {
|
|
381
400
|
"button-text": "Veröffentlicht ansehen",
|
|
382
401
|
variant: "secondary",
|
|
383
402
|
size: "large",
|
|
384
403
|
"icon-end": "Out",
|
|
385
404
|
onClick: e.todoHandler
|
|
386
405
|
}, null, 8, ["onClick"])
|
|
387
|
-
])) : (
|
|
388
|
-
t(
|
|
406
|
+
])) : (p(), u("div", st, [
|
|
407
|
+
t(g, {
|
|
389
408
|
"button-text": "Veröffentlichen",
|
|
390
409
|
size: "large",
|
|
391
410
|
onClick: e.handlePublish
|
|
@@ -393,293 +412,312 @@ function ht(e, n, m, S, V, f) {
|
|
|
393
412
|
]))
|
|
394
413
|
])
|
|
395
414
|
])
|
|
396
|
-
])) : (
|
|
397
|
-
e.$env.content.dataProviderInterface.specification === "dcatapdeHappyFlow" && e.activeStep !== "Landing" ? (
|
|
398
|
-
t(
|
|
399
|
-
t(
|
|
415
|
+
])) : (p(), u("div", lt, [
|
|
416
|
+
e.$env.content.dataProviderInterface.specification === "dcatapdeHappyFlow" && e.activeStep !== "Landing" ? (p(), u("div", dt, [
|
|
417
|
+
t(C),
|
|
418
|
+
t(O, {
|
|
400
419
|
checked: e.visitedSteps,
|
|
401
420
|
"onUpdate:checked": n[0] || (n[0] = (r) => e.visitedSteps = r),
|
|
402
421
|
current: e.activeStep,
|
|
403
422
|
"onUpdate:current": n[1] || (n[1] = (r) => e.activeStep = r),
|
|
423
|
+
"hide-first": "",
|
|
404
424
|
steps: e.stepList || []
|
|
405
425
|
}, null, 8, ["checked", "current", "steps"])
|
|
406
|
-
])) : (
|
|
407
|
-
|
|
408
|
-
t(
|
|
426
|
+
])) : (p(), u("div", pt, [
|
|
427
|
+
l("div", ut, [
|
|
428
|
+
t(C)
|
|
409
429
|
]),
|
|
410
|
-
|
|
411
|
-
t(
|
|
430
|
+
l("div", mt, [
|
|
431
|
+
t(F, { "illustration-name": "start" })
|
|
412
432
|
])
|
|
413
433
|
]))
|
|
414
434
|
])),
|
|
415
|
-
e.$env.content.dataProviderInterface.specification != "dcatapdeHappyFlow" ? (
|
|
416
|
-
(
|
|
435
|
+
e.$env.content.dataProviderInterface.specification != "dcatapdeHappyFlow" ? (p(), u("ul", ct, [
|
|
436
|
+
(p(!0), u(x, null, ee(e.steps, (r, f, T) => (p(), u("li", {
|
|
417
437
|
key: r,
|
|
418
|
-
class:
|
|
419
|
-
activeItem: e.activeStep ===
|
|
420
|
-
inactiveStep:
|
|
421
|
-
"has-errors": e.checkStepValidity(
|
|
438
|
+
class: ce(["step", {
|
|
439
|
+
activeItem: e.activeStep === f,
|
|
440
|
+
inactiveStep: f != e.activeStep,
|
|
441
|
+
"has-errors": e.checkStepValidity(f)
|
|
422
442
|
}]),
|
|
423
|
-
"data-step-active": e.activeStep ===
|
|
443
|
+
"data-step-active": e.activeStep === f,
|
|
424
444
|
"data-step-valid": r.valid && r.errorCount === 0,
|
|
425
|
-
onClick: (
|
|
426
|
-
e.activeStep =
|
|
445
|
+
onClick: (J) => {
|
|
446
|
+
e.activeStep = f, e.update(), e.scrollToTop();
|
|
427
447
|
}
|
|
428
448
|
}, [
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
e.checkStepValidity(
|
|
449
|
+
l("div", vt, [
|
|
450
|
+
l("div", gt, y(T + 1), 1),
|
|
451
|
+
e.checkStepValidity(f) ? (p(), u("span", {
|
|
432
452
|
key: 0,
|
|
433
453
|
class: "step--errors",
|
|
434
|
-
textContent:
|
|
435
|
-
}, null, 8,
|
|
436
|
-
|
|
454
|
+
textContent: y(r.errorCount + r.blockingCount)
|
|
455
|
+
}, null, 8, St)) : S("", !0),
|
|
456
|
+
te(y(e.$t(`message.dataupload.steps.${f}Step`)), 1)
|
|
437
457
|
]),
|
|
438
|
-
|
|
439
|
-
], 10,
|
|
440
|
-
e.activeStep === "Overview" ? (
|
|
441
|
-
|
|
442
|
-
]))) :
|
|
443
|
-
])) :
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
n[10] || (n[10] =
|
|
447
|
-
|
|
458
|
+
T != Object.keys(e.steps).length ? (p(), u("div", ht)) : S("", !0)
|
|
459
|
+
], 10, ft))), 128)),
|
|
460
|
+
e.activeStep === "Overview" ? (p(), u("li", Dt, n[9] || (n[9] = [
|
|
461
|
+
l("div", { class: "circle stepCircle" }, null, -1)
|
|
462
|
+
]))) : S("", !0)
|
|
463
|
+
])) : S("", !0),
|
|
464
|
+
l("div", bt, [
|
|
465
|
+
l("details", _t, [
|
|
466
|
+
n[10] || (n[10] = l("summary", null, "Form Values", -1)),
|
|
467
|
+
l("pre", kt, y(JSON.stringify(e.formValues, null, 2)), 1)
|
|
448
468
|
]),
|
|
449
|
-
|
|
450
|
-
t(
|
|
451
|
-
default:
|
|
452
|
-
t(
|
|
453
|
-
t(k, {
|
|
454
|
-
modelValue: e.hologramOpen,
|
|
455
|
-
"onUpdate:modelValue": n[2] || (n[2] = (r) => e.hologramOpen = r)
|
|
456
|
-
}, {
|
|
457
|
-
default: o(() => [
|
|
458
|
-
s("div", null, [
|
|
459
|
-
t(y)
|
|
460
|
-
])
|
|
461
|
-
]),
|
|
462
|
-
_: 1
|
|
463
|
-
}, 8, ["modelValue"])
|
|
469
|
+
l("div", null, [
|
|
470
|
+
t(o, { name: "Landing" }, {
|
|
471
|
+
default: a(() => [
|
|
472
|
+
t(A)
|
|
464
473
|
]),
|
|
465
474
|
_: 1
|
|
466
475
|
}),
|
|
467
|
-
t(
|
|
468
|
-
default:
|
|
469
|
-
t(
|
|
476
|
+
t(o, { name: "Auffindbarkeit/Sichtbarkeit" }, {
|
|
477
|
+
default: a(() => [
|
|
478
|
+
t(H)
|
|
470
479
|
]),
|
|
471
480
|
_: 1
|
|
472
481
|
}),
|
|
473
|
-
t(
|
|
474
|
-
default:
|
|
475
|
-
t(
|
|
482
|
+
t(o, { name: "Auffindbarkeit/Kategorien" }, {
|
|
483
|
+
default: a(() => [
|
|
484
|
+
t(L)
|
|
476
485
|
]),
|
|
477
486
|
_: 1
|
|
478
487
|
}),
|
|
479
|
-
t(
|
|
480
|
-
default:
|
|
481
|
-
t(
|
|
488
|
+
t(o, { name: "Auffindbarkeit/Anwendungsbereiche" }, {
|
|
489
|
+
default: a(() => [
|
|
490
|
+
t(s, { name: "Auffindbarkeit/Anwendungsbereiche" })
|
|
482
491
|
]),
|
|
483
492
|
_: 1
|
|
484
493
|
}),
|
|
485
|
-
t(
|
|
486
|
-
default:
|
|
487
|
-
t(
|
|
494
|
+
t(o, { name: "Grundlegende Informationen/Name" }, {
|
|
495
|
+
default: a(() => [
|
|
496
|
+
t(I)
|
|
497
|
+
]),
|
|
498
|
+
_: 1
|
|
499
|
+
}),
|
|
500
|
+
t(o, { name: "Grundlegende Informationen/Beschreibung" }, {
|
|
501
|
+
default: a(() => [
|
|
502
|
+
t(z)
|
|
488
503
|
]),
|
|
489
504
|
_: 1
|
|
490
505
|
}),
|
|
491
|
-
t(
|
|
492
|
-
default:
|
|
506
|
+
t(o, { name: "Grundlegende Informationen/Projektstatus" }, {
|
|
507
|
+
default: a(() => [
|
|
493
508
|
t(M)
|
|
494
509
|
]),
|
|
495
510
|
_: 1
|
|
496
511
|
}),
|
|
497
|
-
t(
|
|
498
|
-
default:
|
|
499
|
-
t(
|
|
512
|
+
t(o, { name: "Grundlegende Informationen/Organisation" }, {
|
|
513
|
+
default: a(() => [
|
|
514
|
+
t(B, {
|
|
515
|
+
"is-wip": "",
|
|
516
|
+
icon: "https://storage.googleapis.com/open-data-public-files-050923/assets/v2/haar/favicon.png",
|
|
517
|
+
address: "Bahnhofstraße 7",
|
|
518
|
+
"postal-code": "85540",
|
|
519
|
+
city: "Haar",
|
|
520
|
+
phone: "089 46002-0",
|
|
521
|
+
email: "info@stadt-haar.de"
|
|
522
|
+
})
|
|
523
|
+
]),
|
|
524
|
+
_: 1
|
|
525
|
+
}),
|
|
526
|
+
t(o, { name: "Optionale Daten" }, {
|
|
527
|
+
default: a(() => [
|
|
528
|
+
t(w),
|
|
529
|
+
t(_, {
|
|
530
|
+
modelValue: e.hologramOpen,
|
|
531
|
+
"onUpdate:modelValue": n[2] || (n[2] = (r) => e.hologramOpen = r)
|
|
532
|
+
}, {
|
|
533
|
+
default: a(() => [
|
|
534
|
+
t(w)
|
|
535
|
+
]),
|
|
536
|
+
_: 1
|
|
537
|
+
}, 8, ["modelValue"])
|
|
500
538
|
]),
|
|
501
539
|
_: 1
|
|
502
540
|
}),
|
|
503
|
-
t(
|
|
504
|
-
default:
|
|
505
|
-
t(
|
|
541
|
+
t(o, { name: "Projektphasen" }, {
|
|
542
|
+
default: a(() => [
|
|
543
|
+
t(U)
|
|
506
544
|
]),
|
|
507
545
|
_: 1
|
|
508
546
|
}),
|
|
509
|
-
t(
|
|
510
|
-
default:
|
|
511
|
-
t(
|
|
547
|
+
t(o, { name: "Initiieren" }, {
|
|
548
|
+
default: a(() => [
|
|
549
|
+
t(s, { name: "Initiieren" })
|
|
512
550
|
]),
|
|
513
551
|
_: 1
|
|
514
552
|
}),
|
|
515
|
-
t(
|
|
516
|
-
default:
|
|
517
|
-
t(
|
|
553
|
+
t(o, { name: "Planen" }, {
|
|
554
|
+
default: a(() => [
|
|
555
|
+
t(G)
|
|
518
556
|
]),
|
|
519
557
|
_: 1
|
|
520
558
|
}),
|
|
521
|
-
t(
|
|
522
|
-
default:
|
|
523
|
-
t(
|
|
559
|
+
t(o, { name: "Umsetzen" }, {
|
|
560
|
+
default: a(() => [
|
|
561
|
+
t(N)
|
|
524
562
|
]),
|
|
525
563
|
_: 1
|
|
526
564
|
}),
|
|
527
|
-
t(
|
|
528
|
-
default:
|
|
529
|
-
t(
|
|
565
|
+
t(o, { name: "Weiterdenken" }, {
|
|
566
|
+
default: a(() => [
|
|
567
|
+
t(R)
|
|
530
568
|
]),
|
|
531
569
|
_: 1
|
|
532
570
|
}),
|
|
533
|
-
t(
|
|
534
|
-
default:
|
|
535
|
-
t(
|
|
571
|
+
t(o, { name: "Technische Prozessschritte" }, {
|
|
572
|
+
default: a(() => [
|
|
573
|
+
t(s, { name: "Technische Prozessschritte" })
|
|
536
574
|
]),
|
|
537
575
|
_: 1
|
|
538
576
|
}),
|
|
539
|
-
t(
|
|
540
|
-
default:
|
|
541
|
-
t(
|
|
577
|
+
t(o, { name: "1. Datenerfassung/Grundlegende Informationen" }, {
|
|
578
|
+
default: a(() => [
|
|
579
|
+
t(s, { name: "1. Datenerfassung/Grundlegende Informationen" })
|
|
542
580
|
]),
|
|
543
581
|
_: 1
|
|
544
582
|
}),
|
|
545
|
-
t(
|
|
546
|
-
default:
|
|
547
|
-
t(
|
|
583
|
+
t(o, { name: "1. Datenerfassung/Software" }, {
|
|
584
|
+
default: a(() => [
|
|
585
|
+
t(s, { name: "1. Datenerfassung/Software" })
|
|
548
586
|
]),
|
|
549
587
|
_: 1
|
|
550
588
|
}),
|
|
551
|
-
t(
|
|
552
|
-
default:
|
|
553
|
-
t(
|
|
589
|
+
t(o, { name: "1. Datenerfassung/Datensätze" }, {
|
|
590
|
+
default: a(() => [
|
|
591
|
+
t(s, { name: "1. Datenerfassung/Datensätze" })
|
|
554
592
|
]),
|
|
555
593
|
_: 1
|
|
556
594
|
}),
|
|
557
|
-
t(
|
|
558
|
-
default:
|
|
559
|
-
t(
|
|
595
|
+
t(o, { name: "1. Datenerfassung/Hardware" }, {
|
|
596
|
+
default: a(() => [
|
|
597
|
+
t(s, { name: "1. Datenerfassung/Hardware" })
|
|
560
598
|
]),
|
|
561
599
|
_: 1
|
|
562
600
|
}),
|
|
563
|
-
t(
|
|
564
|
-
default:
|
|
565
|
-
t(
|
|
601
|
+
t(o, { name: "2. Datenverarbeitung/Grundlegende Informationen" }, {
|
|
602
|
+
default: a(() => [
|
|
603
|
+
t(s, { name: "2. Datenverarbeitung/Grundlegende Informationen" })
|
|
566
604
|
]),
|
|
567
605
|
_: 1
|
|
568
606
|
}),
|
|
569
|
-
t(
|
|
570
|
-
default:
|
|
571
|
-
t(
|
|
607
|
+
t(o, { name: "2. Datenverarbeitung/Software" }, {
|
|
608
|
+
default: a(() => [
|
|
609
|
+
t(s, { name: "2. Datenverarbeitung/Software" })
|
|
572
610
|
]),
|
|
573
611
|
_: 1
|
|
574
612
|
}),
|
|
575
|
-
t(
|
|
576
|
-
default:
|
|
577
|
-
t(
|
|
613
|
+
t(o, { name: "2. Datenverarbeitung/Datensätze" }, {
|
|
614
|
+
default: a(() => [
|
|
615
|
+
t(s, { name: "2. Datenverarbeitung/Datensätze" })
|
|
578
616
|
]),
|
|
579
617
|
_: 1
|
|
580
618
|
}),
|
|
581
|
-
t(
|
|
582
|
-
default:
|
|
583
|
-
t(
|
|
619
|
+
t(o, { name: "2. Datenverarbeitung/Hardware" }, {
|
|
620
|
+
default: a(() => [
|
|
621
|
+
t(s, { name: "2. Datenverarbeitung/Hardware" })
|
|
584
622
|
]),
|
|
585
623
|
_: 1
|
|
586
624
|
}),
|
|
587
|
-
t(
|
|
588
|
-
default:
|
|
589
|
-
t(
|
|
625
|
+
t(o, { name: "3. Datensimulation/Grundlegende Informationen" }, {
|
|
626
|
+
default: a(() => [
|
|
627
|
+
t(s, { name: "3. Datensimulation/Grundlegende Informationen" })
|
|
590
628
|
]),
|
|
591
629
|
_: 1
|
|
592
630
|
}),
|
|
593
|
-
t(
|
|
594
|
-
default:
|
|
595
|
-
t(
|
|
631
|
+
t(o, { name: "3. Datensimulation/Software" }, {
|
|
632
|
+
default: a(() => [
|
|
633
|
+
t(s, { name: "3. Datensimulation/Software" })
|
|
596
634
|
]),
|
|
597
635
|
_: 1
|
|
598
636
|
}),
|
|
599
|
-
t(
|
|
600
|
-
default:
|
|
601
|
-
t(
|
|
637
|
+
t(o, { name: "3. Datensimulation/Datensätze" }, {
|
|
638
|
+
default: a(() => [
|
|
639
|
+
t(s, { name: "3. Datensimulation/Datensätze" })
|
|
602
640
|
]),
|
|
603
641
|
_: 1
|
|
604
642
|
}),
|
|
605
|
-
t(
|
|
606
|
-
default:
|
|
607
|
-
t(
|
|
643
|
+
t(o, { name: "3. Datensimulation/Hardware" }, {
|
|
644
|
+
default: a(() => [
|
|
645
|
+
t(s, { name: "3. Datensimulation/Hardware" })
|
|
608
646
|
]),
|
|
609
647
|
_: 1
|
|
610
648
|
}),
|
|
611
|
-
t(
|
|
612
|
-
default:
|
|
613
|
-
t(
|
|
649
|
+
t(o, { name: "4. Datenvisualisierung/Grundlegende Informationen" }, {
|
|
650
|
+
default: a(() => [
|
|
651
|
+
t(s, { name: "4. Datenvisualisierung/Grundlegende Informationen" })
|
|
614
652
|
]),
|
|
615
653
|
_: 1
|
|
616
654
|
}),
|
|
617
|
-
t(
|
|
618
|
-
default:
|
|
619
|
-
t(
|
|
655
|
+
t(o, { name: "4. Datenvisualisierung/Software" }, {
|
|
656
|
+
default: a(() => [
|
|
657
|
+
t(s, { name: "4. Datenvisualisierung/Software" })
|
|
620
658
|
]),
|
|
621
659
|
_: 1
|
|
622
660
|
}),
|
|
623
|
-
t(
|
|
624
|
-
default:
|
|
625
|
-
t(
|
|
661
|
+
t(o, { name: "4. Datenvisualisierung/Datensätze" }, {
|
|
662
|
+
default: a(() => [
|
|
663
|
+
t(s, { name: "4. Datenvisualisierung/Datensätze" })
|
|
626
664
|
]),
|
|
627
665
|
_: 1
|
|
628
666
|
}),
|
|
629
|
-
t(
|
|
630
|
-
default:
|
|
631
|
-
t(
|
|
667
|
+
t(o, { name: "4. Datenvisualisierung/Hardware" }, {
|
|
668
|
+
default: a(() => [
|
|
669
|
+
t(s, { name: "4. Datenvisualisierung/Hardware" })
|
|
632
670
|
]),
|
|
633
671
|
_: 1
|
|
634
672
|
}),
|
|
635
|
-
t(
|
|
636
|
-
default:
|
|
637
|
-
e.shouldRenderReviewStep ? (
|
|
673
|
+
t(o, { name: "Vorschau" }, {
|
|
674
|
+
default: a(() => [
|
|
675
|
+
e.shouldRenderReviewStep ? (p(), Z(W, {
|
|
638
676
|
key: e.renderViewStepKey,
|
|
639
677
|
values: e.formValues
|
|
640
|
-
}, null, 8, ["values"])) :
|
|
641
|
-
t(
|
|
678
|
+
}, null, 8, ["values"])) : S("", !0),
|
|
679
|
+
t(E)
|
|
642
680
|
]),
|
|
643
681
|
_: 1
|
|
644
682
|
})
|
|
645
683
|
]),
|
|
646
|
-
n[13] || (n[13] =
|
|
647
|
-
e.showErrorSummary && e.validationMessages.length ? (
|
|
648
|
-
n[11] || (n[11] =
|
|
649
|
-
|
|
650
|
-
(
|
|
684
|
+
n[13] || (n[13] = l("hr", null, null, -1)),
|
|
685
|
+
e.showErrorSummary && e.validationMessages.length ? (p(), u("div", wt, [
|
|
686
|
+
n[11] || (n[11] = l("h4", null, "Bitte korrigieren Sie die folgenden Fehler:", -1)),
|
|
687
|
+
l("ul", Vt, [
|
|
688
|
+
(p(!0), u(x, null, ee(e.validationMessages, (r) => (p(), u("li", { key: r }, y(r), 1))), 128))
|
|
651
689
|
])
|
|
652
|
-
])) :
|
|
653
|
-
n[14] || (n[14] =
|
|
654
|
-
|
|
655
|
-
t(
|
|
656
|
-
title:
|
|
657
|
-
|
|
690
|
+
])) : S("", !0),
|
|
691
|
+
n[14] || (n[14] = l("hr", null, null, -1)),
|
|
692
|
+
l("div", null, [
|
|
693
|
+
t(P, null, {
|
|
694
|
+
title: a(() => n[12] || (n[12] = [
|
|
695
|
+
te(" dev view ", -1)
|
|
658
696
|
])),
|
|
659
|
-
default:
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
t(
|
|
697
|
+
default: a(() => [
|
|
698
|
+
l("div", yt, [
|
|
699
|
+
l("div", Ct, [
|
|
700
|
+
t(g, {
|
|
663
701
|
type: "button",
|
|
664
702
|
variant: "secondary",
|
|
665
703
|
"button-text": "Open Hologram",
|
|
666
704
|
onClick: n[3] || (n[3] = (r) => e.hologramOpen = !0)
|
|
667
705
|
}),
|
|
668
|
-
t(
|
|
706
|
+
t(g, {
|
|
669
707
|
type: "button",
|
|
670
708
|
variant: "secondary",
|
|
671
709
|
"button-text": "Previous",
|
|
672
710
|
onClick: e.goToPreviousStep
|
|
673
711
|
}, null, 8, ["onClick"]),
|
|
674
|
-
t(
|
|
712
|
+
t(g, {
|
|
675
713
|
type: "button",
|
|
676
714
|
variant: "secondary",
|
|
677
715
|
"button-text": "Next",
|
|
678
716
|
onClick: e.handleSubmit
|
|
679
717
|
}, null, 8, ["onClick"])
|
|
680
718
|
]),
|
|
681
|
-
|
|
682
|
-
t(
|
|
719
|
+
l("div", null, [
|
|
720
|
+
t(K, {
|
|
683
721
|
modelValue: e.stepSelect,
|
|
684
722
|
"onUpdate:modelValue": n[4] || (n[4] = (r) => e.stepSelect = r),
|
|
685
723
|
label: "Go to step",
|
|
@@ -695,7 +733,7 @@ function ht(e, n, m, S, V, f) {
|
|
|
695
733
|
]),
|
|
696
734
|
_: 1
|
|
697
735
|
}, 8, ["modelValue", "plugins"]),
|
|
698
|
-
e.activeSimpleModal ? (
|
|
736
|
+
e.activeSimpleModal ? (p(), Z(V, {
|
|
699
737
|
key: 0,
|
|
700
738
|
buttons: e.modalSimpleConf.button,
|
|
701
739
|
"header-text": e.modalSimpleConf.header,
|
|
@@ -703,12 +741,12 @@ function ht(e, n, m, S, V, f) {
|
|
|
703
741
|
action: e.modalSimpleConf.action,
|
|
704
742
|
onClose: n[7] || (n[7] = (r) => e.activeSimpleModal = !1),
|
|
705
743
|
onActionHandling: n[8] || (n[8] = (r) => e.gotToHome())
|
|
706
|
-
}, null, 8, ["buttons", "header-text", "text", "action"])) :
|
|
744
|
+
}, null, 8, ["buttons", "header-text", "text", "action"])) : S("", !0)
|
|
707
745
|
])
|
|
708
|
-
], 512)) :
|
|
746
|
+
], 512)) : S("", !0)
|
|
709
747
|
]);
|
|
710
748
|
}
|
|
711
|
-
const
|
|
749
|
+
const wn = /* @__PURE__ */ Xe(et, [["render", It]]);
|
|
712
750
|
export {
|
|
713
|
-
|
|
751
|
+
wn as default
|
|
714
752
|
};
|