@raclettejs/workbench 0.1.19 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/.raclette/backend/raclette.config.js +519 -0
  2. package/{yarn.lock → .raclette/backend/yarn.lock} +1014 -796
  3. package/.raclette/frontend/raclette.config.js +47 -0
  4. package/.raclette/frontend/yarn.lock +3428 -0
  5. package/.raclette/raclette.config.js +643 -0
  6. package/.raclette/virtual/backend/README.md +172 -0
  7. package/.raclette/virtual/backend/raclette.config.js +519 -0
  8. package/.raclette/virtual/backend/yarn.lock +3773 -0
  9. package/.raclette/virtual/frontend/README.md +511 -0
  10. package/.raclette/virtual/frontend/raclette.config.js +47 -0
  11. package/.raclette/virtual/frontend/src/core/lib/eggs/readme.md +75 -0
  12. package/.raclette/virtual/frontend/yarn.lock +3428 -0
  13. package/CHANGELOG.md +5 -0
  14. package/i18n/de-DE.json +17 -1
  15. package/i18n/en-EU.json +17 -1
  16. package/i18n/sk-SK.json +17 -1
  17. package/package.json +4 -2
  18. package/packages.json +3 -1
  19. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionWidgetsLayout.vue +8 -3
  20. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetContextMenu.vue +60 -0
  21. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetIcon.vue +4 -7
  22. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetList.vue +34 -117
  23. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListFlat.vue +20 -0
  24. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListGrouped.vue +50 -0
  25. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListHeader.vue +213 -0
  26. package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetListItem.vue +56 -0
  27. package/plugins/pacifico__compositions/frontend/composables/useWidgetList.ts +288 -0
  28. package/raclette.config.js +4 -1
