@mediusinc/mng-commons 0.4.1 → 0.4.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/assets/i18n/en.json +24 -19
- package/assets/i18n/sl.json +22 -17
- package/esm2020/lib/components/action/action.component.mjs +4 -4
- package/esm2020/lib/components/action/editor/action-editor.component.mjs +4 -8
- package/esm2020/lib/components/form/formly/fields/formly-field-lookup-dialog/formly-field-lookup-dialog.component.mjs +1 -1
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-form/formly-field-table-dialog-form.component.mjs +1 -1
- package/esm2020/lib/components/form/formly/fields/formly-field-table-dialog-multiselect/formly-field-table-dialog-multiselect.component.mjs +1 -1
- package/esm2020/lib/components/tableview/table/table.component.mjs +7 -3
- package/esm2020/lib/components/tableview/tableview.component.mjs +4 -4
- package/esm2020/lib/descriptors/action.descriptor.mjs +29 -10
- package/esm2020/lib/descriptors/editor.descriptor.mjs +4 -4
- package/esm2020/lib/descriptors/field.descriptor.mjs +3 -3
- package/esm2020/lib/pipes/i18n-property.pipe.mjs +3 -3
- package/esm2020/lib/pipes/link-formatter.pipe.mjs +1 -1
- package/esm2020/lib/services/action-executor.service.mjs +13 -14
- package/esm2020/lib/services/view-container.component.service.mjs +2 -2
- package/esm2020/lib/utils/i18n.util.mjs +212 -144
- package/esm2020/lib/utils/notification.util.mjs +16 -17
- package/fesm2015/mediusinc-mng-commons.mjs +363 -277
- package/fesm2015/mediusinc-mng-commons.mjs.map +1 -1
- package/fesm2020/mediusinc-mng-commons.mjs +357 -275
- package/fesm2020/mediusinc-mng-commons.mjs.map +1 -1
- package/lib/components/tableview/table/table.component.d.ts +4 -1
- package/lib/descriptors/action.descriptor.d.ts +13 -6
- package/lib/pipes/link-formatter.pipe.d.ts +1 -1
- package/lib/services/action-executor.service.d.ts +4 -2
- package/lib/services/view-container.component.service.d.ts +1 -1
- package/lib/utils/i18n.util.d.ts +52 -21
- package/lib/utils/notification.util.d.ts +4 -4
- package/package.json +1 -1
|
@@ -74,7 +74,7 @@ import * as i9 from 'primeng/tooltip';
|
|
|
74
74
|
import { TooltipModule } from 'primeng/tooltip';
|
|
75
75
|
import { throwError, of, Subject, Observable, from, BehaviorSubject, ReplaySubject, switchMap, distinctUntilChanged, combineLatest } from 'rxjs';
|
|
76
76
|
import 'reflect-metadata';
|
|
77
|
-
import {
|
|
77
|
+
import { map, mergeMap, first, catchError, filter, finalize, startWith } from 'rxjs/operators';
|
|
78
78
|
import * as i4$1 from '@angular/platform-browser';
|
|
79
79
|
import { trigger, state, style, transition, animate } from '@angular/animations';
|
|
80
80
|
|
|
@@ -418,9 +418,11 @@ class ActionDescriptor {
|
|
|
418
418
|
this._parentType = parentType;
|
|
419
419
|
this._parentTypeName = parentType ? TypeUtil.findTypeName(parentType) : undefined;
|
|
420
420
|
this._parentProperty = parentProperty;
|
|
421
|
-
this.
|
|
422
|
-
|
|
423
|
-
|
|
421
|
+
if (this._parentTypeName || this._model) {
|
|
422
|
+
this._i18nModelActionBaseKey = this._parentTypeName
|
|
423
|
+
? `${this._parentTypeName}.actions.${this._parentProperty}_${actionName}`
|
|
424
|
+
: `${this._model.typeName}.actions.${actionName}`;
|
|
425
|
+
}
|
|
424
426
|
}
|
|
425
427
|
get model() {
|
|
426
428
|
return this._model;
|
|
@@ -547,6 +549,9 @@ class ActionDescriptor {
|
|
|
547
549
|
return this;
|
|
548
550
|
}
|
|
549
551
|
withServiceType(serviceType) {
|
|
552
|
+
if (!this._model) {
|
|
553
|
+
throw new Error(`Cannot set data provider if no model type is provided for action ${this._actionName}`);
|
|
554
|
+
}
|
|
550
555
|
this._dataProvider = new DataProvider(this._model.type, serviceType);
|
|
551
556
|
return this;
|
|
552
557
|
}
|
|
@@ -642,6 +647,12 @@ class ActionDescriptor {
|
|
|
642
647
|
SizeEnum[SizeEnum["ExtraLarge"] = 4] = "ExtraLarge";
|
|
643
648
|
})(SizeEnum = ActionDescriptor.SizeEnum || (ActionDescriptor.SizeEnum = {}));
|
|
644
649
|
})(ActionDescriptor || (ActionDescriptor = {}));
|
|
650
|
+
class ActionSimpleDescriptor extends ActionDescriptor {
|
|
651
|
+
constructor(actionName, modelType, idProperty, titleProperty) {
|
|
652
|
+
const model = modelType ? new ModelDescriptor(modelType, idProperty, titleProperty) : null;
|
|
653
|
+
super(model, actionName);
|
|
654
|
+
}
|
|
655
|
+
}
|
|
645
656
|
class ActionEditorDescriptor extends ActionDescriptor {
|
|
646
657
|
constructor(editorDescriptor, actionName, parentType, parentProperty) {
|
|
647
658
|
super(editorDescriptor.model, actionName, parentType, parentProperty);
|
|
@@ -704,6 +715,9 @@ class ActionEditorDescriptor extends ActionDescriptor {
|
|
|
704
715
|
return this;
|
|
705
716
|
}
|
|
706
717
|
withServiceType(serviceType) {
|
|
718
|
+
if (!this._model) {
|
|
719
|
+
throw new Error(`Cannot set data provider if no model type is provided for action ${this._actionName}`);
|
|
720
|
+
}
|
|
707
721
|
this._dataProvider = new EditorDataProvider(this._model.type, serviceType);
|
|
708
722
|
return this;
|
|
709
723
|
}
|
|
@@ -762,7 +776,7 @@ class ActionEditorSubmitDescriptor extends ActionDescriptor {
|
|
|
762
776
|
})(ActionEditorSubmitDescriptor || (ActionEditorSubmitDescriptor = {}));
|
|
763
777
|
class ActionEditorDetailsDescriptor extends ActionEditorDescriptor {
|
|
764
778
|
constructor(editorDescriptor) {
|
|
765
|
-
super(editorDescriptor,
|
|
779
|
+
super(editorDescriptor, ActionEditorDetailsDescriptor.ACTION_NAME);
|
|
766
780
|
this.withPosition(ActionPositionEnum.RowClick);
|
|
767
781
|
this.withRouteTrigger(':itemId');
|
|
768
782
|
this.withFetchFunction(ctx => ctx.dataProvider?.fetch && ctx.data?.itemId
|
|
@@ -783,9 +797,10 @@ class ActionEditorDetailsDescriptor extends ActionEditorDescriptor {
|
|
|
783
797
|
return this;
|
|
784
798
|
}
|
|
785
799
|
}
|
|
800
|
+
ActionEditorDetailsDescriptor.ACTION_NAME = 'details';
|
|
786
801
|
class ActionEditorAddDescriptor extends ActionEditorDescriptor {
|
|
787
802
|
constructor(editorDescriptor) {
|
|
788
|
-
super(editorDescriptor,
|
|
803
|
+
super(editorDescriptor, ActionEditorAddDescriptor.ACTION_NAME);
|
|
789
804
|
this.withPosition(ActionPositionEnum.ToolbarLeft);
|
|
790
805
|
this.withRouteTrigger('add');
|
|
791
806
|
this.withSubmitFunction(ctx => ctx.dataProvider?.create ? ctx.dataProvider.create(ctx.data?.item, ctx.serviceInstance) : throwError(new Error(`Data provider create function is missing.`)));
|
|
@@ -808,9 +823,10 @@ class ActionEditorAddDescriptor extends ActionEditorDescriptor {
|
|
|
808
823
|
return this;
|
|
809
824
|
}
|
|
810
825
|
}
|
|
826
|
+
ActionEditorAddDescriptor.ACTION_NAME = 'add';
|
|
811
827
|
class ActionEditorEditDescriptor extends ActionEditorDescriptor {
|
|
812
828
|
constructor(editorDescriptor) {
|
|
813
|
-
super(editorDescriptor,
|
|
829
|
+
super(editorDescriptor, ActionEditorEditDescriptor.ACTION_NAME);
|
|
814
830
|
this.withPosition(ActionPositionEnum.RowInline);
|
|
815
831
|
this.withTitle(null);
|
|
816
832
|
this.withRouteTrigger(':itemId/edit');
|
|
@@ -838,9 +854,10 @@ class ActionEditorEditDescriptor extends ActionEditorDescriptor {
|
|
|
838
854
|
return this;
|
|
839
855
|
}
|
|
840
856
|
}
|
|
857
|
+
ActionEditorEditDescriptor.ACTION_NAME = 'edit';
|
|
841
858
|
class ActionDeleteDescriptor extends ActionDescriptor {
|
|
842
859
|
constructor(model) {
|
|
843
|
-
super(model,
|
|
860
|
+
super(model, ActionDeleteDescriptor.ACTION_NAME);
|
|
844
861
|
this.withPosition(ActionPositionEnum.RowInline);
|
|
845
862
|
this.withTitle(null);
|
|
846
863
|
this.withRunFunction(ctx => {
|
|
@@ -865,9 +882,10 @@ class ActionDeleteDescriptor extends ActionDescriptor {
|
|
|
865
882
|
return this;
|
|
866
883
|
}
|
|
867
884
|
}
|
|
885
|
+
ActionDeleteDescriptor.ACTION_NAME = 'delete';
|
|
868
886
|
class ActionLinkDescriptor extends ActionDescriptor {
|
|
869
|
-
constructor(model) {
|
|
870
|
-
super(model,
|
|
887
|
+
constructor(model = null, actionName = 'link') {
|
|
888
|
+
super(model, actionName);
|
|
871
889
|
this._url = '';
|
|
872
890
|
this._pathSegments = [];
|
|
873
891
|
this._replaceUrl = false;
|
|
@@ -1410,7 +1428,7 @@ class EditorDescriptor {
|
|
|
1410
1428
|
createTabGroup(name, title) {
|
|
1411
1429
|
const tabGroup = new FieldTabGroupDescriptor(this, name);
|
|
1412
1430
|
if (!title) {
|
|
1413
|
-
title =
|
|
1431
|
+
title = I18nUtils.Type.getTabKey(this.model.typeName, name);
|
|
1414
1432
|
}
|
|
1415
1433
|
tabGroup.withTitle(title);
|
|
1416
1434
|
this.createTabGroupDescriptor(tabGroup);
|
|
@@ -1420,7 +1438,7 @@ class EditorDescriptor {
|
|
|
1420
1438
|
const fieldGroup = new FieldGroupDescriptor(this, name);
|
|
1421
1439
|
if (title !== null) {
|
|
1422
1440
|
if (!title) {
|
|
1423
|
-
title =
|
|
1441
|
+
title = I18nUtils.Type.getGroupKey(this.model.typeName, name);
|
|
1424
1442
|
}
|
|
1425
1443
|
fieldGroup.withTitle(title);
|
|
1426
1444
|
}
|
|
@@ -1598,7 +1616,7 @@ class AFieldDescriptor extends AGenericFieldDescriptor {
|
|
|
1598
1616
|
this._size = FieldDescriptor.SizeEnum.Normal;
|
|
1599
1617
|
this._eventsSubject = new Subject();
|
|
1600
1618
|
this._property = property;
|
|
1601
|
-
this._label =
|
|
1619
|
+
this._label = I18nUtils.Type.getPropertyKey(this._editor.model.typeName, property);
|
|
1602
1620
|
}
|
|
1603
1621
|
get property() {
|
|
1604
1622
|
return this._property;
|
|
@@ -2929,169 +2947,323 @@ class EnumUtil {
|
|
|
2929
2947
|
}
|
|
2930
2948
|
}
|
|
2931
2949
|
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2950
|
+
const typeNameDecoratorPropertyName = 'typeName';
|
|
2951
|
+
function TypeName(typeName) {
|
|
2952
|
+
return function (target) {
|
|
2953
|
+
target[typeNameDecoratorPropertyName] = typeName;
|
|
2954
|
+
};
|
|
2955
|
+
}
|
|
2956
|
+
const enumNameDecoratorPropertyName = 'enumName';
|
|
2957
|
+
function EnumName(typeName) {
|
|
2958
|
+
return function (target) {
|
|
2959
|
+
target[enumNameDecoratorPropertyName] = typeName;
|
|
2960
|
+
};
|
|
2961
|
+
}
|
|
2962
|
+
|
|
2963
|
+
class TypeUtil {
|
|
2964
|
+
/**
|
|
2965
|
+
* Defines type name decorator.
|
|
2966
|
+
* @param targetType class.
|
|
2967
|
+
* @param typeName Name of the type.
|
|
2968
|
+
*/
|
|
2969
|
+
static defineReflectTypeName(targetType, typeName) {
|
|
2970
|
+
if (!typeName) {
|
|
2971
|
+
typeName = TypeUtil.getDecoratorTypeName(targetType);
|
|
2972
|
+
if (!typeName) {
|
|
2973
|
+
console.warn(`Type name not provided for target ${targetType}, nor could be retrieved from decorator. Type name was not registered to reflect.`);
|
|
2974
|
+
return;
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
if (!Reflect.hasOwnMetadata(typeNameDecoratorPropertyName, targetType)) {
|
|
2978
|
+
Reflect.defineMetadata(typeNameDecoratorPropertyName, typeName, targetType);
|
|
2979
|
+
}
|
|
2941
2980
|
}
|
|
2942
|
-
|
|
2943
|
-
|
|
2981
|
+
/**
|
|
2982
|
+
* Defines enum name decorator.
|
|
2983
|
+
* @param targetType enum object.
|
|
2984
|
+
* @param enumName Name of the enum.
|
|
2985
|
+
*/
|
|
2986
|
+
static defineReflectEnumName(targetType, enumName) {
|
|
2987
|
+
if (!Reflect.hasOwnMetadata(enumNameDecoratorPropertyName, targetType)) {
|
|
2988
|
+
Reflect.defineMetadata(enumNameDecoratorPropertyName, enumName, targetType);
|
|
2989
|
+
}
|
|
2944
2990
|
}
|
|
2945
|
-
|
|
2946
|
-
|
|
2991
|
+
/**
|
|
2992
|
+
* Gets type name from either decorator or reflect metadata.
|
|
2993
|
+
* @param type Class.
|
|
2994
|
+
*/
|
|
2995
|
+
static findTypeName(type) {
|
|
2996
|
+
let decoratorName = TypeUtil.getDecoratorTypeName(type);
|
|
2997
|
+
if (decoratorName) {
|
|
2998
|
+
return decoratorName;
|
|
2999
|
+
}
|
|
3000
|
+
decoratorName = Reflect.getMetadata(typeNameDecoratorPropertyName, type);
|
|
3001
|
+
if (decoratorName) {
|
|
3002
|
+
return decoratorName;
|
|
3003
|
+
}
|
|
3004
|
+
return type.name;
|
|
2947
3005
|
}
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
3006
|
+
/**
|
|
3007
|
+
* Gets enum name from either decorator or reflect metadata.
|
|
3008
|
+
* @param enumType Class.
|
|
3009
|
+
*/
|
|
3010
|
+
static findEnumName(enumType) {
|
|
3011
|
+
let decoratorName = TypeUtil.getDecoratorEnumName(enumType);
|
|
3012
|
+
if (decoratorName) {
|
|
3013
|
+
return decoratorName;
|
|
3014
|
+
}
|
|
3015
|
+
decoratorName = Reflect.getMetadata(enumNameDecoratorPropertyName, enumType);
|
|
3016
|
+
if (decoratorName) {
|
|
3017
|
+
return decoratorName;
|
|
3018
|
+
}
|
|
3019
|
+
throw new Error('Could not fined enum name');
|
|
2954
3020
|
}
|
|
2955
|
-
|
|
2956
|
-
|
|
3021
|
+
/**
|
|
3022
|
+
* Get value from decorator defined property name
|
|
3023
|
+
* @param type Class.
|
|
3024
|
+
*/
|
|
3025
|
+
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
3026
|
+
static getDecoratorTypeName(type) {
|
|
3027
|
+
return type[typeNameDecoratorPropertyName];
|
|
2957
3028
|
}
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
3029
|
+
/**
|
|
3030
|
+
* Get value from decorator defined property name
|
|
3031
|
+
* @param type Enum object.
|
|
3032
|
+
*/
|
|
3033
|
+
static getDecoratorEnumName(type) {
|
|
3034
|
+
return type[enumNameDecoratorPropertyName];
|
|
2961
3035
|
}
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
var I18nUtils;
|
|
3039
|
+
(function (I18nUtils) {
|
|
3040
|
+
class Common {
|
|
3041
|
+
static getAsync(translate, params, ...keys) {
|
|
3042
|
+
return translate.stream(keys, params).pipe(map(i18n => I18nUtils.Common.selectI18n(keys, i18n)));
|
|
3043
|
+
}
|
|
3044
|
+
static get(translate, params, ...keys) {
|
|
3045
|
+
const i18n = translate.instant(keys, params);
|
|
3046
|
+
return I18nUtils.Common.selectI18n(keys, i18n);
|
|
3047
|
+
}
|
|
3048
|
+
static populateParams(item, params = {}) {
|
|
3049
|
+
const paramsRes = { ...params };
|
|
3050
|
+
if (item) {
|
|
3051
|
+
paramsRes.item = item;
|
|
2971
3052
|
}
|
|
2972
|
-
|
|
2973
|
-
|
|
3053
|
+
return paramsRes;
|
|
3054
|
+
}
|
|
3055
|
+
static selectI18n(keys, i18n) {
|
|
3056
|
+
for (const key of keys) {
|
|
3057
|
+
if (key !== i18n[key]) {
|
|
3058
|
+
return i18n[key];
|
|
3059
|
+
}
|
|
2974
3060
|
}
|
|
3061
|
+
return null;
|
|
2975
3062
|
}
|
|
2976
|
-
return i18nParameters;
|
|
2977
3063
|
}
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
3064
|
+
I18nUtils.Common = Common;
|
|
3065
|
+
class Type {
|
|
3066
|
+
static getClassNameAsync(translate, classType, singular) {
|
|
3067
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3068
|
+
return I18nUtils.Type.getNameAsync(translate, typeName, singular);
|
|
2983
3069
|
}
|
|
2984
|
-
|
|
2985
|
-
|
|
3070
|
+
static getClassName(translate, classType, singular) {
|
|
3071
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3072
|
+
return I18nUtils.Type.getName(translate, typeName, singular);
|
|
2986
3073
|
}
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
3074
|
+
static getNameAsync(translate, typeName, singular) {
|
|
3075
|
+
const keys = I18nUtils.Type.getNameKeys(typeName, singular);
|
|
3076
|
+
return I18nUtils.Common.getAsync(translate, undefined, ...keys);
|
|
3077
|
+
}
|
|
3078
|
+
static getName(translate, typeName, singular) {
|
|
3079
|
+
const keys = I18nUtils.Type.getNameKeys(typeName, singular);
|
|
3080
|
+
return I18nUtils.Common.get(translate, undefined, ...keys);
|
|
3081
|
+
}
|
|
3082
|
+
static getClassTabKey(classType, tab) {
|
|
3083
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3084
|
+
return I18nUtils.Type.getTabKey(typeName, tab);
|
|
3085
|
+
}
|
|
3086
|
+
static getTabKey(typeName, tab) {
|
|
3087
|
+
return I18nUtils.Type.getPath(typeName, 'tabs', tab);
|
|
3088
|
+
}
|
|
3089
|
+
static getClassGroupKey(classType, group) {
|
|
3090
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3091
|
+
return I18nUtils.Type.getGroupKey(typeName, group);
|
|
3092
|
+
}
|
|
3093
|
+
static getGroupKey(typeName, group) {
|
|
3094
|
+
return I18nUtils.Type.getPath(typeName, 'groups', group);
|
|
3095
|
+
}
|
|
3096
|
+
static getClassPropertyKey(classType, property) {
|
|
3097
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3098
|
+
return I18nUtils.Type.getPropertyKey(typeName, property);
|
|
3099
|
+
}
|
|
3100
|
+
static getPropertyKey(typeName, property) {
|
|
3101
|
+
return I18nUtils.Type.getPath(typeName, 'properties', property);
|
|
3102
|
+
}
|
|
3103
|
+
static getClassPath(classType, ...path) {
|
|
3104
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3105
|
+
return I18nUtils.Type.getPath(typeName, ...path);
|
|
3106
|
+
}
|
|
3107
|
+
static getPath(typeName, ...path) {
|
|
3108
|
+
return `${typeName}.${path.join('.')}`;
|
|
3109
|
+
}
|
|
3110
|
+
static getClassParams(translate, classType, item, params = {}) {
|
|
3111
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3112
|
+
return I18nUtils.Type.getParams(translate, typeName, item, params);
|
|
3113
|
+
}
|
|
3114
|
+
static getParams(translate, typeName, item, params = {}) {
|
|
3115
|
+
const i18nTypeName = typeName ? I18nUtils.Type.getName(translate, typeName, true) : null;
|
|
3116
|
+
return I18nUtils.Type.populateParams(i18nTypeName ?? undefined, item, params);
|
|
3117
|
+
}
|
|
3118
|
+
static getClassParamsAsync(translate, classType, item, params = {}) {
|
|
3119
|
+
const typeName = TypeUtil.findTypeName(classType);
|
|
3120
|
+
return I18nUtils.Type.getParamsAsync(translate, typeName, item, params);
|
|
3121
|
+
}
|
|
3122
|
+
static getParamsAsync(translate, typeName, item, params = {}) {
|
|
3123
|
+
return (typeName ? I18nUtils.Type.getNameAsync(translate, typeName, true) : of(null)).pipe(map(i18nTypeName => I18nUtils.Type.populateParams(i18nTypeName ?? undefined, item, params)));
|
|
3124
|
+
}
|
|
3125
|
+
static populateParams(i18nTypeName, item, params = {}) {
|
|
3126
|
+
const paramsRes = { ...params };
|
|
3127
|
+
if (i18nTypeName) {
|
|
3128
|
+
paramsRes.typeName = i18nTypeName;
|
|
2993
3129
|
}
|
|
3130
|
+
return I18nUtils.Common.populateParams(item, paramsRes);
|
|
2994
3131
|
}
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
i18nParameters.errorMessage = '';
|
|
3000
|
-
if (error.messageCode) {
|
|
3001
|
-
const params = I18nUtil.getErrorI18nParams(error);
|
|
3002
|
-
const keys = [`errors.${error.messageCode}`, `messages.${error.messageCode}`];
|
|
3003
|
-
const i18ns = translate.instant(keys, params);
|
|
3004
|
-
const i18n = I18nUtil.selectKeyByPriority(keys, i18ns);
|
|
3005
|
-
if (i18n) {
|
|
3006
|
-
return i18n;
|
|
3132
|
+
static getNameKeys(typeName, singular) {
|
|
3133
|
+
const keys = [];
|
|
3134
|
+
if (typeof singular !== 'undefined') {
|
|
3135
|
+
keys.push(singular ? `${typeName}.nameSingular` : `${typeName}.namePlural`);
|
|
3007
3136
|
}
|
|
3137
|
+
keys.push(`${typeName}.name`);
|
|
3138
|
+
return keys;
|
|
3008
3139
|
}
|
|
3009
|
-
return translate.instant(error.message);
|
|
3010
3140
|
}
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3141
|
+
I18nUtils.Type = Type;
|
|
3142
|
+
class Model {
|
|
3143
|
+
static get(translate, model, keyPath, customKey, item, fallbackKey, params) {
|
|
3144
|
+
const keys = I18nUtils.Model.getKeysByPriority(model, keyPath, customKey, fallbackKey);
|
|
3145
|
+
const i18nParams = I18nUtils.Model.getParams(translate, model, item, params);
|
|
3146
|
+
return I18nUtils.Common.get(translate, i18nParams, ...keys);
|
|
3016
3147
|
}
|
|
3017
|
-
|
|
3018
|
-
|
|
3148
|
+
static getName(translate, model, singular) {
|
|
3149
|
+
return I18nUtils.Type.getName(translate, model.typeName, singular);
|
|
3019
3150
|
}
|
|
3020
|
-
|
|
3021
|
-
|
|
3151
|
+
static getNameAsync(translate, model, singular) {
|
|
3152
|
+
return I18nUtils.Type.getNameAsync(translate, model.typeName, singular);
|
|
3022
3153
|
}
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
const keys = I18nUtil.getModelNameKeys(model, singular);
|
|
3027
|
-
const i18n = translate.instant(keys);
|
|
3028
|
-
return I18nUtil.selectKeyByPriority(keys, i18n);
|
|
3029
|
-
}
|
|
3030
|
-
static getModelName(translate, model, oneTime = true, singular) {
|
|
3031
|
-
const keys = I18nUtil.getModelNameKeys(model, singular);
|
|
3032
|
-
const obs = translate.stream(keys);
|
|
3033
|
-
if (oneTime) {
|
|
3034
|
-
obs.pipe(first());
|
|
3154
|
+
static getParams(translate, model, item, params = {}) {
|
|
3155
|
+
const i18nParams = I18nUtils.Type.getParams(translate, model?.typeName, item, params);
|
|
3156
|
+
return I18nUtils.Model.populateParams(model?.idPropertyName, model?.titlePropertyName, item, i18nParams);
|
|
3035
3157
|
}
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
static getModelNameKeys(model, singular) {
|
|
3039
|
-
const keys = [];
|
|
3040
|
-
if (singular !== undefined) {
|
|
3041
|
-
keys.push(singular ? `${model?.typeName}.nameSingular` : `${model?.typeName}.namePlural`);
|
|
3158
|
+
static getParamsAsync(translate, model, item, params = {}) {
|
|
3159
|
+
return I18nUtils.Type.getParamsAsync(translate, model?.typeName, item, params).pipe(map(i18nParams => I18nUtils.Model.populateParams(model?.idPropertyName, model?.titlePropertyName, item, i18nParams)));
|
|
3042
3160
|
}
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3161
|
+
static populateParams(idProperty, titleProperty, item, params = {}) {
|
|
3162
|
+
const paramsRes = { ...params, itemId: '', itemTitle: '' };
|
|
3163
|
+
if (item) {
|
|
3164
|
+
if (idProperty && item[idProperty]) {
|
|
3165
|
+
paramsRes.itemId = item[idProperty];
|
|
3166
|
+
}
|
|
3167
|
+
if (titleProperty && item[titleProperty]) {
|
|
3168
|
+
paramsRes.itemTitle = item[titleProperty];
|
|
3169
|
+
}
|
|
3170
|
+
}
|
|
3171
|
+
return paramsRes;
|
|
3050
3172
|
}
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3173
|
+
static getKeysByPriority(model, keyPath, customKey, fallbackKey) {
|
|
3174
|
+
const keys = [];
|
|
3175
|
+
if (customKey) {
|
|
3176
|
+
keys.push(customKey);
|
|
3177
|
+
}
|
|
3178
|
+
const modelActionKey = I18nUtils.Type.getPath(model.typeName, ...keyPath);
|
|
3179
|
+
keys.push(modelActionKey);
|
|
3180
|
+
if (fallbackKey) {
|
|
3181
|
+
keys.push(fallbackKey);
|
|
3182
|
+
}
|
|
3183
|
+
return keys;
|
|
3055
3184
|
}
|
|
3056
|
-
return keys;
|
|
3057
3185
|
}
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3186
|
+
I18nUtils.Model = Model;
|
|
3187
|
+
class Action {
|
|
3188
|
+
static get(translate, action, actionPathKeys, customKey, item, fallbackKey, params) {
|
|
3189
|
+
const keys = I18nUtils.Action.getKeysByPriority(action, actionPathKeys, customKey, fallbackKey);
|
|
3190
|
+
const i18nParams = I18nUtils.Action.getParams(translate, action, item, params);
|
|
3191
|
+
return I18nUtils.Common.get(translate, i18nParams, ...keys);
|
|
3192
|
+
}
|
|
3193
|
+
static getAsync(translate, action, actionPathKeys, customKey, item, fallbackKey, params) {
|
|
3194
|
+
return I18nUtils.Action.getParamsAsync(translate, action, item, params).pipe(mergeMap(i18nParams => {
|
|
3195
|
+
const keys = I18nUtils.Action.getKeysByPriority(action, actionPathKeys, customKey, fallbackKey);
|
|
3196
|
+
return I18nUtils.Common.getAsync(translate, i18nParams, ...keys);
|
|
3197
|
+
}));
|
|
3065
3198
|
}
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
keys.push(modelActionKey, actionKey);
|
|
3069
|
-
if (fallbackKey) {
|
|
3070
|
-
keys.push(fallbackKey);
|
|
3199
|
+
static getTitleAsync(translate, action, item) {
|
|
3200
|
+
return I18nUtils.Action.getAsync(translate, action, 'title', undefined, item);
|
|
3071
3201
|
}
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3202
|
+
static getEditorTitleAsync(translate, action, item) {
|
|
3203
|
+
return I18nUtils.Action.getAsync(translate, action, ['editor.title', 'title'], action.editorTitle ?? undefined, item);
|
|
3204
|
+
}
|
|
3205
|
+
static getParams(translate, action, item, params = {}) {
|
|
3206
|
+
const i18nParams = I18nUtils.Model.getParams(translate, action.model ?? undefined, item, params);
|
|
3207
|
+
return I18nUtils.Action.populateParams(i18nParams);
|
|
3208
|
+
}
|
|
3209
|
+
static getParamsAsync(translate, action, item, params = {}) {
|
|
3210
|
+
return I18nUtils.Model.getParamsAsync(translate, action.model ?? undefined, item, params).pipe(map(i18nParams => I18nUtils.Action.populateParams(i18nParams)));
|
|
3211
|
+
}
|
|
3212
|
+
static populateParams(params = {}) {
|
|
3213
|
+
params = { ...params };
|
|
3214
|
+
return params;
|
|
3215
|
+
}
|
|
3216
|
+
static getKeysByPriority(action, actionPathKeys, customKey, fallbackKey) {
|
|
3217
|
+
const keys = [];
|
|
3218
|
+
if (customKey) {
|
|
3219
|
+
keys.push(customKey);
|
|
3220
|
+
}
|
|
3221
|
+
if (!Array.isArray(actionPathKeys)) {
|
|
3222
|
+
actionPathKeys = [actionPathKeys];
|
|
3223
|
+
}
|
|
3224
|
+
actionPathKeys.forEach(k => {
|
|
3225
|
+
const modelActionKey = `${action.i18nModelActionBaseKey}.${k}`;
|
|
3226
|
+
const actionKey = `${action.actionName}.${k}`;
|
|
3227
|
+
keys.push(modelActionKey, actionKey);
|
|
3228
|
+
});
|
|
3229
|
+
if (fallbackKey) {
|
|
3230
|
+
keys.push(fallbackKey);
|
|
3078
3231
|
}
|
|
3232
|
+
return keys;
|
|
3079
3233
|
}
|
|
3080
|
-
return null;
|
|
3081
3234
|
}
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3235
|
+
I18nUtils.Action = Action;
|
|
3236
|
+
class Error {
|
|
3237
|
+
static get(translate, error, params = {}) {
|
|
3238
|
+
const i18nParams = I18nUtils.Error.getParams(error, params);
|
|
3239
|
+
if (error.messageCode) {
|
|
3240
|
+
const keys = [`errors.${error.messageCode}`, `messages.${error.messageCode}`];
|
|
3241
|
+
const i18n = I18nUtils.Common.get(translate, i18nParams, ...keys);
|
|
3242
|
+
if (i18n) {
|
|
3243
|
+
return i18n;
|
|
3244
|
+
}
|
|
3087
3245
|
}
|
|
3088
|
-
return
|
|
3246
|
+
return I18nUtils.Common.get(translate, i18nParams, error.message);
|
|
3089
3247
|
}
|
|
3090
|
-
|
|
3091
|
-
|
|
3248
|
+
static getParams(error, params = {}) {
|
|
3249
|
+
const paramsRes = { ...params };
|
|
3250
|
+
paramsRes.errorStatus = '';
|
|
3251
|
+
paramsRes.errorMessage = '';
|
|
3252
|
+
if (error.status) {
|
|
3253
|
+
paramsRes.errorStatus = error.status;
|
|
3254
|
+
}
|
|
3255
|
+
if (error.message) {
|
|
3256
|
+
paramsRes.errorMessage = error.message;
|
|
3257
|
+
}
|
|
3258
|
+
if (error.statusDescription) {
|
|
3259
|
+
paramsRes.errorStatusDescription = error.statusDescription;
|
|
3260
|
+
}
|
|
3261
|
+
paramsRes.error = error;
|
|
3262
|
+
return paramsRes;
|
|
3092
3263
|
}
|
|
3093
3264
|
}
|
|
3094
|
-
|
|
3265
|
+
I18nUtils.Error = Error;
|
|
3266
|
+
})(I18nUtils || (I18nUtils = {}));
|
|
3095
3267
|
|
|
3096
3268
|
class ModelUtil {
|
|
3097
3269
|
static findIdAttribute(classType) {
|
|
@@ -3164,7 +3336,7 @@ class NotificationUtil {
|
|
|
3164
3336
|
}
|
|
3165
3337
|
return notification;
|
|
3166
3338
|
}
|
|
3167
|
-
static tableNotificationError(
|
|
3339
|
+
static tableNotificationError(translate, table, error, viewContainer) {
|
|
3168
3340
|
const params = {};
|
|
3169
3341
|
if (error?.message) {
|
|
3170
3342
|
params.errorMessage = `: ${error.message}`;
|
|
@@ -3172,120 +3344,31 @@ class NotificationUtil {
|
|
|
3172
3344
|
else {
|
|
3173
3345
|
params.errorMessage = '.';
|
|
3174
3346
|
}
|
|
3175
|
-
|
|
3176
|
-
const
|
|
3177
|
-
const tableErrorMessage = I18nUtil.instantModelTranslation(translationService, table.model, 'table.error.message', undefined, undefined, 'general.errorMessage', params) ?? undefined;
|
|
3347
|
+
const tableErrorTitle = I18nUtils.Model.get(translate, table.model, 'table.error.title', undefined, undefined, 'general.error', params) ?? undefined;
|
|
3348
|
+
const tableErrorMessage = I18nUtils.Model.get(translate, table.model, 'table.error.message', undefined, undefined, 'general.errorMessage', params) ?? undefined;
|
|
3178
3349
|
return NotificationUtil.notification(viewContainer, tableErrorTitle, tableErrorMessage, 'error');
|
|
3179
3350
|
}
|
|
3180
|
-
static actionNotificationSuccess(
|
|
3181
|
-
const actionSuccessTitle =
|
|
3182
|
-
const actionSuccessMessage =
|
|
3351
|
+
static actionNotificationSuccess(translate, action, functionName, customTitleKey, customMessageKey, viewContainer, item) {
|
|
3352
|
+
const actionSuccessTitle = I18nUtils.Action.get(translate, action, 'success.title', customTitleKey, item, 'general.success', functionName) ?? undefined;
|
|
3353
|
+
const actionSuccessMessage = I18nUtils.Action.get(translate, action, 'success.message', customMessageKey, item, 'general.successMessage', functionName) ?? undefined;
|
|
3183
3354
|
return NotificationUtil.notification(viewContainer, actionSuccessTitle, actionSuccessMessage);
|
|
3184
3355
|
}
|
|
3185
|
-
static actionNotificationError(
|
|
3356
|
+
static actionNotificationError(translate, action, error, functionName, viewContainer, item, severity = 'error') {
|
|
3186
3357
|
const params = {
|
|
3187
|
-
errorMessage:
|
|
3358
|
+
errorMessage: I18nUtils.Error.get(translate, error) ?? error.message
|
|
3188
3359
|
};
|
|
3189
|
-
const actionErrorTitle =
|
|
3360
|
+
const actionErrorTitle = I18nUtils.Action.get(translate, action, [`error.${functionName}.title`, 'error.title'], action.runNotificationErrorTitle, item, 'general.error', params) ?? undefined;
|
|
3361
|
+
const actionErrorMessage = I18nUtils.Action.get(translate, action, [`error.${functionName}.message`, 'error.message'], action.runNotificationErrorMessage, item, 'general.errorMessage', params) ??
|
|
3190
3362
|
undefined;
|
|
3191
|
-
|
|
3192
|
-
return NotificationUtil.notification(viewContainer, actionErrorTitle, actionErrorMessage, 'error');
|
|
3363
|
+
return NotificationUtil.notification(viewContainer, actionErrorTitle, actionErrorMessage, severity);
|
|
3193
3364
|
}
|
|
3194
|
-
static getFormEditorWarningMessage(
|
|
3195
|
-
const actionErrorTitle =
|
|
3196
|
-
const actionErrorMessage =
|
|
3365
|
+
static getFormEditorWarningMessage(translate, title, message) {
|
|
3366
|
+
const actionErrorTitle = translate.instant(title) ?? undefined;
|
|
3367
|
+
const actionErrorMessage = translate.instant(message) ?? undefined;
|
|
3197
3368
|
return { severity: 'warn', summary: actionErrorTitle, detail: actionErrorMessage };
|
|
3198
3369
|
}
|
|
3199
3370
|
}
|
|
3200
3371
|
|
|
3201
|
-
const typeNameDecoratorPropertyName = 'typeName';
|
|
3202
|
-
function TypeName(typeName) {
|
|
3203
|
-
return function (target) {
|
|
3204
|
-
target[typeNameDecoratorPropertyName] = typeName;
|
|
3205
|
-
};
|
|
3206
|
-
}
|
|
3207
|
-
const enumNameDecoratorPropertyName = 'enumName';
|
|
3208
|
-
function EnumName(typeName) {
|
|
3209
|
-
return function (target) {
|
|
3210
|
-
target[enumNameDecoratorPropertyName] = typeName;
|
|
3211
|
-
};
|
|
3212
|
-
}
|
|
3213
|
-
|
|
3214
|
-
class TypeUtil {
|
|
3215
|
-
/**
|
|
3216
|
-
* Defines type name decorator.
|
|
3217
|
-
* @param targetType class.
|
|
3218
|
-
* @param typeName Name of the type.
|
|
3219
|
-
*/
|
|
3220
|
-
static defineReflectTypeName(targetType, typeName) {
|
|
3221
|
-
if (!typeName) {
|
|
3222
|
-
typeName = TypeUtil.getDecoratorTypeName(targetType);
|
|
3223
|
-
if (!typeName) {
|
|
3224
|
-
console.warn(`Type name not provided for target ${targetType}, nor could be retrieved from decorator. Type name was not registered to reflect.`);
|
|
3225
|
-
return;
|
|
3226
|
-
}
|
|
3227
|
-
}
|
|
3228
|
-
if (!Reflect.hasOwnMetadata(typeNameDecoratorPropertyName, targetType)) {
|
|
3229
|
-
Reflect.defineMetadata(typeNameDecoratorPropertyName, typeName, targetType);
|
|
3230
|
-
}
|
|
3231
|
-
}
|
|
3232
|
-
/**
|
|
3233
|
-
* Defines enum name decorator.
|
|
3234
|
-
* @param targetType enum object.
|
|
3235
|
-
* @param enumName Name of the enum.
|
|
3236
|
-
*/
|
|
3237
|
-
static defineReflectEnumName(targetType, enumName) {
|
|
3238
|
-
if (!Reflect.hasOwnMetadata(enumNameDecoratorPropertyName, targetType)) {
|
|
3239
|
-
Reflect.defineMetadata(enumNameDecoratorPropertyName, enumName, targetType);
|
|
3240
|
-
}
|
|
3241
|
-
}
|
|
3242
|
-
/**
|
|
3243
|
-
* Gets type name from either decorator or reflect metadata.
|
|
3244
|
-
* @param type Class.
|
|
3245
|
-
*/
|
|
3246
|
-
static findTypeName(type) {
|
|
3247
|
-
let decoratorName = TypeUtil.getDecoratorTypeName(type);
|
|
3248
|
-
if (decoratorName) {
|
|
3249
|
-
return decoratorName;
|
|
3250
|
-
}
|
|
3251
|
-
decoratorName = Reflect.getMetadata(typeNameDecoratorPropertyName, type);
|
|
3252
|
-
if (decoratorName) {
|
|
3253
|
-
return decoratorName;
|
|
3254
|
-
}
|
|
3255
|
-
return type.name;
|
|
3256
|
-
}
|
|
3257
|
-
/**
|
|
3258
|
-
* Gets enum name from either decorator or reflect metadata.
|
|
3259
|
-
* @param enumType Class.
|
|
3260
|
-
*/
|
|
3261
|
-
static findEnumName(enumType) {
|
|
3262
|
-
let decoratorName = TypeUtil.getDecoratorEnumName(enumType);
|
|
3263
|
-
if (decoratorName) {
|
|
3264
|
-
return decoratorName;
|
|
3265
|
-
}
|
|
3266
|
-
decoratorName = Reflect.getMetadata(enumNameDecoratorPropertyName, enumType);
|
|
3267
|
-
if (decoratorName) {
|
|
3268
|
-
return decoratorName;
|
|
3269
|
-
}
|
|
3270
|
-
throw new Error('Could not fined enum name');
|
|
3271
|
-
}
|
|
3272
|
-
/**
|
|
3273
|
-
* Get value from decorator defined property name
|
|
3274
|
-
* @param type Class.
|
|
3275
|
-
*/
|
|
3276
|
-
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
3277
|
-
static getDecoratorTypeName(type) {
|
|
3278
|
-
return type[typeNameDecoratorPropertyName];
|
|
3279
|
-
}
|
|
3280
|
-
/**
|
|
3281
|
-
* Get value from decorator defined property name
|
|
3282
|
-
* @param type Enum object.
|
|
3283
|
-
*/
|
|
3284
|
-
static getDecoratorEnumName(type) {
|
|
3285
|
-
return type[enumNameDecoratorPropertyName];
|
|
3286
|
-
}
|
|
3287
|
-
}
|
|
3288
|
-
|
|
3289
3372
|
class ObjectSerializer {
|
|
3290
3373
|
constructor() {
|
|
3291
3374
|
this._primitives = ['string', 'boolean', 'double', 'integer', 'long', 'float', 'number', 'any'];
|
|
@@ -3826,7 +3909,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
3826
3909
|
|
|
3827
3910
|
class MngI18nPropertyPipe {
|
|
3828
3911
|
transform(property, model) {
|
|
3829
|
-
return
|
|
3912
|
+
return I18nUtils.Type.getPropertyKey(model.typeName, property);
|
|
3830
3913
|
}
|
|
3831
3914
|
}
|
|
3832
3915
|
MngI18nPropertyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngI18nPropertyPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
@@ -3987,24 +4070,20 @@ class MngActionExecutorService {
|
|
|
3987
4070
|
rejectVisible: false
|
|
3988
4071
|
};
|
|
3989
4072
|
if (action.runConfirmationTitle !== null) {
|
|
3990
|
-
confirmParams.header =
|
|
3991
|
-
I18nUtil.instantActionTranslation(this.translate, action, 'confirm.title', action.runConfirmationTitle, item, 'general.confirmation') ?? undefined;
|
|
4073
|
+
confirmParams.header = I18nUtils.Action.get(this.translate, action, 'confirm.title', action.runConfirmationTitle, item, 'general.confirmation') ?? undefined;
|
|
3992
4074
|
}
|
|
3993
4075
|
if (action.runConfirmationMessage !== null) {
|
|
3994
|
-
confirmParams.message =
|
|
3995
|
-
I18nUtil.instantActionTranslation(this.translate, action, 'confirm.message', action.runConfirmationMessage, item, 'general.confirmation') ?? undefined;
|
|
4076
|
+
confirmParams.message = I18nUtils.Action.get(this.translate, action, 'confirm.message', action.runConfirmationMessage, item, 'general.confirmation') ?? undefined;
|
|
3996
4077
|
}
|
|
3997
4078
|
if (action.runConfirmationIcon !== null) {
|
|
3998
4079
|
confirmParams.icon = action.runConfirmationIcon === undefined ? 'pi pi-exclamation-triangle' : action.runConfirmationIcon;
|
|
3999
4080
|
}
|
|
4000
4081
|
if (action.runConfirmationAcceptTitle !== null) {
|
|
4001
|
-
confirmParams.acceptLabel =
|
|
4002
|
-
I18nUtil.instantActionTranslation(this.translate, action, 'confirm.accept', action.runConfirmationAcceptTitle, item, 'general.yes') ?? undefined;
|
|
4082
|
+
confirmParams.acceptLabel = I18nUtils.Action.get(this.translate, action, 'confirm.accept', action.runConfirmationAcceptTitle, item, 'general.yes') ?? undefined;
|
|
4003
4083
|
confirmParams.acceptVisible = true;
|
|
4004
4084
|
}
|
|
4005
4085
|
if (action.runConfirmationRejectTitle !== null) {
|
|
4006
|
-
confirmParams.rejectLabel =
|
|
4007
|
-
I18nUtil.instantActionTranslation(this.translate, action, 'confirm.reject', action.runConfirmationRejectTitle, item, 'general.no') ?? undefined;
|
|
4086
|
+
confirmParams.rejectLabel = I18nUtils.Action.get(this.translate, action, 'confirm.reject', action.runConfirmationRejectTitle, item, 'general.no') ?? undefined;
|
|
4008
4087
|
confirmParams.rejectVisible = true;
|
|
4009
4088
|
}
|
|
4010
4089
|
const observable = new Observable(observer => {
|
|
@@ -4197,13 +4276,16 @@ class MngActionExecutorService {
|
|
|
4197
4276
|
* @param action Action descriptor.
|
|
4198
4277
|
* @param event Target table click event.
|
|
4199
4278
|
* @param route Currently activate route.
|
|
4279
|
+
* @param tableDescriptor Table descriptor.
|
|
4280
|
+
* @param dataKeyProperty Data key property.
|
|
4200
4281
|
*/
|
|
4201
|
-
triggerRowClickAction(action, event, route) {
|
|
4202
|
-
|
|
4203
|
-
|
|
4282
|
+
triggerRowClickAction(action, event, route, tableDescriptor, dataKeyProperty) {
|
|
4283
|
+
const idProperty = dataKeyProperty ?? tableDescriptor?.dataKeyProperty ?? action?.model?.idPropertyName ?? dataKeyProperty;
|
|
4284
|
+
if (!idProperty) {
|
|
4285
|
+
throw new Error(`Row click action ${action.actionName} can not be triggered, because id property could not be found.`);
|
|
4204
4286
|
}
|
|
4205
4287
|
const rowItem = event?.rowItem;
|
|
4206
|
-
return this.triggerAction(action, rowItem[
|
|
4288
|
+
return this.triggerAction(action, rowItem[idProperty], event.rowItem, undefined, route);
|
|
4207
4289
|
}
|
|
4208
4290
|
/**
|
|
4209
4291
|
* Triggers action with optional data (item, itemId, ...) and currently activated route.
|
|
@@ -4698,7 +4780,7 @@ class MngViewContainerComponentService {
|
|
|
4698
4780
|
set dataProvider(dataProvider) {
|
|
4699
4781
|
this._dataProvider = dataProvider;
|
|
4700
4782
|
}
|
|
4701
|
-
get reloadTable
|
|
4783
|
+
get reloadTable() {
|
|
4702
4784
|
return this._reloadTableSubject.asObservable();
|
|
4703
4785
|
}
|
|
4704
4786
|
triggerTableReload(event) {
|
|
@@ -4748,8 +4830,8 @@ class MngActionComponent {
|
|
|
4748
4830
|
const context = this.actionExecutor.prepareActionExecContext(this.action, this.itemId, this.item, this.dataProvider, this.viewContainer ?? undefined, this, this.actionData);
|
|
4749
4831
|
this.$isVisible = typeof this.action.isVisibleFunction === 'function' ? this.action.isVisibleFunction(context) : of(true);
|
|
4750
4832
|
this.$isEnabled = typeof this.action.isEnabledFunction === 'function' ? this.action.isEnabledFunction(context) : of(true);
|
|
4751
|
-
this.$label = this.hasNoTitle ? of(null) :
|
|
4752
|
-
this.$tooltip =
|
|
4833
|
+
this.$label = this.hasNoTitle ? of(null) : I18nUtils.Action.getAsync(this.translate, this.action, 'title', this.action?.title ?? undefined, this.item);
|
|
4834
|
+
this.$tooltip = I18nUtils.Action.getAsync(this.translate, this.action, 'tooltip', this.action?.tooltip ?? undefined, this.item);
|
|
4753
4835
|
if (this.action instanceof ActionLinkDescriptor) {
|
|
4754
4836
|
this.actionLink = this.action;
|
|
4755
4837
|
}
|
|
@@ -5755,11 +5837,7 @@ class MngActionEditorComponent {
|
|
|
5755
5837
|
}
|
|
5756
5838
|
return;
|
|
5757
5839
|
}
|
|
5758
|
-
const subscription =
|
|
5759
|
-
.pipe(mergeMap(i18nDialogTitle => i18nDialogTitle === null
|
|
5760
|
-
? I18nUtil.getActionTranslation(this.translate, this.action, 'title', undefined, this.item)
|
|
5761
|
-
: of(i18nDialogTitle)))
|
|
5762
|
-
.subscribe(t => {
|
|
5840
|
+
const subscription = I18nUtils.Action.getEditorTitleAsync(this.translate, this.action, this.item).subscribe(t => {
|
|
5763
5841
|
this.title = t ?? undefined;
|
|
5764
5842
|
if (this.dialogConfig) {
|
|
5765
5843
|
requestAnimationFrame(() => {
|
|
@@ -6027,6 +6105,7 @@ class MngTableComponent {
|
|
|
6027
6105
|
this.subscriptions = [];
|
|
6028
6106
|
}
|
|
6029
6107
|
ngOnInit() {
|
|
6108
|
+
this.viewContainer = this.viewContainerInit ?? this.viewContainerService ?? undefined;
|
|
6030
6109
|
this.filterDescriptors = this.descriptor.columns.filter(c => typeof c.filterDescriptor !== 'undefined').map(c => c.filterDescriptor);
|
|
6031
6110
|
if (this.descriptor.paginationMode === PaginationModeEnum.InfiniteScroll) {
|
|
6032
6111
|
this.infiniteScroll = true;
|
|
@@ -6169,7 +6248,7 @@ class MngTableComponent {
|
|
|
6169
6248
|
this.isSortChanged = false;
|
|
6170
6249
|
this.dataProviderLoadingSubject.next(false);
|
|
6171
6250
|
}, err => {
|
|
6172
|
-
NotificationUtil.tableNotificationError(this.translate, this.descriptor, err, this.
|
|
6251
|
+
NotificationUtil.tableNotificationError(this.translate, this.descriptor, err, this.viewContainer);
|
|
6173
6252
|
const emptyQueryResult = new MediusQueryResult();
|
|
6174
6253
|
emptyQueryResult.pageData = [];
|
|
6175
6254
|
emptyQueryResult.allDataCount = 0;
|
|
@@ -6235,7 +6314,7 @@ class MngTableComponent {
|
|
|
6235
6314
|
}
|
|
6236
6315
|
}
|
|
6237
6316
|
MngTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngTableComponent, deps: [{ token: i0.Injector }, { token: i1.Router }, { token: i1.ActivatedRoute }, { token: i1$1.TranslateService }, { token: MngViewContainerComponentService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
6238
|
-
MngTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngTableComponent, selector: "mng-table", inputs: { descriptor: "descriptor", items: "items", queryResult: "queryResult", loading: "loading", dataProvider: "dataProvider", useQueryParams: "useQueryParams", selectionMode: "selectionMode", selectionEnabled: "selectionEnabled", isColumnClickable: "isColumnClickable", captionComponent: "captionComponent", columnActionComponent: "columnActionComponent" }, outputs: { loadEventEmitter: "tableLoad", cellClickEventEmitter: "cellClick", selectionChangeEventEmitter: "selectionChange", captionCmpInstEventEmitter: "captionComponentInstance", columnActionCmpInstEventEmitter: "columnActionComponentInstance" }, queries: [{ propertyName: "templates", predicate: MngTemplateDirective }], viewQueries: [{ propertyName: "primeTable", first: true, predicate: Table, descendants: true }, { propertyName: "components", predicate: MngComponentDirective, descendants: true }], ngImport: i0, template: "<div [style.height]=\"scrollHeight === 'flex' ? 'calc(100vh - ' + descriptor.tableFullHeightOffset + 'px)' : null\">\n <!-- MUST NOT use observable for value when using virtual scroll - does not work for some reason -->\n <p-table\n *ngIf=\"!useQueryParams || useQueryParamsInitialized\"\n [value]=\"infiniteScroll ? dataProviderInfiniteScrollItems : (queryResult$ | async)?.pageData ?? []\"\n [dataKey]=\"$any(descriptor.dataKeyProperty)\"\n [lazy]=\"useDataProvider\"\n [loading]=\"(loading$ | async) ?? false\"\n [paginator]=\"useDataProvider && !infiniteScroll\"\n [rows]=\"$any(infiniteScroll ? 20 : rows)\"\n [first]=\"$any(infiniteScroll ? 0 : offset)\"\n [totalRecords]=\"$any(infiniteScroll ? null : (queryResult$ | async)?.allDataCount ?? 0)\"\n [rowsPerPageOptions]=\"$any(infiniteScroll ? null : rowsPerPageOptions)\"\n [showCurrentPageReport]=\"!infiniteScroll\"\n [currentPageReportTemplate]=\"'mngTable.paginationMsg' | translate\"\n [multiSortMeta]=\"$any(multiSortMeta)\"\n [filters]=\"filterMetadata\"\n [(selection)]=\"selection\"\n (selectionChange)=\"onSelectionChange($event)\"\n [scrollable]=\"infiniteScroll\"\n [virtualScroll]=\"infiniteScroll\"\n [virtualRowHeight]=\"$any(rowHeight)\"\n [scrollHeight]=\"$any(scrollHeight)\"\n [rowHover]=\"true\"\n (onLazyLoad)=\"onTableLazyLoad($event)\"\n (onSort)=\"onTableSort($event)\"\n (onFilter)=\"onTableFilter($event)\"\n [selectionMode]=\"selectionMode\"\n sortMode=\"multiple\"\n responsiveLayout=\"scroll\">\n <ng-template *ngIf=\"captionTemplate || captionComponent || descriptor.title\" pTemplate=\"caption\">\n <ng-container *ngIf=\"captionTemplate; else componentOrDefaultCaption\">\n <ng-container *ngTemplateOutlet=\"captionTemplate\"></ng-container>\n </ng-container>\n <ng-template #componentOrDefaultCaption>\n <div *ngIf=\"captionComponent; else defaultCaption\" [mngComponent]=\"captionComponent\" (instanceCreated)=\"onCaptionCmpInst($event)\"></div>\n <ng-template #defaultCaption>\n <h5 class=\"p-0 m-0\">{{ descriptor.title }}</h5>\n </ng-template>\n </ng-template>\n </ng-template>\n\n <ng-template pTemplate=\"header\">\n <tr *ngIf=\"!descriptor.hideHeader\">\n <th *ngIf=\"selectionEnabled && selectionMode === 'multiple'\">\n <p-tableHeaderCheckbox></p-tableHeaderCheckbox>\n </th>\n <!-- We need the line below, because otherwise p-tableRadioButton shifts the rest of the columns in table -->\n <th *ngIf=\"selectionEnabled && selectionMode === 'single'\" style=\"width: 2.25em\"></th>\n <ng-container *ngFor=\"let col of descriptor.columns\">\n <th *ngIf=\"col.isSortEnabled\" [pSortableColumn]=\"col.property\">\n <div class=\"flex justify-content-between align-items-center\">\n {{ col.title ?? (col.property | i18nProperty: descriptor.model) | translate }}\n <p-sortIcon [field]=\"col.property\"></p-sortIcon>\n <mng-table-column-filter\n *ngIf=\"col.filterDescriptor && descriptor.filterDisplay === filterDisplayMenu\"\n class=\"ml-auto\"\n [display]=\"descriptor.filterDisplay\"\n [descriptor]=\"col.filterDescriptor\">\n </mng-table-column-filter>\n </div>\n </th>\n <th *ngIf=\"!col.isSortEnabled\">\n {{ col.title ?? (col.property | i18nProperty: descriptor.model) | translate }}\n <ng-container>\n <mng-table-column-filter\n *ngIf=\"col.filterDescriptor && descriptor.filterDisplay === filterDisplayMenu\"\n class=\"ml-auto\"\n [display]=\"descriptor.filterDisplay\"\n [descriptor]=\"col.filterDescriptor\">\n </mng-table-column-filter>\n </ng-container>\n </th>\n </ng-container>\n <th *ngIf=\"columnActionTemplate || columnActionComponent\"></th>\n </tr>\n <tr *ngIf=\"descriptor.filterDisplay === filterDisplayRow\">\n <!-- We need the line below, because otherwise p-tableRadioButton shifts the rest of the columns in table -->\n <th *ngIf=\"selectionEnabled && selectionMode === 'single'\" style=\"width: 2.25em\"></th>\n <th *ngFor=\"let col of descriptor.columns\">\n <div class=\"flex\" *ngIf=\"col.filterDescriptor\">\n <mng-table-column-filter [display]=\"descriptor.filterDisplay\" [descriptor]=\"col.filterDescriptor\"></mng-table-column-filter>\n </div>\n </th>\n <th *ngIf=\"columnActionTemplate || columnActionComponent\"></th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-item let-idx=\"rowIndex\">\n <tr [style.height.px]=\"descriptor.rowHeight\">\n <td *ngIf=\"selectionEnabled && selectionMode === 'multiple'\">\n <p-tableCheckbox [value]=\"item\"></p-tableCheckbox>\n </td>\n <td *ngIf=\"selectionEnabled && selectionMode === 'single'\">\n <p-tableRadioButton [value]=\"item\"></p-tableRadioButton>\n </td>\n <td *ngFor=\"let col of descriptor.columns\" (click)=\"onCellClick(col, item, idx)\" [class.clickable]=\"isColumnClickable\">\n <mng-table-column-value [descriptor]=\"col\" [item]=\"item\"></mng-table-column-value>\n </td>\n <td *ngIf=\"columnActionTemplate || columnActionComponent\" class=\"text-right\">\n <ng-container *ngIf=\"columnActionTemplate; else showColumnActionComponent\">\n <ng-container *ngTemplateOutlet=\"columnActionTemplate; context: {rowItem: item, rowIndex: idx}\"></ng-container>\n </ng-container>\n <ng-template #showColumnActionComponent>\n <span [mngComponent]=\"columnActionComponent!\" (instanceCreated)=\"onColumnActionCmpInst($event)\"></span>\n </ng-template>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"loadingbody\">\n <tr [style.height.px]=\"descriptor.rowHeight\">\n <td [attr.colspan]=\"descriptor.columns.length + (columnActionTemplate || columnActionComponent ? 1 : 0) + (selectionEnabled ? 1 : 0)\">\n <div class=\"loading-text\"></div>\n <p-skeleton [ngStyle]=\"{width: '100%'}\"></p-skeleton>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"emptymessage\">\n <tr [style.height.px]=\"rowHeight\">\n <td [attr.colspan]=\"descriptor.columns.length + (columnActionTemplate || columnActionComponent ? 1 : 0) + (selectionEnabled ? 1 : 0)\">\n {{ 'mngTable.noItems' | translate }}\n </td>\n </tr>\n </ng-template>\n </p-table>\n</div>\n", components: [{ type: i4$5.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollDelay", "virtualRowHeight", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "stateKey", "stateStorage", "editMode", "groupRowsBy", "groupRowsByOrder", "minBufferPx", "maxBufferPx", "responsiveLayout", "breakpoint", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll"], outputs: ["selectAllChange", "selectionChange", "contextMenuSelectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { type: i4$5.TableHeaderCheckbox, selector: "p-tableHeaderCheckbox", inputs: ["disabled", "inputId", "name", "ariaLabel"] }, { type: i4$5.SortIcon, selector: "p-sortIcon", inputs: ["field"] }, { type: MngTableColumnFilterComponent, selector: "mng-table-column-filter", inputs: ["descriptor", "display"] }, { type: i4$5.TableCheckbox, selector: "p-tableCheckbox", inputs: ["disabled", "value", "index", "inputId", "name", "required", "ariaLabel"] }, { type: i4$5.TableRadioButton, selector: "p-tableRadioButton", inputs: ["disabled", "value", "index", "inputId", "name", "ariaLabel"] }, { type: MngTableColumnValueComponent, selector: "mng-table-column-value", inputs: ["descriptor", "item"] }, { type: i7$1.Skeleton, selector: "p-skeleton", inputs: ["styleClass", "style", "shape", "animation", "borderRadius", "size", "width", "height"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: MngComponentDirective, selector: "[mngComponent]", inputs: ["mngComponent", "inputs"], outputs: ["instanceCreated"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4$5.SortableColumn, selector: "[pSortableColumn]", inputs: ["pSortableColumn", "pSortableColumnDisabled"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], pipes: { "async": i4.AsyncPipe, "translate": i1$1.TranslatePipe, "i18nProperty": MngI18nPropertyPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6317
|
+
MngTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngTableComponent, selector: "mng-table", inputs: { descriptor: "descriptor", items: "items", queryResult: "queryResult", loading: "loading", dataProvider: "dataProvider", useQueryParams: "useQueryParams", selectionMode: "selectionMode", selectionEnabled: "selectionEnabled", isColumnClickable: "isColumnClickable", viewContainerInit: ["viewContainer", "viewContainerInit"], captionComponent: "captionComponent", columnActionComponent: "columnActionComponent" }, outputs: { loadEventEmitter: "tableLoad", cellClickEventEmitter: "cellClick", selectionChangeEventEmitter: "selectionChange", captionCmpInstEventEmitter: "captionComponentInstance", columnActionCmpInstEventEmitter: "columnActionComponentInstance" }, queries: [{ propertyName: "templates", predicate: MngTemplateDirective }], viewQueries: [{ propertyName: "primeTable", first: true, predicate: Table, descendants: true }, { propertyName: "components", predicate: MngComponentDirective, descendants: true }], ngImport: i0, template: "<div [style.height]=\"scrollHeight === 'flex' ? 'calc(100vh - ' + descriptor.tableFullHeightOffset + 'px)' : null\">\n <!-- MUST NOT use observable for value when using virtual scroll - does not work for some reason -->\n <p-table\n *ngIf=\"!useQueryParams || useQueryParamsInitialized\"\n [value]=\"infiniteScroll ? dataProviderInfiniteScrollItems : (queryResult$ | async)?.pageData ?? []\"\n [dataKey]=\"$any(descriptor.dataKeyProperty)\"\n [lazy]=\"useDataProvider\"\n [loading]=\"(loading$ | async) ?? false\"\n [paginator]=\"useDataProvider && !infiniteScroll\"\n [rows]=\"$any(infiniteScroll ? 20 : rows)\"\n [first]=\"$any(infiniteScroll ? 0 : offset)\"\n [totalRecords]=\"$any(infiniteScroll ? null : (queryResult$ | async)?.allDataCount ?? 0)\"\n [rowsPerPageOptions]=\"$any(infiniteScroll ? null : rowsPerPageOptions)\"\n [showCurrentPageReport]=\"!infiniteScroll\"\n [currentPageReportTemplate]=\"'mngTable.paginationMsg' | translate\"\n [multiSortMeta]=\"$any(multiSortMeta)\"\n [filters]=\"filterMetadata\"\n [(selection)]=\"selection\"\n (selectionChange)=\"onSelectionChange($event)\"\n [scrollable]=\"infiniteScroll\"\n [virtualScroll]=\"infiniteScroll\"\n [virtualRowHeight]=\"$any(rowHeight)\"\n [scrollHeight]=\"$any(scrollHeight)\"\n [rowHover]=\"true\"\n (onLazyLoad)=\"onTableLazyLoad($event)\"\n (onSort)=\"onTableSort($event)\"\n (onFilter)=\"onTableFilter($event)\"\n [selectionMode]=\"selectionMode\"\n sortMode=\"multiple\"\n responsiveLayout=\"scroll\">\n <ng-template *ngIf=\"captionTemplate || captionComponent || descriptor.title\" pTemplate=\"caption\">\n <ng-container *ngIf=\"captionTemplate; else componentOrDefaultCaption\">\n <ng-container *ngTemplateOutlet=\"captionTemplate\"></ng-container>\n </ng-container>\n <ng-template #componentOrDefaultCaption>\n <div *ngIf=\"captionComponent; else defaultCaption\" [mngComponent]=\"captionComponent\" (instanceCreated)=\"onCaptionCmpInst($event)\"></div>\n <ng-template #defaultCaption>\n <h5 class=\"p-0 m-0\">{{ descriptor.title }}</h5>\n </ng-template>\n </ng-template>\n </ng-template>\n\n <ng-template pTemplate=\"header\">\n <tr *ngIf=\"!descriptor.hideHeader\">\n <th *ngIf=\"selectionEnabled && selectionMode === 'multiple'\">\n <p-tableHeaderCheckbox></p-tableHeaderCheckbox>\n </th>\n <!-- We need the line below, because otherwise p-tableRadioButton shifts the rest of the columns in table -->\n <th *ngIf=\"selectionEnabled && selectionMode === 'single'\" style=\"width: 2.25em\"></th>\n <ng-container *ngFor=\"let col of descriptor.columns\">\n <th *ngIf=\"col.isSortEnabled\" [pSortableColumn]=\"col.property\">\n <div class=\"flex justify-content-between align-items-center\">\n {{ col.title ?? (col.property | i18nProperty: descriptor.model) | translate }}\n <p-sortIcon [field]=\"col.property\"></p-sortIcon>\n <mng-table-column-filter\n *ngIf=\"col.filterDescriptor && descriptor.filterDisplay === filterDisplayMenu\"\n class=\"ml-auto\"\n [display]=\"descriptor.filterDisplay\"\n [descriptor]=\"col.filterDescriptor\">\n </mng-table-column-filter>\n </div>\n </th>\n <th *ngIf=\"!col.isSortEnabled\">\n {{ col.title ?? (col.property | i18nProperty: descriptor.model) | translate }}\n <ng-container>\n <mng-table-column-filter\n *ngIf=\"col.filterDescriptor && descriptor.filterDisplay === filterDisplayMenu\"\n class=\"ml-auto\"\n [display]=\"descriptor.filterDisplay\"\n [descriptor]=\"col.filterDescriptor\">\n </mng-table-column-filter>\n </ng-container>\n </th>\n </ng-container>\n <th *ngIf=\"columnActionTemplate || columnActionComponent\"></th>\n </tr>\n <tr *ngIf=\"descriptor.filterDisplay === filterDisplayRow\">\n <!-- We need the line below, because otherwise p-tableRadioButton shifts the rest of the columns in table -->\n <th *ngIf=\"selectionEnabled && selectionMode === 'single'\" style=\"width: 2.25em\"></th>\n <th *ngFor=\"let col of descriptor.columns\">\n <div class=\"flex\" *ngIf=\"col.filterDescriptor\">\n <mng-table-column-filter [display]=\"descriptor.filterDisplay\" [descriptor]=\"col.filterDescriptor\"></mng-table-column-filter>\n </div>\n </th>\n <th *ngIf=\"columnActionTemplate || columnActionComponent\"></th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-item let-idx=\"rowIndex\">\n <tr [style.height.px]=\"descriptor.rowHeight\">\n <td *ngIf=\"selectionEnabled && selectionMode === 'multiple'\">\n <p-tableCheckbox [value]=\"item\"></p-tableCheckbox>\n </td>\n <td *ngIf=\"selectionEnabled && selectionMode === 'single'\">\n <p-tableRadioButton [value]=\"item\"></p-tableRadioButton>\n </td>\n <td *ngFor=\"let col of descriptor.columns\" (click)=\"onCellClick(col, item, idx)\" [class.clickable]=\"isColumnClickable\">\n <mng-table-column-value [descriptor]=\"col\" [item]=\"item\"></mng-table-column-value>\n </td>\n <td *ngIf=\"columnActionTemplate || columnActionComponent\" class=\"text-right\">\n <ng-container *ngIf=\"columnActionTemplate; else showColumnActionComponent\">\n <ng-container *ngTemplateOutlet=\"columnActionTemplate; context: {rowItem: item, rowIndex: idx}\"></ng-container>\n </ng-container>\n <ng-template #showColumnActionComponent>\n <span [mngComponent]=\"columnActionComponent!\" (instanceCreated)=\"onColumnActionCmpInst($event)\"></span>\n </ng-template>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"loadingbody\">\n <tr [style.height.px]=\"descriptor.rowHeight\">\n <td [attr.colspan]=\"descriptor.columns.length + (columnActionTemplate || columnActionComponent ? 1 : 0) + (selectionEnabled ? 1 : 0)\">\n <div class=\"loading-text\"></div>\n <p-skeleton [ngStyle]=\"{width: '100%'}\"></p-skeleton>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"emptymessage\">\n <tr [style.height.px]=\"rowHeight\">\n <td [attr.colspan]=\"descriptor.columns.length + (columnActionTemplate || columnActionComponent ? 1 : 0) + (selectionEnabled ? 1 : 0)\">\n {{ 'mngTable.noItems' | translate }}\n </td>\n </tr>\n </ng-template>\n </p-table>\n</div>\n", components: [{ type: i4$5.Table, selector: "p-table", inputs: ["frozenColumns", "frozenValue", "style", "styleClass", "tableStyle", "tableStyleClass", "paginator", "pageLinks", "rowsPerPageOptions", "alwaysShowPaginator", "paginatorPosition", "paginatorDropdownAppendTo", "paginatorDropdownScrollHeight", "currentPageReportTemplate", "showCurrentPageReport", "showJumpToPageDropdown", "showJumpToPageInput", "showFirstLastIcon", "showPageLinks", "defaultSortOrder", "sortMode", "resetPageOnSort", "selectionMode", "selectionPageOnly", "contextMenuSelection", "contextMenuSelectionMode", "dataKey", "metaKeySelection", "rowSelectable", "rowTrackBy", "lazy", "lazyLoadOnInit", "compareSelectionBy", "csvSeparator", "exportFilename", "filters", "globalFilterFields", "filterDelay", "filterLocale", "expandedRowKeys", "editingRowKeys", "rowExpandMode", "scrollable", "scrollDirection", "rowGroupMode", "scrollHeight", "virtualScroll", "virtualScrollDelay", "virtualRowHeight", "frozenWidth", "responsive", "contextMenu", "resizableColumns", "columnResizeMode", "reorderableColumns", "loading", "loadingIcon", "showLoader", "rowHover", "customSort", "showInitialSortBadge", "autoLayout", "exportFunction", "stateKey", "stateStorage", "editMode", "groupRowsBy", "groupRowsByOrder", "minBufferPx", "maxBufferPx", "responsiveLayout", "breakpoint", "value", "columns", "first", "rows", "totalRecords", "sortField", "sortOrder", "multiSortMeta", "selection", "selectAll"], outputs: ["selectAllChange", "selectionChange", "contextMenuSelectionChange", "onRowSelect", "onRowUnselect", "onPage", "onSort", "onFilter", "onLazyLoad", "onRowExpand", "onRowCollapse", "onContextMenuSelect", "onColResize", "onColReorder", "onRowReorder", "onEditInit", "onEditComplete", "onEditCancel", "onHeaderCheckboxToggle", "sortFunction", "firstChange", "rowsChange", "onStateSave", "onStateRestore"] }, { type: i4$5.TableHeaderCheckbox, selector: "p-tableHeaderCheckbox", inputs: ["disabled", "inputId", "name", "ariaLabel"] }, { type: i4$5.SortIcon, selector: "p-sortIcon", inputs: ["field"] }, { type: MngTableColumnFilterComponent, selector: "mng-table-column-filter", inputs: ["descriptor", "display"] }, { type: i4$5.TableCheckbox, selector: "p-tableCheckbox", inputs: ["disabled", "value", "index", "inputId", "name", "required", "ariaLabel"] }, { type: i4$5.TableRadioButton, selector: "p-tableRadioButton", inputs: ["disabled", "value", "index", "inputId", "name", "ariaLabel"] }, { type: MngTableColumnValueComponent, selector: "mng-table-column-value", inputs: ["descriptor", "item"] }, { type: i7$1.Skeleton, selector: "p-skeleton", inputs: ["styleClass", "style", "shape", "animation", "borderRadius", "size", "width", "height"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: MngComponentDirective, selector: "[mngComponent]", inputs: ["mngComponent", "inputs"], outputs: ["instanceCreated"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i4$5.SortableColumn, selector: "[pSortableColumn]", inputs: ["pSortableColumn", "pSortableColumnDisabled"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], pipes: { "async": i4.AsyncPipe, "translate": i1$1.TranslatePipe, "i18nProperty": MngI18nPropertyPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6239
6318
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngTableComponent, decorators: [{
|
|
6240
6319
|
type: Component,
|
|
6241
6320
|
args: [{ selector: 'mng-table', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div [style.height]=\"scrollHeight === 'flex' ? 'calc(100vh - ' + descriptor.tableFullHeightOffset + 'px)' : null\">\n <!-- MUST NOT use observable for value when using virtual scroll - does not work for some reason -->\n <p-table\n *ngIf=\"!useQueryParams || useQueryParamsInitialized\"\n [value]=\"infiniteScroll ? dataProviderInfiniteScrollItems : (queryResult$ | async)?.pageData ?? []\"\n [dataKey]=\"$any(descriptor.dataKeyProperty)\"\n [lazy]=\"useDataProvider\"\n [loading]=\"(loading$ | async) ?? false\"\n [paginator]=\"useDataProvider && !infiniteScroll\"\n [rows]=\"$any(infiniteScroll ? 20 : rows)\"\n [first]=\"$any(infiniteScroll ? 0 : offset)\"\n [totalRecords]=\"$any(infiniteScroll ? null : (queryResult$ | async)?.allDataCount ?? 0)\"\n [rowsPerPageOptions]=\"$any(infiniteScroll ? null : rowsPerPageOptions)\"\n [showCurrentPageReport]=\"!infiniteScroll\"\n [currentPageReportTemplate]=\"'mngTable.paginationMsg' | translate\"\n [multiSortMeta]=\"$any(multiSortMeta)\"\n [filters]=\"filterMetadata\"\n [(selection)]=\"selection\"\n (selectionChange)=\"onSelectionChange($event)\"\n [scrollable]=\"infiniteScroll\"\n [virtualScroll]=\"infiniteScroll\"\n [virtualRowHeight]=\"$any(rowHeight)\"\n [scrollHeight]=\"$any(scrollHeight)\"\n [rowHover]=\"true\"\n (onLazyLoad)=\"onTableLazyLoad($event)\"\n (onSort)=\"onTableSort($event)\"\n (onFilter)=\"onTableFilter($event)\"\n [selectionMode]=\"selectionMode\"\n sortMode=\"multiple\"\n responsiveLayout=\"scroll\">\n <ng-template *ngIf=\"captionTemplate || captionComponent || descriptor.title\" pTemplate=\"caption\">\n <ng-container *ngIf=\"captionTemplate; else componentOrDefaultCaption\">\n <ng-container *ngTemplateOutlet=\"captionTemplate\"></ng-container>\n </ng-container>\n <ng-template #componentOrDefaultCaption>\n <div *ngIf=\"captionComponent; else defaultCaption\" [mngComponent]=\"captionComponent\" (instanceCreated)=\"onCaptionCmpInst($event)\"></div>\n <ng-template #defaultCaption>\n <h5 class=\"p-0 m-0\">{{ descriptor.title }}</h5>\n </ng-template>\n </ng-template>\n </ng-template>\n\n <ng-template pTemplate=\"header\">\n <tr *ngIf=\"!descriptor.hideHeader\">\n <th *ngIf=\"selectionEnabled && selectionMode === 'multiple'\">\n <p-tableHeaderCheckbox></p-tableHeaderCheckbox>\n </th>\n <!-- We need the line below, because otherwise p-tableRadioButton shifts the rest of the columns in table -->\n <th *ngIf=\"selectionEnabled && selectionMode === 'single'\" style=\"width: 2.25em\"></th>\n <ng-container *ngFor=\"let col of descriptor.columns\">\n <th *ngIf=\"col.isSortEnabled\" [pSortableColumn]=\"col.property\">\n <div class=\"flex justify-content-between align-items-center\">\n {{ col.title ?? (col.property | i18nProperty: descriptor.model) | translate }}\n <p-sortIcon [field]=\"col.property\"></p-sortIcon>\n <mng-table-column-filter\n *ngIf=\"col.filterDescriptor && descriptor.filterDisplay === filterDisplayMenu\"\n class=\"ml-auto\"\n [display]=\"descriptor.filterDisplay\"\n [descriptor]=\"col.filterDescriptor\">\n </mng-table-column-filter>\n </div>\n </th>\n <th *ngIf=\"!col.isSortEnabled\">\n {{ col.title ?? (col.property | i18nProperty: descriptor.model) | translate }}\n <ng-container>\n <mng-table-column-filter\n *ngIf=\"col.filterDescriptor && descriptor.filterDisplay === filterDisplayMenu\"\n class=\"ml-auto\"\n [display]=\"descriptor.filterDisplay\"\n [descriptor]=\"col.filterDescriptor\">\n </mng-table-column-filter>\n </ng-container>\n </th>\n </ng-container>\n <th *ngIf=\"columnActionTemplate || columnActionComponent\"></th>\n </tr>\n <tr *ngIf=\"descriptor.filterDisplay === filterDisplayRow\">\n <!-- We need the line below, because otherwise p-tableRadioButton shifts the rest of the columns in table -->\n <th *ngIf=\"selectionEnabled && selectionMode === 'single'\" style=\"width: 2.25em\"></th>\n <th *ngFor=\"let col of descriptor.columns\">\n <div class=\"flex\" *ngIf=\"col.filterDescriptor\">\n <mng-table-column-filter [display]=\"descriptor.filterDisplay\" [descriptor]=\"col.filterDescriptor\"></mng-table-column-filter>\n </div>\n </th>\n <th *ngIf=\"columnActionTemplate || columnActionComponent\"></th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-item let-idx=\"rowIndex\">\n <tr [style.height.px]=\"descriptor.rowHeight\">\n <td *ngIf=\"selectionEnabled && selectionMode === 'multiple'\">\n <p-tableCheckbox [value]=\"item\"></p-tableCheckbox>\n </td>\n <td *ngIf=\"selectionEnabled && selectionMode === 'single'\">\n <p-tableRadioButton [value]=\"item\"></p-tableRadioButton>\n </td>\n <td *ngFor=\"let col of descriptor.columns\" (click)=\"onCellClick(col, item, idx)\" [class.clickable]=\"isColumnClickable\">\n <mng-table-column-value [descriptor]=\"col\" [item]=\"item\"></mng-table-column-value>\n </td>\n <td *ngIf=\"columnActionTemplate || columnActionComponent\" class=\"text-right\">\n <ng-container *ngIf=\"columnActionTemplate; else showColumnActionComponent\">\n <ng-container *ngTemplateOutlet=\"columnActionTemplate; context: {rowItem: item, rowIndex: idx}\"></ng-container>\n </ng-container>\n <ng-template #showColumnActionComponent>\n <span [mngComponent]=\"columnActionComponent!\" (instanceCreated)=\"onColumnActionCmpInst($event)\"></span>\n </ng-template>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"loadingbody\">\n <tr [style.height.px]=\"descriptor.rowHeight\">\n <td [attr.colspan]=\"descriptor.columns.length + (columnActionTemplate || columnActionComponent ? 1 : 0) + (selectionEnabled ? 1 : 0)\">\n <div class=\"loading-text\"></div>\n <p-skeleton [ngStyle]=\"{width: '100%'}\"></p-skeleton>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"emptymessage\">\n <tr [style.height.px]=\"rowHeight\">\n <td [attr.colspan]=\"descriptor.columns.length + (columnActionTemplate || columnActionComponent ? 1 : 0) + (selectionEnabled ? 1 : 0)\">\n {{ 'mngTable.noItems' | translate }}\n </td>\n </tr>\n </ng-template>\n </p-table>\n</div>\n" }]
|
|
@@ -6259,6 +6338,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
6259
6338
|
type: Input
|
|
6260
6339
|
}], isColumnClickable: [{
|
|
6261
6340
|
type: Input
|
|
6341
|
+
}], viewContainerInit: [{
|
|
6342
|
+
type: Input,
|
|
6343
|
+
args: ['viewContainer']
|
|
6262
6344
|
}], captionComponent: [{
|
|
6263
6345
|
type: Input
|
|
6264
6346
|
}], columnActionComponent: [{
|
|
@@ -6311,7 +6393,7 @@ class MngTableviewComponent {
|
|
|
6311
6393
|
if (this.dataProvider) {
|
|
6312
6394
|
this.viewContainerService.dataProvider = this.dataProvider;
|
|
6313
6395
|
}
|
|
6314
|
-
const reloadTableSubscription = this.viewContainerService.reloadTable
|
|
6396
|
+
const reloadTableSubscription = this.viewContainerService.reloadTable.subscribe(() => {
|
|
6315
6397
|
this.reloadTable();
|
|
6316
6398
|
});
|
|
6317
6399
|
this.subscriptions.push(reloadTableSubscription);
|
|
@@ -6348,13 +6430,13 @@ class MngTableviewComponent {
|
|
|
6348
6430
|
onTableCellClick(event) {
|
|
6349
6431
|
if (this.rowClickActions.length) {
|
|
6350
6432
|
for (const action of this.rowClickActions) {
|
|
6351
|
-
this.actionExecutor.triggerRowClickAction(action, event, this.route);
|
|
6433
|
+
this.actionExecutor.triggerRowClickAction(action, event, this.route, this.descriptor.table);
|
|
6352
6434
|
}
|
|
6353
6435
|
}
|
|
6354
6436
|
}
|
|
6355
6437
|
}
|
|
6356
6438
|
MngTableviewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngTableviewComponent, deps: [{ token: i1.ActivatedRoute }, { token: i2.MessageService }, { token: i1$1.TranslateService }, { token: i3.DialogService }, { token: i2.ConfirmationService }, { token: MngActionExecutorService }, { token: MngViewContainerComponentService }], target: i0.ɵɵFactoryTarget.Component });
|
|
6357
|
-
MngTableviewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngTableviewComponent, selector: "mng-tableview", inputs: { descriptor: "descriptor", dataProvider: "dataProvider", actions: "actions" }, providers: [MessageService, ConfirmationService, MngViewContainerComponentService], viewQueries: [{ propertyName: "tableComponent", first: true, predicate: MngTableComponent, descendants: true }], ngImport: i0, template: "<div class=\"mng-tableview\">\n <p-toast></p-toast>\n\n <div class=\"card\">\n <p-toolbar styleClass=\"mb-4\" *ngIf=\"toolbarLeftActions.length > 0 || toolbarRightActions.length > 0\">\n <ng-template pTemplate=\"left\">\n <mng-action *ngFor=\"let action of toolbarLeftActions\" [action]=\"action\"> </mng-action>\n </ng-template>\n\n <ng-template pTemplate=\"right\">\n <mng-action *ngFor=\"let action of toolbarRightActions\" [action]=\"action\"> </mng-action>\n </ng-template>\n </p-toolbar>\n\n <mng-table\n [descriptor]=\"descriptor.table\"\n [dataProvider]=\"dataProvider\"\n [useQueryParams]=\"true\"\n (cellClick)=\"onTableCellClick($event)\"\n [isColumnClickable]=\"rowClickActions.length > 0\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-between table-header\">\n <h5 class=\"p-0 m-0\">{{ descriptor.tableTitle | translate }}</h5>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\">\n <mng-action\n *ngFor=\"let action of rowInlineActions\"\n [action]=\"action\"\n [item]=\"item\"\n [itemId]=\"descriptor.model.idPropertyName ? item[descriptor.model.idPropertyName] : null\">\n </mng-action>\n </ng-template>\n </mng-table>\n </div>\n\n <router-outlet></router-outlet>\n</div>\n", components: [{ type: i6$2.Toast, selector: "p-toast", inputs: ["key", "autoZIndex", "baseZIndex", "style", "styleClass", "position", "preventOpenDuplicates", "preventDuplicates", "showTransformOptions", "hideTransformOptions", "showTransitionOptions", "hideTransitionOptions", "breakpoints"], outputs: ["onClose"] }, { type: i4$3.Toolbar, selector: "p-toolbar", inputs: ["style", "styleClass"] }, { type: MngActionComponent, selector: "mng-action", inputs: ["action", "item", "itemId", "actionData", "dataProvider", "disabled", "loading", "viewContainer"], outputs: ["trigger"] }, { type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: MngTemplateDirective, selector: "[mngTemplate]", inputs: ["type", "mngTemplate"] }, { type: i1.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], pipes: { "translate": i1$1.TranslatePipe } });
|
|
6439
|
+
MngTableviewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngTableviewComponent, selector: "mng-tableview", inputs: { descriptor: "descriptor", dataProvider: "dataProvider", actions: "actions" }, providers: [MessageService, ConfirmationService, MngViewContainerComponentService], viewQueries: [{ propertyName: "tableComponent", first: true, predicate: MngTableComponent, descendants: true }], ngImport: i0, template: "<div class=\"mng-tableview\">\n <p-toast></p-toast>\n\n <div class=\"card\">\n <p-toolbar styleClass=\"mb-4\" *ngIf=\"toolbarLeftActions.length > 0 || toolbarRightActions.length > 0\">\n <ng-template pTemplate=\"left\">\n <mng-action *ngFor=\"let action of toolbarLeftActions\" [action]=\"action\"> </mng-action>\n </ng-template>\n\n <ng-template pTemplate=\"right\">\n <mng-action *ngFor=\"let action of toolbarRightActions\" [action]=\"action\"> </mng-action>\n </ng-template>\n </p-toolbar>\n\n <mng-table\n [descriptor]=\"descriptor.table\"\n [dataProvider]=\"dataProvider\"\n [useQueryParams]=\"true\"\n (cellClick)=\"onTableCellClick($event)\"\n [isColumnClickable]=\"rowClickActions.length > 0\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-between table-header\">\n <h5 class=\"p-0 m-0\">{{ descriptor.tableTitle | translate }}</h5>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\">\n <mng-action\n *ngFor=\"let action of rowInlineActions\"\n [action]=\"action\"\n [item]=\"item\"\n [itemId]=\"descriptor.model.idPropertyName ? item[descriptor.model.idPropertyName] : null\">\n </mng-action>\n </ng-template>\n </mng-table>\n </div>\n\n <router-outlet></router-outlet>\n</div>\n", components: [{ type: i6$2.Toast, selector: "p-toast", inputs: ["key", "autoZIndex", "baseZIndex", "style", "styleClass", "position", "preventOpenDuplicates", "preventDuplicates", "showTransformOptions", "hideTransformOptions", "showTransitionOptions", "hideTransitionOptions", "breakpoints"], outputs: ["onClose"] }, { type: i4$3.Toolbar, selector: "p-toolbar", inputs: ["style", "styleClass"] }, { type: MngActionComponent, selector: "mng-action", inputs: ["action", "item", "itemId", "actionData", "dataProvider", "disabled", "loading", "viewContainer"], outputs: ["trigger"] }, { type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "viewContainer", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: MngTemplateDirective, selector: "[mngTemplate]", inputs: ["type", "mngTemplate"] }, { type: i1.RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }], pipes: { "translate": i1$1.TranslatePipe } });
|
|
6358
6440
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngTableviewComponent, decorators: [{
|
|
6359
6441
|
type: Component,
|
|
6360
6442
|
args: [{ selector: 'mng-tableview', providers: [MessageService, ConfirmationService, MngViewContainerComponentService], template: "<div class=\"mng-tableview\">\n <p-toast></p-toast>\n\n <div class=\"card\">\n <p-toolbar styleClass=\"mb-4\" *ngIf=\"toolbarLeftActions.length > 0 || toolbarRightActions.length > 0\">\n <ng-template pTemplate=\"left\">\n <mng-action *ngFor=\"let action of toolbarLeftActions\" [action]=\"action\"> </mng-action>\n </ng-template>\n\n <ng-template pTemplate=\"right\">\n <mng-action *ngFor=\"let action of toolbarRightActions\" [action]=\"action\"> </mng-action>\n </ng-template>\n </p-toolbar>\n\n <mng-table\n [descriptor]=\"descriptor.table\"\n [dataProvider]=\"dataProvider\"\n [useQueryParams]=\"true\"\n (cellClick)=\"onTableCellClick($event)\"\n [isColumnClickable]=\"rowClickActions.length > 0\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-between table-header\">\n <h5 class=\"p-0 m-0\">{{ descriptor.tableTitle | translate }}</h5>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\">\n <mng-action\n *ngFor=\"let action of rowInlineActions\"\n [action]=\"action\"\n [item]=\"item\"\n [itemId]=\"descriptor.model.idPropertyName ? item[descriptor.model.idPropertyName] : null\">\n </mng-action>\n </ng-template>\n </mng-table>\n </div>\n\n <router-outlet></router-outlet>\n</div>\n" }]
|
|
@@ -6601,7 +6683,7 @@ class MngFormlyFieldLookupDialogComponent extends FieldType {
|
|
|
6601
6683
|
}
|
|
6602
6684
|
}
|
|
6603
6685
|
MngFormlyFieldLookupDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngFormlyFieldLookupDialogComponent, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
6604
|
-
MngFormlyFieldLookupDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngFormlyFieldLookupDialogComponent, selector: "mng-formly-field-lookup-dialog", viewQueries: [{ propertyName: "mngTable", first: true, predicate: MngTableComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<div [class]=\"'p-inputgroup mng-dropdown-dialog' + descriptor.inputClassName\" [class.p-inputtext-sm]=\"descriptor.isSizeSmall\" [class.p-inputtext-lg]=\"descriptor.isSizeLarge\">\n <input pInputText type=\"text\" [id]=\"$any(key)\" [readonly]=\"true\" [formlyAttributes]=\"field\" [formControl]=\"fieldLabelFormControl\" />\n <i class=\"mng-dropdown-clear-icon pi pi-times\" (click)=\"clear()\" *ngIf=\"!to.required && formControl?.value && !formControl?.disabled\"></i>\n <button\n pButton\n pRipple\n class=\"mng-dropdown-dialog-search-button\"\n type=\"button\"\n [label]=\"'general.search' | translate: {item: ''}\"\n [disabled]=\"formControl?.disabled\"\n (click)=\"openSelectDialog()\"></button>\n</div>\n\n<p-dialog\n [(visible)]=\"isDialogVisible\"\n [draggable]=\"false\"\n [header]=\"'general.search' | translate: {item: to?.label!}\"\n [modal]=\"true\"\n appendTo=\"body\"\n styleClass=\"p-fluid mng-formly-field-lookup-dialog\">\n <ng-template pTemplate=\"content\">\n <mng-table\n [descriptor]=\"descriptor.dialogTableDescriptor!\"\n [dataProvider]=\"descriptor.dialogTableDataProvider\"\n [queryResult]=\"addItemsAsync\"\n [selectionEnabled]=\"true\"\n [selectionMode]=\"'single'\"\n [loading]=\"dialogIsLoading$\"\n [captionComponent]=\"config?.table?.captionComponent\"\n [columnActionComponent]=\"config?.table?.columnActionComponent\"\n (selectionChange)=\"onSelectionChange($event)\"\n (captionComponentInstance)=\"onCaptionCmpInst($event)\"\n (columnActionComponentInstance)=\"onColumnActionCmpInst($event)\">\n </mng-table>\n <p-messages [value]=\"dialogMessages\"></p-messages>\n </ng-template>\n\n <ng-template pTemplate=\"footer\">\n <button pButton pRipple type=\"button\" [label]=\"'general.cancel' | translate\" icon=\"pi pi-times\" class=\"p-button-text\" (click)=\"hideDialog()\"></button>\n <button\n pButton\n pRipple\n type=\"button\"\n [label]=\"'general.select' | translate\"\n icon=\"pi pi-check\"\n class=\"p-button-text\"\n (click)=\"addItem()\"\n [loading]=\"(dialogIsLoading$ | async) ?? false\"\n [disabled]=\"form.disabled\"></button>\n </ng-template>\n</p-dialog>\n", components: [{ type: i1$3.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }, { type: i3$2.Messages, selector: "p-messages", inputs: ["value", "closable", "style", "styleClass", "enableService", "key", "escape", "severity", "showTransitionOptions", "hideTransitionOptions"], outputs: ["valueChange"] }], directives: [{ type: i4$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i10.InputText, selector: "[pInputText]" }, { type: i3$1.ɵFormlyAttributes, selector: "[formlyAttributes]", inputs: ["formlyAttributes", "id"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { type: i8.Ripple, selector: "[pRipple]" }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }], pipes: { "translate": i1$1.TranslatePipe, "async": i4.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6686
|
+
MngFormlyFieldLookupDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngFormlyFieldLookupDialogComponent, selector: "mng-formly-field-lookup-dialog", viewQueries: [{ propertyName: "mngTable", first: true, predicate: MngTableComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<div [class]=\"'p-inputgroup mng-dropdown-dialog' + descriptor.inputClassName\" [class.p-inputtext-sm]=\"descriptor.isSizeSmall\" [class.p-inputtext-lg]=\"descriptor.isSizeLarge\">\n <input pInputText type=\"text\" [id]=\"$any(key)\" [readonly]=\"true\" [formlyAttributes]=\"field\" [formControl]=\"fieldLabelFormControl\" />\n <i class=\"mng-dropdown-clear-icon pi pi-times\" (click)=\"clear()\" *ngIf=\"!to.required && formControl?.value && !formControl?.disabled\"></i>\n <button\n pButton\n pRipple\n class=\"mng-dropdown-dialog-search-button\"\n type=\"button\"\n [label]=\"'general.search' | translate: {item: ''}\"\n [disabled]=\"formControl?.disabled\"\n (click)=\"openSelectDialog()\"></button>\n</div>\n\n<p-dialog\n [(visible)]=\"isDialogVisible\"\n [draggable]=\"false\"\n [header]=\"'general.search' | translate: {item: to?.label!}\"\n [modal]=\"true\"\n appendTo=\"body\"\n styleClass=\"p-fluid mng-formly-field-lookup-dialog\">\n <ng-template pTemplate=\"content\">\n <mng-table\n [descriptor]=\"descriptor.dialogTableDescriptor!\"\n [dataProvider]=\"descriptor.dialogTableDataProvider\"\n [queryResult]=\"addItemsAsync\"\n [selectionEnabled]=\"true\"\n [selectionMode]=\"'single'\"\n [loading]=\"dialogIsLoading$\"\n [captionComponent]=\"config?.table?.captionComponent\"\n [columnActionComponent]=\"config?.table?.columnActionComponent\"\n (selectionChange)=\"onSelectionChange($event)\"\n (captionComponentInstance)=\"onCaptionCmpInst($event)\"\n (columnActionComponentInstance)=\"onColumnActionCmpInst($event)\">\n </mng-table>\n <p-messages [value]=\"dialogMessages\"></p-messages>\n </ng-template>\n\n <ng-template pTemplate=\"footer\">\n <button pButton pRipple type=\"button\" [label]=\"'general.cancel' | translate\" icon=\"pi pi-times\" class=\"p-button-text\" (click)=\"hideDialog()\"></button>\n <button\n pButton\n pRipple\n type=\"button\"\n [label]=\"'general.select' | translate\"\n icon=\"pi pi-check\"\n class=\"p-button-text\"\n (click)=\"addItem()\"\n [loading]=\"(dialogIsLoading$ | async) ?? false\"\n [disabled]=\"form.disabled\"></button>\n </ng-template>\n</p-dialog>\n", components: [{ type: i1$3.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "viewContainer", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }, { type: i3$2.Messages, selector: "p-messages", inputs: ["value", "closable", "style", "styleClass", "enableService", "key", "escape", "severity", "showTransitionOptions", "hideTransitionOptions"], outputs: ["valueChange"] }], directives: [{ type: i4$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i10.InputText, selector: "[pInputText]" }, { type: i3$1.ɵFormlyAttributes, selector: "[formlyAttributes]", inputs: ["formlyAttributes", "id"] }, { type: i4$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { type: i8.Ripple, selector: "[pRipple]" }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }], pipes: { "translate": i1$1.TranslatePipe, "async": i4.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6605
6687
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngFormlyFieldLookupDialogComponent, decorators: [{
|
|
6606
6688
|
type: Component,
|
|
6607
6689
|
args: [{ selector: 'mng-formly-field-lookup-dialog', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div [class]=\"'p-inputgroup mng-dropdown-dialog' + descriptor.inputClassName\" [class.p-inputtext-sm]=\"descriptor.isSizeSmall\" [class.p-inputtext-lg]=\"descriptor.isSizeLarge\">\n <input pInputText type=\"text\" [id]=\"$any(key)\" [readonly]=\"true\" [formlyAttributes]=\"field\" [formControl]=\"fieldLabelFormControl\" />\n <i class=\"mng-dropdown-clear-icon pi pi-times\" (click)=\"clear()\" *ngIf=\"!to.required && formControl?.value && !formControl?.disabled\"></i>\n <button\n pButton\n pRipple\n class=\"mng-dropdown-dialog-search-button\"\n type=\"button\"\n [label]=\"'general.search' | translate: {item: ''}\"\n [disabled]=\"formControl?.disabled\"\n (click)=\"openSelectDialog()\"></button>\n</div>\n\n<p-dialog\n [(visible)]=\"isDialogVisible\"\n [draggable]=\"false\"\n [header]=\"'general.search' | translate: {item: to?.label!}\"\n [modal]=\"true\"\n appendTo=\"body\"\n styleClass=\"p-fluid mng-formly-field-lookup-dialog\">\n <ng-template pTemplate=\"content\">\n <mng-table\n [descriptor]=\"descriptor.dialogTableDescriptor!\"\n [dataProvider]=\"descriptor.dialogTableDataProvider\"\n [queryResult]=\"addItemsAsync\"\n [selectionEnabled]=\"true\"\n [selectionMode]=\"'single'\"\n [loading]=\"dialogIsLoading$\"\n [captionComponent]=\"config?.table?.captionComponent\"\n [columnActionComponent]=\"config?.table?.columnActionComponent\"\n (selectionChange)=\"onSelectionChange($event)\"\n (captionComponentInstance)=\"onCaptionCmpInst($event)\"\n (columnActionComponentInstance)=\"onColumnActionCmpInst($event)\">\n </mng-table>\n <p-messages [value]=\"dialogMessages\"></p-messages>\n </ng-template>\n\n <ng-template pTemplate=\"footer\">\n <button pButton pRipple type=\"button\" [label]=\"'general.cancel' | translate\" icon=\"pi pi-times\" class=\"p-button-text\" (click)=\"hideDialog()\"></button>\n <button\n pButton\n pRipple\n type=\"button\"\n [label]=\"'general.select' | translate\"\n icon=\"pi pi-check\"\n class=\"p-button-text\"\n (click)=\"addItem()\"\n [loading]=\"(dialogIsLoading$ | async) ?? false\"\n [disabled]=\"form.disabled\"></button>\n </ng-template>\n</p-dialog>\n" }]
|
|
@@ -6753,7 +6835,7 @@ class MngFormlyFieldTableDialogFormComponent extends FieldType {
|
|
|
6753
6835
|
}
|
|
6754
6836
|
}
|
|
6755
6837
|
MngFormlyFieldTableDialogFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngFormlyFieldTableDialogFormComponent, deps: [{ token: MngActionExecutorService }], target: i0.ɵɵFactoryTarget.Component });
|
|
6756
|
-
MngFormlyFieldTableDialogFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngFormlyFieldTableDialogFormComponent, selector: "mng-formly-table-dialog-form-field", usesInheritance: true, ngImport: i0, template: "<mng-table [descriptor]=\"descriptor.tableDescriptor\" [items]=\"items$\" (cellClick)=\"onTableCellClick($event)\" [isColumnClickable]=\"rowInlineActions.length > 0\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-end align-items-center table-header\">\n <label class=\"mng-datatable-form-label p-0 m-0\" [for]=\"key\">{{ to?.label! | translate }} <span *ngIf=\"to.required && to['hideRequiredMarker'] !== true\">*</span></label>\n <mng-action *ngFor=\"let action of toolbarRightActions\" [action]=\"action\"></mng-action>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\" let-idx=\"rowIndex\">\n <mng-action\n *ngFor=\"let action of rowInlineActions\"\n [action]=\"action\"\n [item]=\"item\"\n [itemId]=\"descriptor.tableviewDescriptor.model.idPropertyName ? item[descriptor.tableviewDescriptor.model.idPropertyName] : undefined\"\n [actionData]=\"{itemIndex: idx}\">\n </mng-action>\n </ng-template>\n</mng-table>\n", styles: [".submit-button{display:none!important;visibility:hidden}\n"], components: [{ type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }, { type: MngActionComponent, selector: "mng-action", inputs: ["action", "item", "itemId", "actionData", "dataProvider", "disabled", "loading", "viewContainer"], outputs: ["trigger"] }], directives: [{ type: MngTemplateDirective, selector: "[mngTemplate]", inputs: ["type", "mngTemplate"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "translate": i1$1.TranslatePipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6838
|
+
MngFormlyFieldTableDialogFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngFormlyFieldTableDialogFormComponent, selector: "mng-formly-table-dialog-form-field", usesInheritance: true, ngImport: i0, template: "<mng-table [descriptor]=\"descriptor.tableDescriptor\" [items]=\"items$\" (cellClick)=\"onTableCellClick($event)\" [isColumnClickable]=\"rowInlineActions.length > 0\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-end align-items-center table-header\">\n <label class=\"mng-datatable-form-label p-0 m-0\" [for]=\"key\">{{ to?.label! | translate }} <span *ngIf=\"to.required && to['hideRequiredMarker'] !== true\">*</span></label>\n <mng-action *ngFor=\"let action of toolbarRightActions\" [action]=\"action\"></mng-action>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\" let-idx=\"rowIndex\">\n <mng-action\n *ngFor=\"let action of rowInlineActions\"\n [action]=\"action\"\n [item]=\"item\"\n [itemId]=\"descriptor.tableviewDescriptor.model.idPropertyName ? item[descriptor.tableviewDescriptor.model.idPropertyName] : undefined\"\n [actionData]=\"{itemIndex: idx}\">\n </mng-action>\n </ng-template>\n</mng-table>\n", styles: [".submit-button{display:none!important;visibility:hidden}\n"], components: [{ type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "viewContainer", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }, { type: MngActionComponent, selector: "mng-action", inputs: ["action", "item", "itemId", "actionData", "dataProvider", "disabled", "loading", "viewContainer"], outputs: ["trigger"] }], directives: [{ type: MngTemplateDirective, selector: "[mngTemplate]", inputs: ["type", "mngTemplate"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], pipes: { "translate": i1$1.TranslatePipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6757
6839
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngFormlyFieldTableDialogFormComponent, decorators: [{
|
|
6758
6840
|
type: Component,
|
|
6759
6841
|
args: [{ selector: 'mng-formly-table-dialog-form-field', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mng-table [descriptor]=\"descriptor.tableDescriptor\" [items]=\"items$\" (cellClick)=\"onTableCellClick($event)\" [isColumnClickable]=\"rowInlineActions.length > 0\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-end align-items-center table-header\">\n <label class=\"mng-datatable-form-label p-0 m-0\" [for]=\"key\">{{ to?.label! | translate }} <span *ngIf=\"to.required && to['hideRequiredMarker'] !== true\">*</span></label>\n <mng-action *ngFor=\"let action of toolbarRightActions\" [action]=\"action\"></mng-action>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\" let-idx=\"rowIndex\">\n <mng-action\n *ngFor=\"let action of rowInlineActions\"\n [action]=\"action\"\n [item]=\"item\"\n [itemId]=\"descriptor.tableviewDescriptor.model.idPropertyName ? item[descriptor.tableviewDescriptor.model.idPropertyName] : undefined\"\n [actionData]=\"{itemIndex: idx}\">\n </mng-action>\n </ng-template>\n</mng-table>\n", styles: [".submit-button{display:none!important;visibility:hidden}\n"] }]
|
|
@@ -6864,7 +6946,7 @@ class MngFormlyFieldTableDialogMultiselectComponent extends FieldType {
|
|
|
6864
6946
|
}
|
|
6865
6947
|
}
|
|
6866
6948
|
MngFormlyFieldTableDialogMultiselectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngFormlyFieldTableDialogMultiselectComponent, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
6867
|
-
MngFormlyFieldTableDialogMultiselectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngFormlyFieldTableDialogMultiselectComponent, selector: "mng-formly-table-multiselect-add-field", usesInheritance: true, ngImport: i0, template: "<mng-table [descriptor]=\"descriptor.mainTableDescriptor\" [items]=\"itemsAsync\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-end align-items-center table-header pt-0\">\n <label class=\"mng-datatable-form-label p-0 m-0\" [for]=\"key\">{{ to?.label! | translate }} <span *ngIf=\"to.required && to['hideRequiredMarker'] !== true\">*</span></label>\n <button\n *ngIf=\"hasAddAction && !options?.formState?.disabled\"\n pButton\n pRipple\n type=\"button\"\n icon=\"pi pi-plus\"\n class=\"p-button-rounded p-button-success mng-button-xs\"\n (click)=\"openAddDialog()\"\n [disabled]=\"formControl!.disabled\"></button>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\">\n <button\n *ngIf=\"hasDeleteAction && !options?.formState?.disabled\"\n pButton\n pRipple\n type=\"button\"\n icon=\"pi pi-trash\"\n class=\"p-button-rounded p-button-danger mng-button-xs\"\n (click)=\"removeItem(item)\"\n [disabled]=\"formControl!.disabled\"></button>\n </ng-template>\n</mng-table>\n\n<p-dialog\n *ngIf=\"hasAddAction\"\n [(visible)]=\"isDialogVisible\"\n [draggable]=\"false\"\n [header]=\"'general.addItem' | translate: {item: to?.label!}\"\n [modal]=\"true\"\n appendTo=\"body\"\n styleClass=\"p-fluid mng-formly-field-table-multiselect-dialog\">\n <ng-template pTemplate=\"content\">\n <mng-table\n [descriptor]=\"descriptor.mainTableDescriptor\"\n [queryResult]=\"addItemsAsync\"\n [selectionEnabled]=\"true\"\n [loading]=\"dialogIsLoading$\"\n (selectionChange)=\"onSelectionChange($event)\">\n </mng-table>\n <p-messages [value]=\"dialogMessages\"></p-messages>\n </ng-template>\n\n <ng-template pTemplate=\"footer\">\n <button pButton pRipple type=\"button\" [label]=\"'general.cancel' | translate\" icon=\"pi pi-times\" class=\"p-button-text\" (click)=\"hideDialog()\"></button>\n <button\n pButton\n pRipple\n type=\"button\"\n [label]=\"'general.add' | translate\"\n icon=\"pi pi-check\"\n class=\"p-button-text\"\n (click)=\"addItems()\"\n [loading]=\"(dialogIsLoading$ | async) ?? false\"\n [disabled]=\"form.disabled\"></button>\n </ng-template>\n</p-dialog>\n", components: [{ type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }, { type: i1$3.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { type: i3$2.Messages, selector: "p-messages", inputs: ["value", "closable", "style", "styleClass", "enableService", "key", "escape", "severity", "showTransitionOptions", "hideTransitionOptions"], outputs: ["valueChange"] }], directives: [{ type: MngTemplateDirective, selector: "[mngTemplate]", inputs: ["type", "mngTemplate"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { type: i8.Ripple, selector: "[pRipple]" }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }], pipes: { "translate": i1$1.TranslatePipe, "async": i4.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6949
|
+
MngFormlyFieldTableDialogMultiselectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.3", type: MngFormlyFieldTableDialogMultiselectComponent, selector: "mng-formly-table-multiselect-add-field", usesInheritance: true, ngImport: i0, template: "<mng-table [descriptor]=\"descriptor.mainTableDescriptor\" [items]=\"itemsAsync\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-end align-items-center table-header pt-0\">\n <label class=\"mng-datatable-form-label p-0 m-0\" [for]=\"key\">{{ to?.label! | translate }} <span *ngIf=\"to.required && to['hideRequiredMarker'] !== true\">*</span></label>\n <button\n *ngIf=\"hasAddAction && !options?.formState?.disabled\"\n pButton\n pRipple\n type=\"button\"\n icon=\"pi pi-plus\"\n class=\"p-button-rounded p-button-success mng-button-xs\"\n (click)=\"openAddDialog()\"\n [disabled]=\"formControl!.disabled\"></button>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\">\n <button\n *ngIf=\"hasDeleteAction && !options?.formState?.disabled\"\n pButton\n pRipple\n type=\"button\"\n icon=\"pi pi-trash\"\n class=\"p-button-rounded p-button-danger mng-button-xs\"\n (click)=\"removeItem(item)\"\n [disabled]=\"formControl!.disabled\"></button>\n </ng-template>\n</mng-table>\n\n<p-dialog\n *ngIf=\"hasAddAction\"\n [(visible)]=\"isDialogVisible\"\n [draggable]=\"false\"\n [header]=\"'general.addItem' | translate: {item: to?.label!}\"\n [modal]=\"true\"\n appendTo=\"body\"\n styleClass=\"p-fluid mng-formly-field-table-multiselect-dialog\">\n <ng-template pTemplate=\"content\">\n <mng-table\n [descriptor]=\"descriptor.mainTableDescriptor\"\n [queryResult]=\"addItemsAsync\"\n [selectionEnabled]=\"true\"\n [loading]=\"dialogIsLoading$\"\n (selectionChange)=\"onSelectionChange($event)\">\n </mng-table>\n <p-messages [value]=\"dialogMessages\"></p-messages>\n </ng-template>\n\n <ng-template pTemplate=\"footer\">\n <button pButton pRipple type=\"button\" [label]=\"'general.cancel' | translate\" icon=\"pi pi-times\" class=\"p-button-text\" (click)=\"hideDialog()\"></button>\n <button\n pButton\n pRipple\n type=\"button\"\n [label]=\"'general.add' | translate\"\n icon=\"pi pi-check\"\n class=\"p-button-text\"\n (click)=\"addItems()\"\n [loading]=\"(dialogIsLoading$ | async) ?? false\"\n [disabled]=\"form.disabled\"></button>\n </ng-template>\n</p-dialog>\n", components: [{ type: MngTableComponent, selector: "mng-table", inputs: ["descriptor", "items", "queryResult", "loading", "dataProvider", "useQueryParams", "selectionMode", "selectionEnabled", "isColumnClickable", "viewContainer", "captionComponent", "columnActionComponent"], outputs: ["tableLoad", "cellClick", "selectionChange", "captionComponentInstance", "columnActionComponentInstance"] }, { type: i1$3.Dialog, selector: "p-dialog", inputs: ["header", "draggable", "resizable", "positionLeft", "positionTop", "contentStyle", "contentStyleClass", "modal", "closeOnEscape", "dismissableMask", "rtl", "closable", "responsive", "appendTo", "breakpoints", "styleClass", "maskStyleClass", "showHeader", "breakpoint", "blockScroll", "autoZIndex", "baseZIndex", "minX", "minY", "focusOnShow", "maximizable", "keepInViewport", "focusTrap", "transitionOptions", "closeIcon", "closeAriaLabel", "closeTabindex", "minimizeIcon", "maximizeIcon", "visible", "style", "position"], outputs: ["onShow", "onHide", "visibleChange", "onResizeInit", "onResizeEnd", "onDragEnd", "onMaximize"] }, { type: i3$2.Messages, selector: "p-messages", inputs: ["value", "closable", "style", "styleClass", "enableService", "key", "escape", "severity", "showTransitionOptions", "hideTransitionOptions"], outputs: ["valueChange"] }], directives: [{ type: MngTemplateDirective, selector: "[mngTemplate]", inputs: ["type", "mngTemplate"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i7.ButtonDirective, selector: "[pButton]", inputs: ["iconPos", "loadingIcon", "label", "icon", "loading"] }, { type: i8.Ripple, selector: "[pRipple]" }, { type: i2.PrimeTemplate, selector: "[pTemplate]", inputs: ["type", "pTemplate"] }], pipes: { "translate": i1$1.TranslatePipe, "async": i4.AsyncPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
6868
6950
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: MngFormlyFieldTableDialogMultiselectComponent, decorators: [{
|
|
6869
6951
|
type: Component,
|
|
6870
6952
|
args: [{ selector: 'mng-formly-table-multiselect-add-field', changeDetection: ChangeDetectionStrategy.OnPush, template: "<mng-table [descriptor]=\"descriptor.mainTableDescriptor\" [items]=\"itemsAsync\">\n <ng-template mngTemplate=\"caption\">\n <div class=\"flex flex-column md:flex-row md:justify-content-end align-items-center table-header pt-0\">\n <label class=\"mng-datatable-form-label p-0 m-0\" [for]=\"key\">{{ to?.label! | translate }} <span *ngIf=\"to.required && to['hideRequiredMarker'] !== true\">*</span></label>\n <button\n *ngIf=\"hasAddAction && !options?.formState?.disabled\"\n pButton\n pRipple\n type=\"button\"\n icon=\"pi pi-plus\"\n class=\"p-button-rounded p-button-success mng-button-xs\"\n (click)=\"openAddDialog()\"\n [disabled]=\"formControl!.disabled\"></button>\n </div>\n </ng-template>\n <ng-template mngTemplate=\"columnAction\" let-item=\"rowItem\">\n <button\n *ngIf=\"hasDeleteAction && !options?.formState?.disabled\"\n pButton\n pRipple\n type=\"button\"\n icon=\"pi pi-trash\"\n class=\"p-button-rounded p-button-danger mng-button-xs\"\n (click)=\"removeItem(item)\"\n [disabled]=\"formControl!.disabled\"></button>\n </ng-template>\n</mng-table>\n\n<p-dialog\n *ngIf=\"hasAddAction\"\n [(visible)]=\"isDialogVisible\"\n [draggable]=\"false\"\n [header]=\"'general.addItem' | translate: {item: to?.label!}\"\n [modal]=\"true\"\n appendTo=\"body\"\n styleClass=\"p-fluid mng-formly-field-table-multiselect-dialog\">\n <ng-template pTemplate=\"content\">\n <mng-table\n [descriptor]=\"descriptor.mainTableDescriptor\"\n [queryResult]=\"addItemsAsync\"\n [selectionEnabled]=\"true\"\n [loading]=\"dialogIsLoading$\"\n (selectionChange)=\"onSelectionChange($event)\">\n </mng-table>\n <p-messages [value]=\"dialogMessages\"></p-messages>\n </ng-template>\n\n <ng-template pTemplate=\"footer\">\n <button pButton pRipple type=\"button\" [label]=\"'general.cancel' | translate\" icon=\"pi pi-times\" class=\"p-button-text\" (click)=\"hideDialog()\"></button>\n <button\n pButton\n pRipple\n type=\"button\"\n [label]=\"'general.add' | translate\"\n icon=\"pi pi-check\"\n class=\"p-button-text\"\n (click)=\"addItems()\"\n [loading]=\"(dialogIsLoading$ | async) ?? false\"\n [disabled]=\"form.disabled\"></button>\n </ng-template>\n</p-dialog>\n" }]
|
|
@@ -8584,5 +8666,5 @@ class RouteDataBuilder {
|
|
|
8584
8666
|
* Generated bundle index. Do not edit.
|
|
8585
8667
|
*/
|
|
8586
8668
|
|
|
8587
|
-
export { AFieldDescriptor, AFieldGroupDescriptor, AGenericFieldDescriptor, AMngApiService, AMngBaseApiService, AMngCrudApiService, AMngGetAllApiService, AMngTableviewRouteComponent, ActionActivationResult, ActionActivationTriggerEnum, ActionDeleteDescriptor, ActionDescriptor, ActionEditorAddDescriptor, ActionEditorDescriptor, ActionEditorDetailsDescriptor, ActionEditorEditDescriptor, ActionEditorSubmitDescriptor, ActionError, ActionExecContext, ActionLevelEnum, ActionLinkDescriptor, ActionPositionEnum, ActionRunResult, ActionTriggerResult, ActionTypeEnum, ColumnDescriptor, DataProvider, DefaultMngErrorMapperService, EditorDataProvider, EditorDescriptor, EditorFormlyUtil, EnumName, EnumUtil, FieldDescriptor, FieldGroupDescriptor, FieldInputDescriptor, FieldLookupDescriptor, FieldLookupEnumDescriptor, FieldManyEditorDescriptor, FieldManyToManyEditorDescriptor, FieldTabGroupDescriptor, FieldValidator, FilterDescriptor, FilterLookupDescriptor, FilterLookupEnumDescriptor,
|
|
8669
|
+
export { AFieldDescriptor, AFieldGroupDescriptor, AGenericFieldDescriptor, AMngApiService, AMngBaseApiService, AMngCrudApiService, AMngGetAllApiService, AMngTableviewRouteComponent, ActionActivationResult, ActionActivationTriggerEnum, ActionDeleteDescriptor, ActionDescriptor, ActionEditorAddDescriptor, ActionEditorDescriptor, ActionEditorDetailsDescriptor, ActionEditorEditDescriptor, ActionEditorSubmitDescriptor, ActionError, ActionExecContext, ActionLevelEnum, ActionLinkDescriptor, ActionPositionEnum, ActionRunResult, ActionSimpleDescriptor, ActionTriggerResult, ActionTypeEnum, ColumnDescriptor, DataProvider, DefaultMngErrorMapperService, EditorDataProvider, EditorDescriptor, EditorFormlyUtil, EnumName, EnumUtil, FieldDescriptor, FieldGroupDescriptor, FieldInputDescriptor, FieldLookupDescriptor, FieldLookupEnumDescriptor, FieldManyEditorDescriptor, FieldManyToManyEditorDescriptor, FieldTabGroupDescriptor, FieldValidator, FilterDescriptor, FilterLookupDescriptor, FilterLookupEnumDescriptor, I18nUtils, JsonPathPipe, LookupDataProvider, MNG_AUTOCOMPLETE_VALUE_ACCESSOR, MNG_DROPDOWN_VALUE_ACCESSOR, MediusFilterMatchType, MediusFilterParam, MediusQueryMode, MediusQueryParam, MediusQueryParamBuilder, MediusQueryResult, MediusRestUtil, MngActionComponent, MngActionEditorComponent, MngActionExecutorService, MngActionRouteComponent, MngAutocompleteComponent, MngBooleanPipe, MngBreadcrumbComponent, MngCommonsModule, MngCommonsService, MngComponentDirective, MngConfigurationService, MngDropdownComponent, MngEnumPipe, MngErrorMapperService, MngFooterComponent, MngFormEditorComponent, MngFormEditorSubmitEvent, MngFormFieldEvent, MngFormFieldEventComponentSubtype, MngFormFieldEventDialogSubtype, MngFormFieldEventTypeEnum, MngFormlyFieldAutocompleteComponent, MngFormlyFieldDropdownComponent, MngFormlyFieldFieldsetComponent, MngFormlyFieldInputComponent, MngFormlyFieldLookupDialogComponent, MngFormlyFieldTableDialogFormComponent, MngFormlyFieldTableDialogMultiselectComponent, MngFormlyFieldTabsComponent, MngFormlyFieldWrapperComponent, MngFormlyTableWrapperComponent, MngI18nPropertyPipe, MngLinkFormatterPipe, MngMainLayoutComponent, MngMainLayoutComponentService, MngMenuComponent, MngMenuItemComponent, MngNavigationService, MngTableCellClickEvent, MngTableColumnFilterComponent, MngTableColumnValueComponent, MngTableComponent, MngTableLoadEvent, MngTableReloadEvent, MngTableviewComponent, MngTableviewRouteComponent, MngTemplateDirective, MngTopbarComponent, MngViewContainerComponentService, ModelDescriptor, ModelUtil, NotificationUtil, ObjectSerializer, RouteBuilder, RouteDataBuilder, RoutesBuilder, TableDataProvider, TableDescriptor, TableviewDataProvider, TableviewDescriptor, TypeName, TypeUtil, enumNameDecoratorPropertyName, enumsMapBase, formlyTypesConfig, formlyWrappersConfig, getEmailValidationMessage, getFormlyValidationMessages, getMaxLengthValidationMessage, getMinLengthValidationMessage, getRequiredValidationMessage, getTextPatternValidationMessage, mngCommonsInitializerProvider, mngConfigJsonAppInitializerProvider, mngConfigurationServiceProvider, mngFormlyConfigProvider, primeNgModules, typeMapBase, typeNameDecoratorPropertyName };
|
|
8588
8670
|
//# sourceMappingURL=mediusinc-mng-commons.mjs.map
|