@raclettejs/workbench 0.0.1
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/README.md +1 -0
- package/config/compositions.js +282 -0
- package/config/interactionLinks.js +164 -0
- package/i18n/de-DE.json +245 -0
- package/i18n/en-EU.json +245 -0
- package/i18n/sk-SK.json +245 -0
- package/package.json +63 -0
- package/packages.json +33 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionConfiguration.vue +140 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionIntegration.vue +3 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionWidgetsLayout.vue +129 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetContextMenu.vue +53 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetIcon.vue +99 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetList.vue +122 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetRenderer.vue +65 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetSettings.vue +96 -0
- package/plugins/pacifico__compositions/frontend/widgets/CompositionCreateWidget.vue +51 -0
- package/plugins/pacifico__compositions/frontend/widgets/CompositionEditWidget.vue +66 -0
- package/plugins/pacifico__compositions/frontend/widgets/CompositionListWidget.vue +132 -0
- package/plugins/pacifico__compositions/raclette.plugin.ts +8 -0
- package/plugins/pacifico__core/backend/index.ts +25 -0
- package/plugins/pacifico__core/backend/routes.ts +220 -0
- package/plugins/pacifico__core/raclette.plugin.ts +9 -0
- package/plugins/pacifico__interactionLinks/frontend/components/InteractionLinkConfiguration.vue +145 -0
- package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkCreateWidget.vue +48 -0
- package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkEditWidget.vue +66 -0
- package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkListWidget.vue +126 -0
- package/plugins/pacifico__interactionLinks/raclette.plugin.ts +8 -0
- package/plugins/pacifico__plugins/frontend/index.ts +42 -0
- package/plugins/pacifico__plugins/frontend/widgets/PluginDetailWidget.vue +26 -0
- package/plugins/pacifico__plugins/frontend/widgets/PluginListWidget.vue +59 -0
- package/plugins/pacifico__plugins/raclette.plugin.ts +8 -0
- package/plugins/pacifico__tags/frontend/components/TagConfiguration.vue +99 -0
- package/plugins/pacifico__tags/frontend/widgets/TagCreateWidget.vue +43 -0
- package/plugins/pacifico__tags/frontend/widgets/TagEditWidget.vue +64 -0
- package/plugins/pacifico__tags/frontend/widgets/TagListWidget.vue +71 -0
- package/plugins/pacifico__tags/raclette.plugin.ts +8 -0
- package/plugins/pacifico__users/frontend/components/UserConfiguration.vue +110 -0
- package/plugins/pacifico__users/frontend/widgets/UserCreateWidget.vue +48 -0
- package/plugins/pacifico__users/frontend/widgets/UserEditWidget.vue +64 -0
- package/plugins/pacifico__users/frontend/widgets/UserListWidget.vue +86 -0
- package/plugins/pacifico__users/raclette.plugin.ts +8 -0
- package/raclette.config.js +150 -0
- package/services/frontend/.DS_Store +0 -0
- package/services/frontend/public/favicon.png +0 -0
- package/services/frontend/public/home-icon.png +0 -0
- package/services/frontend/public/logo.png +0 -0
- package/services/frontend/src/app/.DS_Store +0 -0
- package/services/frontend/src/app/components/BaseDataTable.vue +284 -0
- package/services/frontend/src/app/components/dynamicForm/DynamicForm.vue +207 -0
- package/services/frontend/src/app/components/dynamicForm/DynamicFormTypes.ts +63 -0
- package/services/frontend/src/app/components/dynamicForm/DynamicInput.vue +344 -0
- package/services/frontend/src/app/components/dynamicForm/TextDivider.vue +13 -0
- package/services/frontend/src/app/components/dynamicForm/testing/DynamicFormInputTesting.vue +477 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/CheckboxInput.vue +16 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/ColorInput.vue +52 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/CompositionInput.vue +32 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/IconInput.vue +40 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/ListInput.vue +51 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/LocalizedInput.vue +51 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/PasswordInput.vue +23 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/RecordInput.vue +91 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/SwitchInput.vue +17 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/TagsInput.vue +58 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/TriggerInput.vue +159 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/UserInput.vue +63 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/mdi-icons.ts +7002 -0
- package/services/frontend/src/app/components/dynamicForm/validators.ts +19 -0
- package/services/frontend/src/app/components/stepNavigator/StepNavigator.vue +331 -0
- package/services/frontend/src/app/components/stepNavigator/StepNavigatorTypes.ts +12 -0
- package/services/frontend/src/app/composables/useUserHelper.ts +254 -0
- package/services/frontend/src/app/composables/useVantaFog.ts +37 -0
- package/services/frontend/src/app/composables/useWorkbenchPlugins.ts +44 -0
- package/services/frontend/src/orchestrator/.DS_Store +0 -0
- package/services/frontend/src/orchestrator/LoginApp.vue +62 -0
- package/services/frontend/src/orchestrator/WelcomeScreen.vue +39 -0
- package/services/frontend/src/orchestrator/assets/styles/themes/dark.ts +39 -0
- package/services/frontend/src/orchestrator/assets/styles/themes/highContrast.ts +39 -0
- package/services/frontend/src/orchestrator/assets/styles/themes/light.ts +39 -0
- package/services/frontend/src/orchestrator/components/InitProjectScreen.vue +298 -0
- package/services/frontend/src/orchestrator/components/LoginScreen.vue +73 -0
- package/services/frontend/src/orchestrator/components/RacletteAdCorner.vue +313 -0
- package/services/frontend/src/orchestrator/components/layout/AppButton.vue +109 -0
- package/services/frontend/src/orchestrator/components/layout/AppHeadline.vue +46 -0
- package/services/frontend/src/orchestrator/components/layout/AppLabelledInput.vue +94 -0
- package/services/frontend/src/orchestrator/components/layout/AppModal.vue +28 -0
- package/services/frontend/src/orchestrator/components/layout/SvgButtonArrow.vue +14 -0
- package/services/frontend/src/orchestrator/composables/useWelcomeScreen.ts +19 -0
- package/yarn.lock +3435 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Pacifico Workbench
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
export default [
|
|
2
|
+
// composition administration
|
|
3
|
+
{
|
|
4
|
+
_id: "compositionList",
|
|
5
|
+
description: "Ein Test",
|
|
6
|
+
pathname: {
|
|
7
|
+
default: "composition-list",
|
|
8
|
+
},
|
|
9
|
+
widgetsLayout: [
|
|
10
|
+
[
|
|
11
|
+
{
|
|
12
|
+
column: 12,
|
|
13
|
+
widget: {
|
|
14
|
+
uuid: "compositionList",
|
|
15
|
+
name: "CompositionList",
|
|
16
|
+
pluginKey: "pacifico__compositions",
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
],
|
|
20
|
+
],
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
_id: "compositionCreate",
|
|
24
|
+
description: "Ein Test",
|
|
25
|
+
pathname: {
|
|
26
|
+
default: "composition-create",
|
|
27
|
+
},
|
|
28
|
+
widgetsLayout: [
|
|
29
|
+
[
|
|
30
|
+
{
|
|
31
|
+
column: 12,
|
|
32
|
+
widget: {
|
|
33
|
+
uuid: "compositionCreate",
|
|
34
|
+
name: "CompositionCreate",
|
|
35
|
+
pluginKey: "pacifico__compositions",
|
|
36
|
+
pluginKey: "pacifico__compositions",
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
],
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
_id: "compositionEdit",
|
|
44
|
+
description: "Ein Test",
|
|
45
|
+
pathname: {
|
|
46
|
+
default: "composition-edit",
|
|
47
|
+
},
|
|
48
|
+
widgetsLayout: [
|
|
49
|
+
[
|
|
50
|
+
{
|
|
51
|
+
column: 12,
|
|
52
|
+
widget: {
|
|
53
|
+
uuid: "compositionEdit",
|
|
54
|
+
name: "CompositionEdit",
|
|
55
|
+
pluginKey: "pacifico__compositions",
|
|
56
|
+
pluginKey: "pacifico__compositions",
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
],
|
|
61
|
+
queryParameters: ["id"],
|
|
62
|
+
},
|
|
63
|
+
// interactionLinks administration
|
|
64
|
+
{
|
|
65
|
+
_id: "interactionLinkList",
|
|
66
|
+
description: "Ein Test",
|
|
67
|
+
pathname: {
|
|
68
|
+
default: "interactionLink-list",
|
|
69
|
+
},
|
|
70
|
+
widgetsLayout: [
|
|
71
|
+
[
|
|
72
|
+
{
|
|
73
|
+
column: 12,
|
|
74
|
+
widget: {
|
|
75
|
+
uuid: "interactionLinkList",
|
|
76
|
+
name: "InteractionLinkList",
|
|
77
|
+
pluginKey: "pacifico__interactionlinks",
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
_id: "interactionLinkCreate",
|
|
85
|
+
description: "Ein Test",
|
|
86
|
+
pathname: {
|
|
87
|
+
default: "interactionLink-create",
|
|
88
|
+
},
|
|
89
|
+
widgetsLayout: [
|
|
90
|
+
[
|
|
91
|
+
{
|
|
92
|
+
column: 12,
|
|
93
|
+
widget: {
|
|
94
|
+
uuid: "interactionLinkCreate",
|
|
95
|
+
name: "InteractionLinkCreate",
|
|
96
|
+
pluginKey: "pacifico__interactionlinks",
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
],
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
_id: "interactionLinkEdit",
|
|
104
|
+
description: "Ein Test",
|
|
105
|
+
pathname: {
|
|
106
|
+
default: "interactionLink-edit",
|
|
107
|
+
},
|
|
108
|
+
widgetsLayout: [
|
|
109
|
+
[
|
|
110
|
+
{
|
|
111
|
+
column: 12,
|
|
112
|
+
widget: {
|
|
113
|
+
uuid: "interactionLinkEdit",
|
|
114
|
+
name: "InteractionLinkEdit",
|
|
115
|
+
pluginKey: "pacifico__interactionlinks",
|
|
116
|
+
},
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
],
|
|
120
|
+
queryParameters: ["id"],
|
|
121
|
+
},
|
|
122
|
+
|
|
123
|
+
// users administration
|
|
124
|
+
{
|
|
125
|
+
_id: "userList",
|
|
126
|
+
description: "Ein Test",
|
|
127
|
+
pathname: {
|
|
128
|
+
default: "user-list",
|
|
129
|
+
},
|
|
130
|
+
widgetsLayout: [
|
|
131
|
+
[
|
|
132
|
+
{
|
|
133
|
+
column: 12,
|
|
134
|
+
widget: {
|
|
135
|
+
uuid: "userList",
|
|
136
|
+
name: "UserList",
|
|
137
|
+
pluginKey: "pacifico__users",
|
|
138
|
+
},
|
|
139
|
+
},
|
|
140
|
+
],
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
_id: "userCreate",
|
|
145
|
+
description: "Ein Test",
|
|
146
|
+
pathname: {
|
|
147
|
+
default: "user-create",
|
|
148
|
+
},
|
|
149
|
+
widgetsLayout: [
|
|
150
|
+
[
|
|
151
|
+
{
|
|
152
|
+
column: 12,
|
|
153
|
+
widget: {
|
|
154
|
+
uuid: "userCreate",
|
|
155
|
+
name: "UserCreate",
|
|
156
|
+
pluginKey: "pacifico__users",
|
|
157
|
+
},
|
|
158
|
+
},
|
|
159
|
+
],
|
|
160
|
+
],
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
_id: "userEdit",
|
|
164
|
+
description: "Ein Test",
|
|
165
|
+
pathname: {
|
|
166
|
+
default: "user-edit",
|
|
167
|
+
},
|
|
168
|
+
widgetsLayout: [
|
|
169
|
+
[
|
|
170
|
+
{
|
|
171
|
+
column: 12,
|
|
172
|
+
widget: {
|
|
173
|
+
uuid: "userEdit",
|
|
174
|
+
name: "UserEdit",
|
|
175
|
+
pluginKey: "pacifico__users",
|
|
176
|
+
},
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
],
|
|
180
|
+
queryParameters: ["id"],
|
|
181
|
+
},
|
|
182
|
+
// tags administration
|
|
183
|
+
{
|
|
184
|
+
_id: "tagList",
|
|
185
|
+
description: "Ein Test",
|
|
186
|
+
pathname: {
|
|
187
|
+
default: "tag-list",
|
|
188
|
+
},
|
|
189
|
+
widgetsLayout: [
|
|
190
|
+
[
|
|
191
|
+
{
|
|
192
|
+
column: 12,
|
|
193
|
+
widget: {
|
|
194
|
+
uuid: "tagList",
|
|
195
|
+
name: "TagList",
|
|
196
|
+
pluginKey: "pacifico__tags",
|
|
197
|
+
},
|
|
198
|
+
},
|
|
199
|
+
],
|
|
200
|
+
],
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
_id: "tagCreate",
|
|
204
|
+
description: "Ein Test",
|
|
205
|
+
pathname: {
|
|
206
|
+
default: "tag-create",
|
|
207
|
+
},
|
|
208
|
+
widgetsLayout: [
|
|
209
|
+
[
|
|
210
|
+
{
|
|
211
|
+
column: 12,
|
|
212
|
+
widget: {
|
|
213
|
+
uuid: "tagCreate",
|
|
214
|
+
name: "TagCreate",
|
|
215
|
+
pluginKey: "pacifico__tags",
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
],
|
|
219
|
+
],
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
_id: "tagEdit",
|
|
223
|
+
description: "Ein Test",
|
|
224
|
+
pathname: {
|
|
225
|
+
default: "tag-edit",
|
|
226
|
+
},
|
|
227
|
+
widgetsLayout: [
|
|
228
|
+
[
|
|
229
|
+
{
|
|
230
|
+
column: 12,
|
|
231
|
+
widget: {
|
|
232
|
+
uuid: "tagEdit",
|
|
233
|
+
name: "TagEdit",
|
|
234
|
+
pluginKey: "pacifico__tags",
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
],
|
|
238
|
+
],
|
|
239
|
+
queryParameters: ["id"],
|
|
240
|
+
},
|
|
241
|
+
|
|
242
|
+
// plugins configuration
|
|
243
|
+
{
|
|
244
|
+
_id: "pluginList",
|
|
245
|
+
description: "Ein Test",
|
|
246
|
+
pathname: {
|
|
247
|
+
default: "plugin-list",
|
|
248
|
+
},
|
|
249
|
+
widgetsLayout: [
|
|
250
|
+
[
|
|
251
|
+
{
|
|
252
|
+
column: 12,
|
|
253
|
+
widget: {
|
|
254
|
+
uuid: "pluginList",
|
|
255
|
+
name: "PluginList",
|
|
256
|
+
pluginKey: "pacifico__plugins",
|
|
257
|
+
},
|
|
258
|
+
},
|
|
259
|
+
],
|
|
260
|
+
],
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
_id: "pluginDetail",
|
|
264
|
+
description: "Ein Test",
|
|
265
|
+
pathname: {
|
|
266
|
+
default: "plugin-detail",
|
|
267
|
+
},
|
|
268
|
+
widgetsLayout: [
|
|
269
|
+
[
|
|
270
|
+
{
|
|
271
|
+
column: 12,
|
|
272
|
+
widget: {
|
|
273
|
+
uuid: "pluginDetail",
|
|
274
|
+
name: "PluginDetail",
|
|
275
|
+
pluginKey: "pacifico__plugins",
|
|
276
|
+
},
|
|
277
|
+
},
|
|
278
|
+
],
|
|
279
|
+
],
|
|
280
|
+
queryParameters: ["id"],
|
|
281
|
+
},
|
|
282
|
+
] //satisfies Composition[]
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import compositions from "./compositions.js"
|
|
2
|
+
|
|
3
|
+
export default [
|
|
4
|
+
// composition administration
|
|
5
|
+
{
|
|
6
|
+
_id: "compositionListInteractionLink",
|
|
7
|
+
composition: compositions[0]._id,
|
|
8
|
+
slotType: "page",
|
|
9
|
+
triggers: [
|
|
10
|
+
{
|
|
11
|
+
type: "page-navigation",
|
|
12
|
+
settings: {
|
|
13
|
+
icon: "mdi-file-document",
|
|
14
|
+
title: {
|
|
15
|
+
default: "Compositions",
|
|
16
|
+
de: "Kompositionen",
|
|
17
|
+
},
|
|
18
|
+
sortOrder: 0,
|
|
19
|
+
navigationBarType: "navItem",
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
_id: "compositionCreateInteractionLink",
|
|
26
|
+
composition: compositions[1]._id,
|
|
27
|
+
slotType: "page",
|
|
28
|
+
triggers: [],
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
_id: "compositionEditInteractionLink",
|
|
32
|
+
composition: compositions[2]._id,
|
|
33
|
+
slotType: "page",
|
|
34
|
+
triggers: [],
|
|
35
|
+
queryParameters: ["id"],
|
|
36
|
+
},
|
|
37
|
+
// interactionLinks administration
|
|
38
|
+
{
|
|
39
|
+
_id: "interactionLinkListInteractionLink",
|
|
40
|
+
composition: compositions[3]._id,
|
|
41
|
+
slotType: "page",
|
|
42
|
+
triggers: [
|
|
43
|
+
{
|
|
44
|
+
type: "page-navigation",
|
|
45
|
+
settings: {
|
|
46
|
+
icon: "mdi-link-box-variant",
|
|
47
|
+
title: {
|
|
48
|
+
default: "interactionLink",
|
|
49
|
+
de: "interactionLink",
|
|
50
|
+
},
|
|
51
|
+
sortOrder: 1,
|
|
52
|
+
navigationBarType: "navItem",
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
_id: "interactionLinkCreateInteractionLink",
|
|
59
|
+
composition: compositions[4]._id,
|
|
60
|
+
slotType: "page",
|
|
61
|
+
triggers: [],
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
_id: "interactionLinkEditInteractionLink",
|
|
65
|
+
composition: compositions[5]._id,
|
|
66
|
+
slotType: "page",
|
|
67
|
+
triggers: [],
|
|
68
|
+
queryParameters: ["id"],
|
|
69
|
+
},
|
|
70
|
+
// users administration
|
|
71
|
+
{
|
|
72
|
+
_id: "userListInteractionLink",
|
|
73
|
+
composition: compositions[6]._id,
|
|
74
|
+
slotType: "page",
|
|
75
|
+
triggers: [
|
|
76
|
+
{
|
|
77
|
+
type: "page-navigation",
|
|
78
|
+
settings: {
|
|
79
|
+
icon: "mdi-account-details",
|
|
80
|
+
title: {
|
|
81
|
+
default: "users",
|
|
82
|
+
de: "users",
|
|
83
|
+
},
|
|
84
|
+
sortOrder: 2,
|
|
85
|
+
navigationBarType: "navItem",
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
_id: "userCreateInteractionLink",
|
|
92
|
+
composition: compositions[7]._id,
|
|
93
|
+
slotType: "page",
|
|
94
|
+
triggers: [],
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
_id: "userEditInteractionLink",
|
|
98
|
+
composition: compositions[8]._id,
|
|
99
|
+
slotType: "page",
|
|
100
|
+
triggers: [],
|
|
101
|
+
queryParameters: ["id"],
|
|
102
|
+
},
|
|
103
|
+
// tags administration
|
|
104
|
+
{
|
|
105
|
+
_id: "tagListInteractionLink",
|
|
106
|
+
composition: compositions[9]._id,
|
|
107
|
+
slotType: "page",
|
|
108
|
+
triggers: [
|
|
109
|
+
{
|
|
110
|
+
type: "page-navigation",
|
|
111
|
+
settings: {
|
|
112
|
+
icon: "mdi-tag",
|
|
113
|
+
title: {
|
|
114
|
+
default: "tags",
|
|
115
|
+
de: "tags",
|
|
116
|
+
},
|
|
117
|
+
sortOrder: 2,
|
|
118
|
+
navigationBarType: "navItem",
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
],
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
_id: "tagCreateInteractionLink",
|
|
125
|
+
composition: compositions[10]._id,
|
|
126
|
+
slotType: "page",
|
|
127
|
+
triggers: [],
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
_id: "tagEditInteractionLink",
|
|
131
|
+
composition: compositions[11]._id,
|
|
132
|
+
slotType: "page",
|
|
133
|
+
triggers: [],
|
|
134
|
+
queryParameters: ["id"],
|
|
135
|
+
},
|
|
136
|
+
|
|
137
|
+
// plugins configuration
|
|
138
|
+
{
|
|
139
|
+
_id: "pluginListInteractionLink",
|
|
140
|
+
composition: compositions[12]._id,
|
|
141
|
+
slotType: "page",
|
|
142
|
+
triggers: [
|
|
143
|
+
{
|
|
144
|
+
type: "page-navigation",
|
|
145
|
+
settings: {
|
|
146
|
+
icon: "mdi-puzzle",
|
|
147
|
+
title: {
|
|
148
|
+
default: "plugins",
|
|
149
|
+
de: "plugins",
|
|
150
|
+
},
|
|
151
|
+
sortOrder: 2,
|
|
152
|
+
navigationBarType: "navItem",
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
_id: "pluginDetailInteractionLink",
|
|
159
|
+
composition: compositions[13]._id,
|
|
160
|
+
slotType: "page",
|
|
161
|
+
triggers: [],
|
|
162
|
+
queryParameters: ["pluginKey"],
|
|
163
|
+
},
|
|
164
|
+
] // satisfies Partial<InteractionLink>[]
|
package/i18n/de-DE.json
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workbench": {
|
|
3
|
+
"global": {
|
|
4
|
+
"back": "Zurück",
|
|
5
|
+
"save": "Speichern",
|
|
6
|
+
"next_step": "Nächster Schritt",
|
|
7
|
+
"save_finish": "Speichern & Fertigstellen"
|
|
8
|
+
},
|
|
9
|
+
"loginScreen": {
|
|
10
|
+
"title": "Willkommen beim Raclette-Arbeitsbereich",
|
|
11
|
+
"eMail": "E-Mail",
|
|
12
|
+
"password": "Passwort",
|
|
13
|
+
"login": "Anmelden"
|
|
14
|
+
},
|
|
15
|
+
"welcomeScreen": {
|
|
16
|
+
"title": "Willkommen beim Raclette-Arbeitsbereich!",
|
|
17
|
+
"whatIsWhat": "Was ist was?",
|
|
18
|
+
"compositionInfo": "Erstelle Kompositionen, um das Layout deiner Seiten oder Modale zu definieren",
|
|
19
|
+
"interactionLinkInfo": "Erstelle InteractionLinks, um festzulegen, wie Benutzer auf Seiten oder Modale zugreifen können",
|
|
20
|
+
"userInfo": "Erstelle Benutzer, damit sie deine App nutzen und etwas Käse bekommen können!",
|
|
21
|
+
"tagInfo": "Erstelle Tags, um... na ja... Dinge zu taggen!",
|
|
22
|
+
"pluginInfo": "Schau dir deine installierten Plugins an, füge Konfigurationen hinzu oder genieße einfach den Anblick der Tabelle",
|
|
23
|
+
"wizard": {
|
|
24
|
+
"title": "Willkommen in deinem",
|
|
25
|
+
"setupTitle": "Lass uns deine Anwendung einrichten",
|
|
26
|
+
"projectTitle_title": "Wie soll deine Anwendung heißen?",
|
|
27
|
+
"projectTitle_description": "Keine Sorge, du kannst das später jederzeit ändern",
|
|
28
|
+
"adminUser": "Registriere deinen Admin-Benutzer",
|
|
29
|
+
"yourFirstName": "Dein Vorname",
|
|
30
|
+
"yourLastName": "Dein Nachname",
|
|
31
|
+
"email_title": "Gib deine E-Mail-Adresse ein",
|
|
32
|
+
"email_description": "Diese E-Mail wird nicht verifiziert und dient nur zum Login",
|
|
33
|
+
"password": "Gib dein sicheres Passwort ein",
|
|
34
|
+
"thatsIt": "Das war’s!",
|
|
35
|
+
"submitText": "Sobald du auf \"Absenden\" klickst, erstellen wir deine Anwendung",
|
|
36
|
+
"loginWithAccount": "Du wirst mit dem neu erstellten Admin-Benutzer angemeldet",
|
|
37
|
+
"submit": "Absenden",
|
|
38
|
+
"continue": "Weiter"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"baseDataTable": {
|
|
42
|
+
"searchPlaceholder": "{dataName} durchsuchen",
|
|
43
|
+
"createDataButton": "{dataName} erstellen",
|
|
44
|
+
"deleteDataTitle": "{dataName} löschen",
|
|
45
|
+
"deleteDataConfirmMessage": "Bist du sicher, dass du {article} {dataName} <strong>{value}</strong> löschen willst?",
|
|
46
|
+
"deleteDataConfirmButton": "Löschen",
|
|
47
|
+
"deleteDataConfirmCancel": "Abbrechen"
|
|
48
|
+
},
|
|
49
|
+
"compositionList": {
|
|
50
|
+
"dataName": "Komposition",
|
|
51
|
+
"dataArticle": "die",
|
|
52
|
+
"tableHeaders": {
|
|
53
|
+
"title": "Bezeichnung",
|
|
54
|
+
"status": "Status",
|
|
55
|
+
"tags": "Tags",
|
|
56
|
+
"lastEditor": "Letzter Bearbeiter",
|
|
57
|
+
"author": "Autor",
|
|
58
|
+
"updatedAt": "Zuletzt geändert"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"compositionCreate": {
|
|
62
|
+
"title": "Neue Komposition"
|
|
63
|
+
},
|
|
64
|
+
"compositionEdit": {
|
|
65
|
+
"title": "Komposition bearbeiten"
|
|
66
|
+
},
|
|
67
|
+
"compositionConfiguration": {
|
|
68
|
+
"steps": {
|
|
69
|
+
"configuration": {
|
|
70
|
+
"title": "Konfiguration",
|
|
71
|
+
"subtitle": "Grundeinstellungen festlegen"
|
|
72
|
+
},
|
|
73
|
+
"widgetLayout": {
|
|
74
|
+
"title": "Widget Layout",
|
|
75
|
+
"subtitle": "Seiteninhalte konfigurieren"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"divider": {
|
|
79
|
+
"general": "Allgemein",
|
|
80
|
+
"navigation": "Navigation"
|
|
81
|
+
},
|
|
82
|
+
"title": {
|
|
83
|
+
"title": "Bezeichnung / Titel",
|
|
84
|
+
"description": "Dieses Feld dient nur der internen Zuordnung der Komposition und wird nicht im Produkt angezeigt."
|
|
85
|
+
},
|
|
86
|
+
"description": {
|
|
87
|
+
"title": "Beschreibung",
|
|
88
|
+
"description": "Dieses Feld dient nur der internen Beschreibung der Komposition und wird nicht im Produkt angezeigt."
|
|
89
|
+
},
|
|
90
|
+
"tags": {
|
|
91
|
+
"title": "Tags",
|
|
92
|
+
"description": "Dieses Feld dient nur der internen Zuordnung der Komposition und wird nicht im Produkt angezeigt."
|
|
93
|
+
},
|
|
94
|
+
"pathname": {
|
|
95
|
+
"title": "Pfadname",
|
|
96
|
+
"description": "Beschreibt den technischen Titel, der entweder als URL-Pfad, Query-Parameter und andersweitige Referenzierung genutzt wird. Darf keine Leerzeichen enthalten."
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"interactionLinkList": {
|
|
100
|
+
"dataName": "InteractionLink",
|
|
101
|
+
"dataArticle": "den",
|
|
102
|
+
"tableHeaders": {
|
|
103
|
+
"composition": "Komposition",
|
|
104
|
+
"tags": "Tags",
|
|
105
|
+
"lastEditor": "Letzter Bearbeiter",
|
|
106
|
+
"slotType": "Slot Typ",
|
|
107
|
+
"triggers": "Trigger",
|
|
108
|
+
"author": "Autor",
|
|
109
|
+
"updatedAt": "Zuletzt geändert"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"interactionLinkCreate": {
|
|
113
|
+
"title": "Interaction Link erstellen"
|
|
114
|
+
},
|
|
115
|
+
"interactionLinkEdit": {
|
|
116
|
+
"title": "Interaction Link editieren"
|
|
117
|
+
},
|
|
118
|
+
"interactionLinkConfiguration": {
|
|
119
|
+
"dividers": {
|
|
120
|
+
"general": "Allgemein",
|
|
121
|
+
"behavior": "Verhalten"
|
|
122
|
+
},
|
|
123
|
+
"isLandingPage": {
|
|
124
|
+
"title": "Landingpage",
|
|
125
|
+
"description": "Wird als Landingpage verwendet"
|
|
126
|
+
},
|
|
127
|
+
"composition": {
|
|
128
|
+
"title": "Komposition",
|
|
129
|
+
"description": "Die verknüpfte Komposition"
|
|
130
|
+
},
|
|
131
|
+
"description": {
|
|
132
|
+
"title": "Beschreibung",
|
|
133
|
+
"description": "Dieses Feld dient nur der internen Beschreibung der Komposition und wird nicht im Produkt angezeigt."
|
|
134
|
+
},
|
|
135
|
+
"tags": {
|
|
136
|
+
"title": "Tags",
|
|
137
|
+
"description": "Dieses Feld dient nur der internen Zuordnung der Komposition und wird nicht im Produkt angezeigt."
|
|
138
|
+
},
|
|
139
|
+
"slotType": {
|
|
140
|
+
"title": "Slot Typ",
|
|
141
|
+
"description": "Wie wird die verlinkte Komposition angezeigt?"
|
|
142
|
+
},
|
|
143
|
+
"triggers": {
|
|
144
|
+
"title": "Auslöser",
|
|
145
|
+
"description": "Wie wird der InteractionLink ausgelöst?"
|
|
146
|
+
},
|
|
147
|
+
"queryParameters": {
|
|
148
|
+
"title": "Query Parameter",
|
|
149
|
+
"description": "Welche Query Parameter gibt es?"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"userList": {
|
|
153
|
+
"dataName": "Benutzer",
|
|
154
|
+
"dataArticle": "den",
|
|
155
|
+
"tableHeaders": {
|
|
156
|
+
"email": "E-Mail",
|
|
157
|
+
"lastname": "Nachname",
|
|
158
|
+
"firstname": "Vorname",
|
|
159
|
+
"tags": "Tags",
|
|
160
|
+
"updatedAt": "Zuletzt geändert"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"userCreate": {
|
|
164
|
+
"title": "Benutzer erstellen"
|
|
165
|
+
},
|
|
166
|
+
"userEdit": {
|
|
167
|
+
"title": "Benutzer editieren"
|
|
168
|
+
},
|
|
169
|
+
"userConfiguration": {
|
|
170
|
+
"dividers": {
|
|
171
|
+
"general": "Allgemein"
|
|
172
|
+
},
|
|
173
|
+
"email": {
|
|
174
|
+
"title": "E-Mail Adresse",
|
|
175
|
+
"description": "Wird für die Anmeldung verwendet."
|
|
176
|
+
},
|
|
177
|
+
"password": {
|
|
178
|
+
"title": "Passwort"
|
|
179
|
+
},
|
|
180
|
+
"lastname": {
|
|
181
|
+
"title": "Nachname"
|
|
182
|
+
},
|
|
183
|
+
"firstname": {
|
|
184
|
+
"title": "Vorname"
|
|
185
|
+
},
|
|
186
|
+
"tags": {
|
|
187
|
+
"title": "Tags",
|
|
188
|
+
"description": "Dieses Feld dient nur der internen Zuordnung der Komposition und wird nicht im Produkt angezeigt."
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"tagList": {
|
|
192
|
+
"dataName": "Tag",
|
|
193
|
+
"dataArticle": "den",
|
|
194
|
+
"tableHeaders": {
|
|
195
|
+
"title": "Bezeichnung",
|
|
196
|
+
"type": "Typ",
|
|
197
|
+
"tags": "Tags",
|
|
198
|
+
"updatedAt": "Zuletzt geändert"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"tagCreate": {
|
|
202
|
+
"title": "Tag erstellen"
|
|
203
|
+
},
|
|
204
|
+
"tagEdit": {
|
|
205
|
+
"title": "Tag bearbeiten"
|
|
206
|
+
},
|
|
207
|
+
"tagConfiguration": {
|
|
208
|
+
"dividers": {
|
|
209
|
+
"general": "Allgemein"
|
|
210
|
+
},
|
|
211
|
+
"title": {
|
|
212
|
+
"title": "Bezeichnung"
|
|
213
|
+
},
|
|
214
|
+
"color": {
|
|
215
|
+
"title": "Farbe"
|
|
216
|
+
},
|
|
217
|
+
"type": {
|
|
218
|
+
"title": "Typ",
|
|
219
|
+
"description": "Der Typ des Tags."
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"dynamicInputs": {
|
|
223
|
+
"triggers": {
|
|
224
|
+
"triggerTypeLabel": "Auslöser Typ",
|
|
225
|
+
"titleLabel": "Titel",
|
|
226
|
+
"sortOrderLabel": "Sortierreihenfolge",
|
|
227
|
+
"navigationBarTypeLabel": "Navigationsleistentyp",
|
|
228
|
+
"newTriggerLabel": "Neuer Auslöser"
|
|
229
|
+
},
|
|
230
|
+
"user": {
|
|
231
|
+
"label": "Benutzer",
|
|
232
|
+
"placeholder": "Benutzer wählen"
|
|
233
|
+
},
|
|
234
|
+
"validation": {
|
|
235
|
+
"required": "{field} ist erforderlich",
|
|
236
|
+
"minLength": "{field} muss mindestens {minLength} Zeichen lang sein",
|
|
237
|
+
"maxLength": "{field} darf höchstens {maxLength} Zeichen lang sein",
|
|
238
|
+
"invalidFormat": "{field} Format ist ungültig",
|
|
239
|
+
"defaultValueRequired": "Mindestens ein Standardwert ist erforderlich.",
|
|
240
|
+
"invalidEmail": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
|
|
241
|
+
"invalidUrl": "Bitte geben Sie eine gültige URL ein"
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|