@processmaker/screen-builder 3.8.17 → 3.8.18
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/vue-form-builder.css +1 -1
- package/dist/vue-form-builder.es.js +61 -5
- package/dist/vue-form-builder.es.js.map +1 -1
- package/dist/vue-form-builder.umd.js +1 -1
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/inspector/variables-to-submit.vue +113 -26
package/package.json
CHANGED
|
@@ -43,15 +43,16 @@
|
|
|
43
43
|
|
|
44
44
|
<!-- Select All and Search Section -->
|
|
45
45
|
<div class="controls-section">
|
|
46
|
-
<
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
@
|
|
50
|
-
:disabled="filteredVariables.length === 0
|
|
46
|
+
<b-form-checkbox
|
|
47
|
+
:checked="allSelected"
|
|
48
|
+
:indeterminate="someSelected"
|
|
49
|
+
@change="toggleSelectAll"
|
|
50
|
+
:disabled="filteredVariables.length === 0"
|
|
51
|
+
class="select-all-checkbox"
|
|
51
52
|
data-cy="variables-to-submit-select-all"
|
|
52
53
|
>
|
|
53
54
|
{{ $t('Select All') }}
|
|
54
|
-
</
|
|
55
|
+
</b-form-checkbox>
|
|
55
56
|
<button
|
|
56
57
|
type="button"
|
|
57
58
|
class="search-button"
|
|
@@ -164,10 +165,13 @@ export default {
|
|
|
164
165
|
|
|
165
166
|
// Extract calculated variables (computed properties)
|
|
166
167
|
Object.assign(variables, this.extractCalculatedVariables());
|
|
168
|
+
|
|
169
|
+
// Extract watcher output variables
|
|
170
|
+
Object.assign(variables, this.extractWatcherVariables());
|
|
167
171
|
|
|
168
|
-
// Filter: exclude _parent variables
|
|
172
|
+
// Filter: exclude _parent variables and invalid variable names
|
|
169
173
|
return Object.keys(variables)
|
|
170
|
-
.filter(variable =>
|
|
174
|
+
.filter(variable => this.isValidVariableName(variable))
|
|
171
175
|
.sort();
|
|
172
176
|
},
|
|
173
177
|
|
|
@@ -211,6 +215,22 @@ export default {
|
|
|
211
215
|
return this.requiredVariables.filter(
|
|
212
216
|
variable => !this.selectedVariables.includes(variable)
|
|
213
217
|
);
|
|
218
|
+
},
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Check if all filtered variables are selected
|
|
222
|
+
*/
|
|
223
|
+
allSelected() {
|
|
224
|
+
return this.filteredVariables.length > 0 &&
|
|
225
|
+
this.filteredVariables.every(v => this.selectedVariables.includes(v));
|
|
226
|
+
},
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* Check if some (but not all) filtered variables are selected
|
|
230
|
+
*/
|
|
231
|
+
someSelected() {
|
|
232
|
+
const selectedCount = this.filteredVariables.filter(v => this.selectedVariables.includes(v)).length;
|
|
233
|
+
return selectedCount > 0 && selectedCount < this.filteredVariables.length;
|
|
214
234
|
}
|
|
215
235
|
},
|
|
216
236
|
watch: {
|
|
@@ -231,8 +251,13 @@ export default {
|
|
|
231
251
|
this.$emit('change', []);
|
|
232
252
|
}
|
|
233
253
|
},
|
|
234
|
-
isEnabled(newValue) {
|
|
235
|
-
if (!
|
|
254
|
+
isEnabled(newValue, oldValue) {
|
|
255
|
+
if (newValue && !oldValue) {
|
|
256
|
+
// When enabled for the first time, select all variables
|
|
257
|
+
this.selectedVariables = [...this.availableVariables];
|
|
258
|
+
this.$emit('input', this.selectedVariables);
|
|
259
|
+
this.$emit('change', this.selectedVariables);
|
|
260
|
+
} else if (!newValue) {
|
|
236
261
|
// When disabled, clear selection to submit all variables
|
|
237
262
|
this.selectedVariables = [];
|
|
238
263
|
this.$emit('input', []);
|
|
@@ -250,6 +275,11 @@ export default {
|
|
|
250
275
|
'$root.computed'() {
|
|
251
276
|
// Force recomputation when computed properties change
|
|
252
277
|
this.$forceUpdate();
|
|
278
|
+
},
|
|
279
|
+
// Watch for watchers changes in App.vue
|
|
280
|
+
'$root.watchers'() {
|
|
281
|
+
// Force recomputation when watchers change
|
|
282
|
+
this.$forceUpdate();
|
|
253
283
|
}
|
|
254
284
|
},
|
|
255
285
|
methods: {
|
|
@@ -289,6 +319,14 @@ export default {
|
|
|
289
319
|
this.selectedVariables = this.selectedVariables.filter(v => !filteredSet.has(v));
|
|
290
320
|
},
|
|
291
321
|
|
|
322
|
+
toggleSelectAll(checked) {
|
|
323
|
+
if (checked) {
|
|
324
|
+
this.selectAll();
|
|
325
|
+
} else {
|
|
326
|
+
this.deselectAll();
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
|
|
292
330
|
toggleSearch() {
|
|
293
331
|
this.showSearch = !this.showSearch;
|
|
294
332
|
if (!this.showSearch) {
|
|
@@ -296,6 +334,23 @@ export default {
|
|
|
296
334
|
}
|
|
297
335
|
},
|
|
298
336
|
|
|
337
|
+
/**
|
|
338
|
+
* Check if a variable name is valid
|
|
339
|
+
* Uses same logic as dot_notation validation rule
|
|
340
|
+
*/
|
|
341
|
+
isValidVariableName(name) {
|
|
342
|
+
if (!name || typeof name !== 'string') {
|
|
343
|
+
return false;
|
|
344
|
+
}
|
|
345
|
+
if (name.startsWith('_parent.')) {
|
|
346
|
+
return false;
|
|
347
|
+
}
|
|
348
|
+
// Same regex as dot_notation: starts with letter, followed by letters, numbers, or underscores
|
|
349
|
+
const validPartRegex = /^[a-zA-Z][a-zA-Z0-9_]*$/;
|
|
350
|
+
const parts = name.split('.');
|
|
351
|
+
return parts.every(part => validPartRegex.test(part));
|
|
352
|
+
},
|
|
353
|
+
|
|
299
354
|
/**
|
|
300
355
|
* Extract calculated variables (computed properties) from the screen
|
|
301
356
|
* Searches in multiple locations: App.vue, builder, or parent components
|
|
@@ -348,6 +403,47 @@ export default {
|
|
|
348
403
|
|
|
349
404
|
return [];
|
|
350
405
|
},
|
|
406
|
+
|
|
407
|
+
/**
|
|
408
|
+
* Extract watcher output variables from the screen
|
|
409
|
+
*/
|
|
410
|
+
extractWatcherVariables() {
|
|
411
|
+
const watcherVars = {};
|
|
412
|
+
const watchers = this.getWatchers() || [];
|
|
413
|
+
|
|
414
|
+
watchers.forEach(watcher => {
|
|
415
|
+
if (watcher.byPass) return;
|
|
416
|
+
|
|
417
|
+
// Output variable (for scripts)
|
|
418
|
+
if (watcher.output_variable) {
|
|
419
|
+
watcherVars[watcher.output_variable] = null;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
// Data mapping variables (for data sources)
|
|
423
|
+
try {
|
|
424
|
+
const config = typeof watcher.script_configuration === 'string'
|
|
425
|
+
? JSON.parse(watcher.script_configuration)
|
|
426
|
+
: watcher.script_configuration;
|
|
427
|
+
(config?.dataMapping || []).forEach(m => {
|
|
428
|
+
if (m.key) watcherVars[m.key] = null;
|
|
429
|
+
});
|
|
430
|
+
} catch {
|
|
431
|
+
console.error('Invalid JSON in script_configuration for watcher:', watcher.name);
|
|
432
|
+
}
|
|
433
|
+
});
|
|
434
|
+
|
|
435
|
+
return watcherVars;
|
|
436
|
+
},
|
|
437
|
+
|
|
438
|
+
/**
|
|
439
|
+
* Get watchers from various sources
|
|
440
|
+
*/
|
|
441
|
+
getWatchers() {
|
|
442
|
+
return this.$root?.$data?.watchers
|
|
443
|
+
|| this.$root?.$children?.[0]?.watchers
|
|
444
|
+
|| this.$root?.$children?.[0]?.$data?.watchers
|
|
445
|
+
|| [];
|
|
446
|
+
},
|
|
351
447
|
|
|
352
448
|
/**
|
|
353
449
|
* Extract variables from form config
|
|
@@ -634,25 +730,16 @@ export default {
|
|
|
634
730
|
margin-top: 0;
|
|
635
731
|
}
|
|
636
732
|
|
|
637
|
-
.select-all-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
padding: 0;
|
|
641
|
-
color: #0d6efd;
|
|
642
|
-
font-size: 15px;
|
|
733
|
+
.select-all-checkbox {
|
|
734
|
+
margin: 0;
|
|
735
|
+
font-size: 14px;
|
|
643
736
|
font-weight: 600;
|
|
644
|
-
|
|
645
|
-
text-decoration: none;
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
.select-all-button:hover:not(:disabled) {
|
|
649
|
-
color: #0a58ca;
|
|
650
|
-
text-decoration: none;
|
|
737
|
+
color: #495057;
|
|
651
738
|
}
|
|
652
739
|
|
|
653
|
-
.select-all-
|
|
654
|
-
|
|
655
|
-
|
|
740
|
+
.select-all-checkbox >>> .custom-control-label {
|
|
741
|
+
cursor: pointer;
|
|
742
|
+
user-select: none;
|
|
656
743
|
}
|
|
657
744
|
|
|
658
745
|
.search-button {
|