@@ -0,0 +1,519 @@
1
+
2
+ // Generated Raclette Backend Configuration
3
+ // This file is auto-generated, do not edit directly
4
+
5
+ export const racletteConfig = {
6
+ "name": "raclette-workbench",
7
+ "env": {
8
+ "development": {
9
+ "RACLETTE_DEBUG_MODE": true
10
+ },
11
+ "production": {
12
+ "NODE_ENV": "production"
13
+ }
14
+ },
15
+ "modules": [],
16
+ "plugins": [],
17
+ "global": {
18
+ "requireAuthentication": true,
19
+ "requiresAuthentication": true
20
+ },
21
+ "service": "backend",
22
+ "sockets": {
23
+ "autoSend": {
24
+ "compositions": false,
25
+ "interactionLinks": false,
26
+ "projectConfig": true,
27
+ "customData": {
28
+ "compositions": [
29
+ {
30
+ "_id": "compositionList",
31
+ "pathname": {
32
+ "default": "composition-list"
33
+ },
34
+ "widgetsLayout": [
35
+ [
36
+ {
37
+ "column": 12,
38
+ "widget": {
39
+ "uuid": "compositionList",
40
+ "name": "CompositionList",
41
+ "pluginKey": "pacifico__compositions"
42
+ }
43
+ }
44
+ ]
45
+ ]
46
+ },
47
+ {
48
+ "_id": "compositionCreate",
49
+ "pathname": {
50
+ "default": "composition-create"
51
+ },
52
+ "widgetsLayout": [
53
+ [
54
+ {
55
+ "column": 12,
56
+ "widget": {
57
+ "uuid": "compositionCreate",
58
+ "name": "CompositionCreate",
59
+ "pluginKey": "pacifico__compositions"
60
+ }
61
+ }
62
+ ]
63
+ ]
64
+ },
65
+ {
66
+ "_id": "compositionEdit",
67
+ "pathname": {
68
+ "default": "composition-edit"
69
+ },
70
+ "widgetsLayout": [
71
+ [
72
+ {
73
+ "column": 12,
74
+ "widget": {
75
+ "uuid": "compositionEdit",
76
+ "name": "CompositionEdit",
77
+ "pluginKey": "pacifico__compositions"
78
+ }
79
+ }
80
+ ]
81
+ ],
82
+ "queryParameters": [
83
+ "id"
84
+ ]
85
+ },
86
+ {
87
+ "_id": "interactionLinkList",
88
+ "pathname": {
89
+ "default": "interactionLink-list"
90
+ },
91
+ "widgetsLayout": [
92
+ [
93
+ {
94
+ "column": 12,
95
+ "widget": {
96
+ "uuid": "interactionLinkList",
97
+ "name": "InteractionLinkList",
98
+ "pluginKey": "pacifico__interactionlinks"
99
+ }
100
+ }
101
+ ]
102
+ ]
103
+ },
104
+ {
105
+ "_id": "interactionLinkCreate",
106
+ "pathname": {
107
+ "default": "interactionLink-create"
108
+ },
109
+ "widgetsLayout": [
110
+ [
111
+ {
112
+ "column": 12,
113
+ "widget": {
114
+ "uuid": "interactionLinkCreate",
115
+ "name": "InteractionLinkCreate",
116
+ "pluginKey": "pacifico__interactionlinks"
117
+ }
118
+ }
119
+ ]
120
+ ]
121
+ },
122
+ {
123
+ "_id": "interactionLinkEdit",
124
+ "pathname": {
125
+ "default": "interactionLink-edit"
126
+ },
127
+ "widgetsLayout": [
128
+ [
129
+ {
130
+ "column": 12,
131
+ "widget": {
132
+ "uuid": "interactionLinkEdit",
133
+ "name": "InteractionLinkEdit",
134
+ "pluginKey": "pacifico__interactionlinks"
135
+ }
136
+ }
137
+ ]
138
+ ],
139
+ "queryParameters": [
140
+ "id"
141
+ ]
142
+ },
143
+ {
144
+ "_id": "userList",
145
+ "pathname": {
146
+ "default": "user-list"
147
+ },
148
+ "widgetsLayout": [
149
+ [
150
+ {
151
+ "column": 12,
152
+ "widget": {
153
+ "uuid": "userList",
154
+ "name": "UserList",
155
+ "pluginKey": "pacifico__users"
156
+ }
157
+ }
158
+ ]
159
+ ]
160
+ },
161
+ {
162
+ "_id": "userCreate",
163
+ "pathname": {
164
+ "default": "user-create"
165
+ },
166
+ "widgetsLayout": [
167
+ [
168
+ {
169
+ "column": 12,
170
+ "widget": {
171
+ "uuid": "userCreate",
172
+ "name": "UserCreate",
173
+ "pluginKey": "pacifico__users"
174
+ }
175
+ }
176
+ ]
177
+ ]
178
+ },
179
+ {
180
+ "_id": "userEdit",
181
+ "pathname": {
182
+ "default": "user-edit"
183
+ },
184
+ "widgetsLayout": [
185
+ [
186
+ {
187
+ "column": 12,
188
+ "widget": {
189
+ "uuid": "userEdit",
190
+ "name": "UserEdit",
191
+ "pluginKey": "pacifico__users"
192
+ }
193
+ }
194
+ ]
195
+ ],
196
+ "queryParameters": [
197
+ "id"
198
+ ]
199
+ },
200
+ {
201
+ "_id": "tagList",
202
+ "pathname": {
203
+ "default": "tag-list"
204
+ },
205
+ "widgetsLayout": [
206
+ [
207
+ {
208
+ "column": 12,
209
+ "widget": {
210
+ "uuid": "tagList",
211
+ "name": "TagList",
212
+ "pluginKey": "pacifico__tags"
213
+ }
214
+ }
215
+ ]
216
+ ]
217
+ },
218
+ {
219
+ "_id": "tagCreate",
220
+ "pathname": {
221
+ "default": "tag-create"
222
+ },
223
+ "widgetsLayout": [
224
+ [
225
+ {
226
+ "column": 12,
227
+ "widget": {
228
+ "uuid": "tagCreate",
229
+ "name": "TagCreate",
230
+ "pluginKey": "pacifico__tags"
231
+ }
232
+ }
233
+ ]
234
+ ]
235
+ },
236
+ {
237
+ "_id": "tagEdit",
238
+ "pathname": {
239
+ "default": "tag-edit"
240
+ },
241
+ "widgetsLayout": [
242
+ [
243
+ {
244
+ "column": 12,
245
+ "widget": {
246
+ "uuid": "tagEdit",
247
+ "name": "TagEdit",
248
+ "pluginKey": "pacifico__tags"
249
+ }
250
+ }
251
+ ]
252
+ ],
253
+ "queryParameters": [
254
+ "id"
255
+ ]
256
+ },
257
+ {
258
+ "_id": "pluginList",
259
+ "pathname": {
260
+ "default": "plugin-list"
261
+ },
262
+ "widgetsLayout": [
263
+ [
264
+ {
265
+ "column": 12,
266
+ "widget": {
267
+ "uuid": "pluginList",
268
+ "name": "PluginList",
269
+ "pluginKey": "pacifico__plugins"
270
+ }
271
+ }
272
+ ]
273
+ ]
274
+ },
275
+ {
276
+ "_id": "pluginDetail",
277
+ "pathname": {
278
+ "default": "plugin-detail"
279
+ },
280
+ "widgetsLayout": [
281
+ [
282
+ {
283
+ "column": 12,
284
+ "widget": {
285
+ "uuid": "pluginDetail",
286
+ "name": "PluginDetail",
287
+ "pluginKey": "pacifico__plugins"
288
+ }
289
+ }
290
+ ]
291
+ ],
292
+ "queryParameters": [
293
+ "id"
294
+ ]
295
+ },
296
+ {
297
+ "_id": "projectDetail",
298
+ "pathname": {
299
+ "default": "project-detail"
300
+ },
301
+ "widgetsLayout": [
302
+ [
303
+ {
304
+ "column": 12,
305
+ "widget": {
306
+ "uuid": "ProjectDetail",
307
+ "name": "ProjectDetail",
308
+ "pluginKey": "pacifico__project"
309
+ }
310
+ }
311
+ ]
312
+ ]
313
+ }
314
+ ],
315
+ "interactionLinks": [
316
+ {
317
+ "_id": "compositionListInteractionLink",
318
+ "composition": "compositionList",
319
+ "slotType": "page",
320
+ "triggers": [
321
+ {
322
+ "type": "page-navigation",
323
+ "settings": {
324
+ "icon": "mdi-file-document",
325
+ "title": {
326
+ "default": "Compositions",
327
+ "de": "Kompositionen"
328
+ },
329
+ "sortOrder": 0,
330
+ "navigationBarType": "navItem"
331
+ }
332
+ }
333
+ ]
334
+ },
335
+ {
336
+ "_id": "compositionCreateInteractionLink",
337
+ "composition": "compositionCreate",
338
+ "slotType": "page",
339
+ "triggers": []
340
+ },
341
+ {
342
+ "_id": "compositionEditInteractionLink",
343
+ "composition": "compositionEdit",
344
+ "slotType": "page",
345
+ "triggers": [],
346
+ "queryParameters": [
347
+ "id"
348
+ ]
349
+ },
350
+ {
351
+ "_id": "interactionLinkListInteractionLink",
352
+ "composition": "interactionLinkList",
353
+ "slotType": "page",
354
+ "triggers": [
355
+ {
356
+ "type": "page-navigation",
357
+ "settings": {
358
+ "icon": "mdi-link-box-variant",
359
+ "title": {
360
+ "default": "Interaction Links",
361
+ "de": "Interaktionslinks"
362
+ },
363
+ "sortOrder": 1,
364
+ "navigationBarType": "navItem"
365
+ }
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "_id": "interactionLinkCreateInteractionLink",
371
+ "composition": "interactionLinkCreate",
372
+ "slotType": "page",
373
+ "triggers": []
374
+ },
375
+ {
376
+ "_id": "interactionLinkEditInteractionLink",
377
+ "composition": "interactionLinkEdit",
378
+ "slotType": "page",
379
+ "triggers": [],
380
+ "queryParameters": [
381
+ "id"
382
+ ]
383
+ },
384
+ {
385
+ "_id": "userListInteractionLink",
386
+ "composition": "userList",
387
+ "slotType": "page",
388
+ "triggers": [
389
+ {
390
+ "type": "page-navigation",
391
+ "settings": {
392
+ "icon": "mdi-account-details",
393
+ "title": {
394
+ "default": "Users",
395
+ "de": "Nutzer"
396
+ },
397
+ "sortOrder": 2,
398
+ "navigationBarType": "navItem"
399
+ }
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "_id": "userCreateInteractionLink",
405
+ "composition": "userCreate",
406
+ "slotType": "page",
407
+ "triggers": []
408
+ },
409
+ {
410
+ "_id": "userEditInteractionLink",
411
+ "composition": "userEdit",
412
+ "slotType": "page",
413
+ "triggers": [],
414
+ "queryParameters": [
415
+ "id"
416
+ ]
417
+ },
418
+ {
419
+ "_id": "tagListInteractionLink",
420
+ "composition": "tagList",
421
+ "slotType": "page",
422
+ "triggers": [
423
+ {
424
+ "type": "page-navigation",
425
+ "settings": {
426
+ "icon": "mdi-tag",
427
+ "title": {
428
+ "default": "Tags",
429
+ "de": "Tags"
430
+ },
431
+ "sortOrder": 3,
432
+ "navigationBarType": "navItem"
433
+ }
434
+ }
435
+ ]
436
+ },
437
+ {
438
+ "_id": "tagCreateInteractionLink",
439
+ "composition": "tagCreate",
440
+ "slotType": "page",
441
+ "triggers": []
442
+ },
443
+ {
444
+ "_id": "tagEditInteractionLink",
445
+ "composition": "tagEdit",
446
+ "slotType": "page",
447
+ "triggers": [],
448
+ "queryParameters": [
449
+ "id"
450
+ ]
451
+ },
452
+ {
453
+ "_id": "pluginListInteractionLink",
454
+ "composition": "pluginList",
455
+ "slotType": "page",
456
+ "triggers": [
457
+ {
458
+ "type": "page-navigation",
459
+ "settings": {
460
+ "icon": "mdi-puzzle",
461
+ "title": {
462
+ "default": "Plugins",
463
+ "de": "Plugins"
464
+ },
465
+ "sortOrder": 4,
466
+ "navigationBarType": "navItem"
467
+ }
468
+ }
469
+ ]
470
+ },
471
+ {
472
+ "_id": "pluginDetailInteractionLink",
473
+ "composition": "pluginDetail",
474
+ "slotType": "page",
475
+ "triggers": [],
476
+ "queryParameters": [
477
+ "pluginKey"
478
+ ]
479
+ },
480
+ {
481
+ "_id": "projectDetailInteractionLink",
482
+ "composition": "projectDetail",
483
+ "slotType": "page",
484
+ "triggers": [
485
+ {
486
+ "type": "page-navigation",
487
+ "settings": {
488
+ "icon": "mdi-application-cog",
489
+ "title": {
490
+ "default": "Project",
491
+ "de": "Projekt"
492
+ },
493
+ "sortOrder": 0,
494
+ "navigationBarType": "footerItem"
495
+ }
496
+ }
497
+ ]
498
+ }
499
+ ]
500
+ }
501
+ },
502
+ "security": {
503
+ "requireAuth": true,
504
+ "tokenValidation": "jwt"
505
+ },
506
+ "options": {
507
+ "adapter": "memory",
508
+ "connectionTimeout": 3000,
509
+ "pingInterval": 1500,
510
+ "pingTimeout": 1000
511
+ }
512
+ },
513
+ "additionalPluginPaths": [
514
+ "/app/src/workbenchPlugins"
515
+ ],
516
+ "onlyAllowLoginWithAdminTag": true
517
+ };
518
+
519
+ export default racletteConfig;