@provoly/dashboard 0.11.9 → 0.12.0
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/esm2022/dataset/components/dataset.component.mjs +3 -2
- package/esm2022/lib/core/core.module.mjs +5 -10
- package/esm2022/lib/core/public-api.mjs +1 -2
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +8 -8
- package/esm2022/presentation/components/presentation.component.mjs +4 -4
- package/esm2022/presentation/components/title-presentation/title-presentation.component.mjs +33 -0
- package/esm2022/presentation/presentation.module.mjs +28 -11
- package/esm2022/presentation/public-api.mjs +2 -1
- package/esm2022/presentation/style/css.component.mjs +2 -2
- package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +15 -9
- package/esm2022/restitution/style/css.component.mjs +2 -2
- package/esm2022/search/search-home/search-home.component.mjs +3 -3
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +4 -4
- package/fesm2022/provoly-dashboard-dataset.mjs +1 -0
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-presentation.mjs +66 -25
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +16 -10
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-search.mjs +2 -2
- package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +3 -3
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +134 -157
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/core.module.d.ts +11 -12
- package/lib/core/public-api.d.ts +0 -1
- package/package.json +1 -1
- package/{lib/core → presentation}/components/title-presentation/title-presentation.component.d.ts +3 -2
- package/presentation/presentation.module.d.ts +4 -3
- package/presentation/public-api.d.ts +1 -0
- package/presentation/style/_o-pry-presentation.scss +34 -1
- package/restitution/components/restitution-list/restitution-list.component.d.ts +5 -5
- package/esm2022/lib/core/components/title-presentation/title-presentation.component.mjs +0 -26
|
@@ -3076,150 +3076,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImpor
|
|
|
3076
3076
|
type: Input
|
|
3077
3077
|
}] } });
|
|
3078
3078
|
|
|
3079
|
-
var DashboardGridLayout;
|
|
3080
|
-
(function (DashboardGridLayout) {
|
|
3081
|
-
DashboardGridLayout["FULL"] = "1";
|
|
3082
|
-
DashboardGridLayout["THIRD_VERTICAL"] = "1/3v";
|
|
3083
|
-
DashboardGridLayout["THIRD_HORIZONTAL"] = "1/3h";
|
|
3084
|
-
DashboardGridLayout["HALF_VERTICAL"] = "1/2v";
|
|
3085
|
-
DashboardGridLayout["HALF_HORIZONTAL"] = "1/2h";
|
|
3086
|
-
DashboardGridLayout["QUARTER"] = "1/4";
|
|
3087
|
-
DashboardGridLayout["MANUAL"] = "0";
|
|
3088
|
-
})(DashboardGridLayout || (DashboardGridLayout = {}));
|
|
3089
|
-
|
|
3090
|
-
const NEW_WINDOW_TARGET = -1;
|
|
3091
|
-
const feature$5 = createFeatureSelector('@pry/dashboard');
|
|
3092
|
-
const manifests = createSelector(feature$5, (state) => state?.manifests);
|
|
3093
|
-
const rank = createSelector(manifests, (manifests) => manifests?.tenants.indexOf(manifests.sender));
|
|
3094
|
-
const currentManifestId = createSelector(manifests, (manifests) => manifests.currentId);
|
|
3095
|
-
const globalManifest = createSelector(manifests,
|
|
3096
|
-
// @ts-ignore
|
|
3097
|
-
(manifests) => ({ windows: [], ...manifests?.manifest } ?? { windows: [] }));
|
|
3098
|
-
const staticManifest = createSelector(manifests,
|
|
3099
|
-
// @ts-ignore
|
|
3100
|
-
(manifests) => ({ windows: [], ...manifests?.staticManifest } ?? { windows: [] }));
|
|
3101
|
-
const refreshRates = createSelector(globalManifest, (manifests) => manifests.refreshRates ?? {});
|
|
3102
|
-
const windowManifest = createSelector(globalManifest, rank, (manifest, rank) => manifest.windows[rank] ?? { widgets: [] });
|
|
3103
|
-
const gridLayout = createSelector(windowManifest, (manifest) => (manifest.grid ?? {}).layout ?? DashboardGridLayout.MANUAL);
|
|
3104
|
-
const memoizeWidgetManifest = {};
|
|
3105
|
-
const widgetManifest = (index) => {
|
|
3106
|
-
if (!memoizeWidgetManifest[index]) {
|
|
3107
|
-
memoizeWidgetManifest[index] = createSelector(windowManifest, (windowManifest) => windowManifest.widgets[index] ??
|
|
3108
|
-
{
|
|
3109
|
-
type: 'placeholder',
|
|
3110
|
-
layout: { x: 1, y: 1, width: 1, height: 1 }
|
|
3111
|
-
});
|
|
3112
|
-
}
|
|
3113
|
-
return memoizeWidgetManifest[index];
|
|
3114
|
-
};
|
|
3115
|
-
const manifestsList = createSelector(manifests, (manifests) => manifests.list);
|
|
3116
|
-
const tenants = createSelector(manifests, (manifests) => manifests.tenants ?? []);
|
|
3117
|
-
const targetTenantsIndexes = createSelector(manifests, rank, (manifests, rank) => [
|
|
3118
|
-
NEW_WINDOW_TARGET,
|
|
3119
|
-
...(manifests.tenants ?? []).map((ten, idx) => idx).filter((idx) => idx !== rank)
|
|
3120
|
-
]);
|
|
3121
|
-
const results = createSelector(feature$5, (state) => state?.results);
|
|
3122
|
-
const resultSets = createSelector(results, (results) => results.resultSets ?? {});
|
|
3123
|
-
const resultSetsParams = createSelector(results, (results) => results.resultSetsParams ?? {});
|
|
3124
|
-
const namedQueriesNames = createSelector(resultSets, (state) => Object.keys(state) ?? []);
|
|
3125
|
-
const availableNamedQueries = createSelector(results, (results) => {
|
|
3126
|
-
return [...new Set([...results.availableDatasourceNames, ...Object.keys(results.resultSets)])] ?? [];
|
|
3127
|
-
});
|
|
3128
|
-
const defaultDatasourceNames = createSelector(results, (results) => results.defaultDatasource ?? 'current');
|
|
3129
|
-
const selectedItemIds = createSelector(results, (results) => results.selectedItems ?? []);
|
|
3130
|
-
const objectDetails = createSelector(results, (results) => results.objectDetails ?? {});
|
|
3131
|
-
const quickOrder = createSelector(results, (results) => results.quickOrder ?? {});
|
|
3132
|
-
const address = createSelector(results, (results) => (results.address ?? {}));
|
|
3133
|
-
const allItems = createSelector(results, (results) => Object.keys(results.resultSets)
|
|
3134
|
-
.map((rsKey) => Object.keys(results.resultSets[rsKey].items)
|
|
3135
|
-
.map((classKey) => results.resultSets[rsKey].items[classKey])
|
|
3136
|
-
.reduce((p, c) => [...p, ...c], []))
|
|
3137
|
-
.reduce((p, c) => [...p, ...c], []));
|
|
3138
|
-
const getItemsByIds = (ids) => createSelector(allItems, (items) => items.filter((item) => ids.includes(item.id)));
|
|
3139
|
-
const selectedItems = createSelector(selectedItemIds, allItems, (itemNames, allItems) => itemNames.map((name) => allItems.find((it) => it.id === name)) ?? []);
|
|
3140
|
-
const dashboard = createSelector(feature$5, (state) => state?.dashboard ?? {});
|
|
3141
|
-
const dashboardCellParams = createSelector(dashboard, (dashboard) => dashboard.params ?? {});
|
|
3142
|
-
const dashboardEditionMode = createSelector(dashboard, (dashboard) => dashboard.editionMode ?? false);
|
|
3143
|
-
const namedQueriesUses = createSelector(globalManifest, (manifest) => manifest.windows
|
|
3144
|
-
.map((window, idx) => ({ windowIndex: idx, widgets: window.widgets }))
|
|
3145
|
-
.map(({ windowIndex, widgets }) => widgets.map((widget) => (Array.isArray(widget.datasource) ? widget.datasource : [widget.datasource])
|
|
3146
|
-
.filter((rsName) => rsName !== undefined)
|
|
3147
|
-
.map((rsName) => ({
|
|
3148
|
-
rsName,
|
|
3149
|
-
windowIndex,
|
|
3150
|
-
type: widget.type,
|
|
3151
|
-
layout: widget.layout
|
|
3152
|
-
}))))
|
|
3153
|
-
.reduce((p, c) => [...p, ...c], [])
|
|
3154
|
-
.reduce((p, c) => [...p, ...c], [])
|
|
3155
|
-
.reduce((p, c) => ({ ...p, [c.rsName ?? '']: [...(p[c.rsName ?? ''] || []), { ...c }] }), {}));
|
|
3156
|
-
const presentation = createSelector(feature$5, (state) => state?.presentation);
|
|
3157
|
-
const savePresentationActive = createSelector(presentation, globalManifest, (state, global) => !!state.current && (state.viewMode === ViewMode.CREATION || !equal(global, state.initial)));
|
|
3158
|
-
const filters = createSelector(feature$5, (state) => state?.manifests.manifest.filters ?? {});
|
|
3159
|
-
const datasourceFilters = createSelector(feature$5, (state) => state?.manifests.manifest.filters
|
|
3160
|
-
? state?.manifests.manifest.filters.reduce((obj, filter) => (filter.attributes.forEach((attribute) => (obj[attribute.datasource] || (obj[attribute.datasource] = [])).push({
|
|
3161
|
-
attribute: attribute.id,
|
|
3162
|
-
operator: filter.operator ?? '',
|
|
3163
|
-
value: filter.value
|
|
3164
|
-
})),
|
|
3165
|
-
obj), {})
|
|
3166
|
-
: {});
|
|
3167
|
-
const wmsFeatures = createSelector(feature$5, (state) => state?.wmsFeatures);
|
|
3168
|
-
const DashboardSelectors = {
|
|
3169
|
-
feature: feature$5,
|
|
3170
|
-
rank,
|
|
3171
|
-
currentManifestId,
|
|
3172
|
-
globalManifest,
|
|
3173
|
-
refreshRates,
|
|
3174
|
-
windowManifest,
|
|
3175
|
-
widgetManifest,
|
|
3176
|
-
manifestsList,
|
|
3177
|
-
gridLayout,
|
|
3178
|
-
tenants,
|
|
3179
|
-
resultSets,
|
|
3180
|
-
resultSetsParams,
|
|
3181
|
-
address,
|
|
3182
|
-
namedQueriesNames,
|
|
3183
|
-
namedQueriesUses,
|
|
3184
|
-
availableNamedQueries,
|
|
3185
|
-
defaultDatasourceNames,
|
|
3186
|
-
selectedItemIds,
|
|
3187
|
-
allItems,
|
|
3188
|
-
getItemsByIds,
|
|
3189
|
-
selectedItems,
|
|
3190
|
-
objectDetails,
|
|
3191
|
-
targetTenantsIndexes,
|
|
3192
|
-
dashboard,
|
|
3193
|
-
dashboardCellParams,
|
|
3194
|
-
dashboardEditionMode,
|
|
3195
|
-
staticManifest,
|
|
3196
|
-
quickOrder,
|
|
3197
|
-
presentation,
|
|
3198
|
-
savePresentationActive,
|
|
3199
|
-
filters,
|
|
3200
|
-
datasourceFilters,
|
|
3201
|
-
wmsFeatures
|
|
3202
|
-
};
|
|
3203
|
-
|
|
3204
|
-
class PryTitlePresentationComponent {
|
|
3205
|
-
constructor(store, i18nService) {
|
|
3206
|
-
this.store = store;
|
|
3207
|
-
this.i18nService = i18nService;
|
|
3208
|
-
this.presentationTitle$ = combineLatest([this.store.select(DashboardSelectors.presentation)]).pipe(map(([presentation]) => {
|
|
3209
|
-
if (presentation.current) {
|
|
3210
|
-
return presentation.current.name;
|
|
3211
|
-
}
|
|
3212
|
-
return this.i18nService.instant('@pry.header.noCurrentPresentation');
|
|
3213
|
-
}));
|
|
3214
|
-
}
|
|
3215
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryTitlePresentationComponent, deps: [{ token: i1.Store }, { token: PryI18nService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3216
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: PryTitlePresentationComponent, selector: "pry-title-presentation", ngImport: i0, template: "<div>\n <h1 class=\"a-h1 a-presentation-title\">{{ presentationTitle$ | async }}</h1>\n</div>\n", dependencies: [{ kind: "pipe", type: i1$1.AsyncPipe, name: "async" }] }); }
|
|
3217
|
-
}
|
|
3218
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryTitlePresentationComponent, decorators: [{
|
|
3219
|
-
type: Component,
|
|
3220
|
-
args: [{ selector: 'pry-title-presentation', template: "<div>\n <h1 class=\"a-h1 a-presentation-title\">{{ presentationTitle$ | async }}</h1>\n</div>\n" }]
|
|
3221
|
-
}], ctorParameters: function () { return [{ type: i1.Store }, { type: PryI18nService }]; } });
|
|
3222
|
-
|
|
3223
3079
|
const FieldActions = {
|
|
3224
3080
|
load: createAction('[Field] Load Fields'),
|
|
3225
3081
|
loadSuccess: createAction('[Field Api] (bus) Load Fields Success', props()),
|
|
@@ -3242,9 +3098,9 @@ function fieldReducer(state, action) {
|
|
|
3242
3098
|
return internalReducer$2(state, action);
|
|
3243
3099
|
}
|
|
3244
3100
|
|
|
3245
|
-
const feature$
|
|
3246
|
-
const entities$1 = createSelector(feature$
|
|
3247
|
-
const fields = createSelector(feature$
|
|
3101
|
+
const feature$5 = createFeatureSelector(fieldsFeatureKey);
|
|
3102
|
+
const entities$1 = createSelector(feature$5, selectEntities$1);
|
|
3103
|
+
const fields = createSelector(feature$5, selectAll$1);
|
|
3248
3104
|
const memoizeFieldById = {};
|
|
3249
3105
|
const fieldById = (id) => {
|
|
3250
3106
|
if (!memoizeFieldById[id]) {
|
|
@@ -3253,7 +3109,7 @@ const fieldById = (id) => {
|
|
|
3253
3109
|
return memoizeFieldById[id];
|
|
3254
3110
|
};
|
|
3255
3111
|
const FieldSelectors = {
|
|
3256
|
-
feature: feature$
|
|
3112
|
+
feature: feature$5,
|
|
3257
3113
|
entities: entities$1,
|
|
3258
3114
|
fields,
|
|
3259
3115
|
fieldById
|
|
@@ -3744,6 +3600,131 @@ const contextMenuReducer = createReducer(initialContextMenuState, on(ContextMenu
|
|
|
3744
3600
|
from: ''
|
|
3745
3601
|
})));
|
|
3746
3602
|
|
|
3603
|
+
var DashboardGridLayout;
|
|
3604
|
+
(function (DashboardGridLayout) {
|
|
3605
|
+
DashboardGridLayout["FULL"] = "1";
|
|
3606
|
+
DashboardGridLayout["THIRD_VERTICAL"] = "1/3v";
|
|
3607
|
+
DashboardGridLayout["THIRD_HORIZONTAL"] = "1/3h";
|
|
3608
|
+
DashboardGridLayout["HALF_VERTICAL"] = "1/2v";
|
|
3609
|
+
DashboardGridLayout["HALF_HORIZONTAL"] = "1/2h";
|
|
3610
|
+
DashboardGridLayout["QUARTER"] = "1/4";
|
|
3611
|
+
DashboardGridLayout["MANUAL"] = "0";
|
|
3612
|
+
})(DashboardGridLayout || (DashboardGridLayout = {}));
|
|
3613
|
+
|
|
3614
|
+
const NEW_WINDOW_TARGET = -1;
|
|
3615
|
+
const feature$4 = createFeatureSelector('@pry/dashboard');
|
|
3616
|
+
const manifests = createSelector(feature$4, (state) => state?.manifests);
|
|
3617
|
+
const rank = createSelector(manifests, (manifests) => manifests?.tenants.indexOf(manifests.sender));
|
|
3618
|
+
const currentManifestId = createSelector(manifests, (manifests) => manifests.currentId);
|
|
3619
|
+
const globalManifest = createSelector(manifests,
|
|
3620
|
+
// @ts-ignore
|
|
3621
|
+
(manifests) => ({ windows: [], ...manifests?.manifest } ?? { windows: [] }));
|
|
3622
|
+
const staticManifest = createSelector(manifests,
|
|
3623
|
+
// @ts-ignore
|
|
3624
|
+
(manifests) => ({ windows: [], ...manifests?.staticManifest } ?? { windows: [] }));
|
|
3625
|
+
const refreshRates = createSelector(globalManifest, (manifests) => manifests.refreshRates ?? {});
|
|
3626
|
+
const windowManifest = createSelector(globalManifest, rank, (manifest, rank) => manifest.windows[rank] ?? { widgets: [] });
|
|
3627
|
+
const gridLayout = createSelector(windowManifest, (manifest) => (manifest.grid ?? {}).layout ?? DashboardGridLayout.MANUAL);
|
|
3628
|
+
const memoizeWidgetManifest = {};
|
|
3629
|
+
const widgetManifest = (index) => {
|
|
3630
|
+
if (!memoizeWidgetManifest[index]) {
|
|
3631
|
+
memoizeWidgetManifest[index] = createSelector(windowManifest, (windowManifest) => windowManifest.widgets[index] ??
|
|
3632
|
+
{
|
|
3633
|
+
type: 'placeholder',
|
|
3634
|
+
layout: { x: 1, y: 1, width: 1, height: 1 }
|
|
3635
|
+
});
|
|
3636
|
+
}
|
|
3637
|
+
return memoizeWidgetManifest[index];
|
|
3638
|
+
};
|
|
3639
|
+
const manifestsList = createSelector(manifests, (manifests) => manifests.list);
|
|
3640
|
+
const tenants = createSelector(manifests, (manifests) => manifests.tenants ?? []);
|
|
3641
|
+
const targetTenantsIndexes = createSelector(manifests, rank, (manifests, rank) => [
|
|
3642
|
+
NEW_WINDOW_TARGET,
|
|
3643
|
+
...(manifests.tenants ?? []).map((ten, idx) => idx).filter((idx) => idx !== rank)
|
|
3644
|
+
]);
|
|
3645
|
+
const results = createSelector(feature$4, (state) => state?.results);
|
|
3646
|
+
const resultSets = createSelector(results, (results) => results.resultSets ?? {});
|
|
3647
|
+
const resultSetsParams = createSelector(results, (results) => results.resultSetsParams ?? {});
|
|
3648
|
+
const namedQueriesNames = createSelector(resultSets, (state) => Object.keys(state) ?? []);
|
|
3649
|
+
const availableNamedQueries = createSelector(results, (results) => {
|
|
3650
|
+
return [...new Set([...results.availableDatasourceNames, ...Object.keys(results.resultSets)])] ?? [];
|
|
3651
|
+
});
|
|
3652
|
+
const defaultDatasourceNames = createSelector(results, (results) => results.defaultDatasource ?? 'current');
|
|
3653
|
+
const selectedItemIds = createSelector(results, (results) => results.selectedItems ?? []);
|
|
3654
|
+
const objectDetails = createSelector(results, (results) => results.objectDetails ?? {});
|
|
3655
|
+
const quickOrder = createSelector(results, (results) => results.quickOrder ?? {});
|
|
3656
|
+
const address = createSelector(results, (results) => (results.address ?? {}));
|
|
3657
|
+
const allItems = createSelector(results, (results) => Object.keys(results.resultSets)
|
|
3658
|
+
.map((rsKey) => Object.keys(results.resultSets[rsKey].items)
|
|
3659
|
+
.map((classKey) => results.resultSets[rsKey].items[classKey])
|
|
3660
|
+
.reduce((p, c) => [...p, ...c], []))
|
|
3661
|
+
.reduce((p, c) => [...p, ...c], []));
|
|
3662
|
+
const getItemsByIds = (ids) => createSelector(allItems, (items) => items.filter((item) => ids.includes(item.id)));
|
|
3663
|
+
const selectedItems = createSelector(selectedItemIds, allItems, (itemNames, allItems) => itemNames.map((name) => allItems.find((it) => it.id === name)) ?? []);
|
|
3664
|
+
const dashboard = createSelector(feature$4, (state) => state?.dashboard ?? {});
|
|
3665
|
+
const dashboardCellParams = createSelector(dashboard, (dashboard) => dashboard.params ?? {});
|
|
3666
|
+
const dashboardEditionMode = createSelector(dashboard, (dashboard) => dashboard.editionMode ?? false);
|
|
3667
|
+
const namedQueriesUses = createSelector(globalManifest, (manifest) => manifest.windows
|
|
3668
|
+
.map((window, idx) => ({ windowIndex: idx, widgets: window.widgets }))
|
|
3669
|
+
.map(({ windowIndex, widgets }) => widgets.map((widget) => (Array.isArray(widget.datasource) ? widget.datasource : [widget.datasource])
|
|
3670
|
+
.filter((rsName) => rsName !== undefined)
|
|
3671
|
+
.map((rsName) => ({
|
|
3672
|
+
rsName,
|
|
3673
|
+
windowIndex,
|
|
3674
|
+
type: widget.type,
|
|
3675
|
+
layout: widget.layout
|
|
3676
|
+
}))))
|
|
3677
|
+
.reduce((p, c) => [...p, ...c], [])
|
|
3678
|
+
.reduce((p, c) => [...p, ...c], [])
|
|
3679
|
+
.reduce((p, c) => ({ ...p, [c.rsName ?? '']: [...(p[c.rsName ?? ''] || []), { ...c }] }), {}));
|
|
3680
|
+
const presentation = createSelector(feature$4, (state) => state?.presentation);
|
|
3681
|
+
const savePresentationActive = createSelector(presentation, globalManifest, (state, global) => !!state.current && (state.viewMode === ViewMode.CREATION || !equal(global, state.initial)));
|
|
3682
|
+
const filters = createSelector(feature$4, (state) => state?.manifests.manifest.filters ?? {});
|
|
3683
|
+
const datasourceFilters = createSelector(feature$4, (state) => state?.manifests.manifest.filters
|
|
3684
|
+
? state?.manifests.manifest.filters.reduce((obj, filter) => (filter.attributes.forEach((attribute) => (obj[attribute.datasource] || (obj[attribute.datasource] = [])).push({
|
|
3685
|
+
attribute: attribute.id,
|
|
3686
|
+
operator: filter.operator ?? '',
|
|
3687
|
+
value: filter.value
|
|
3688
|
+
})),
|
|
3689
|
+
obj), {})
|
|
3690
|
+
: {});
|
|
3691
|
+
const wmsFeatures = createSelector(feature$4, (state) => state?.wmsFeatures);
|
|
3692
|
+
const DashboardSelectors = {
|
|
3693
|
+
feature: feature$4,
|
|
3694
|
+
rank,
|
|
3695
|
+
currentManifestId,
|
|
3696
|
+
globalManifest,
|
|
3697
|
+
refreshRates,
|
|
3698
|
+
windowManifest,
|
|
3699
|
+
widgetManifest,
|
|
3700
|
+
manifestsList,
|
|
3701
|
+
gridLayout,
|
|
3702
|
+
tenants,
|
|
3703
|
+
resultSets,
|
|
3704
|
+
resultSetsParams,
|
|
3705
|
+
address,
|
|
3706
|
+
namedQueriesNames,
|
|
3707
|
+
namedQueriesUses,
|
|
3708
|
+
availableNamedQueries,
|
|
3709
|
+
defaultDatasourceNames,
|
|
3710
|
+
selectedItemIds,
|
|
3711
|
+
allItems,
|
|
3712
|
+
getItemsByIds,
|
|
3713
|
+
selectedItems,
|
|
3714
|
+
objectDetails,
|
|
3715
|
+
targetTenantsIndexes,
|
|
3716
|
+
dashboard,
|
|
3717
|
+
dashboardCellParams,
|
|
3718
|
+
dashboardEditionMode,
|
|
3719
|
+
staticManifest,
|
|
3720
|
+
quickOrder,
|
|
3721
|
+
presentation,
|
|
3722
|
+
savePresentationActive,
|
|
3723
|
+
filters,
|
|
3724
|
+
datasourceFilters,
|
|
3725
|
+
wmsFeatures
|
|
3726
|
+
};
|
|
3727
|
+
|
|
3747
3728
|
const SearchActions = {
|
|
3748
3729
|
search: createAction('[Search] search', props()),
|
|
3749
3730
|
getDatasourceItems: createAction('[Search] (bus) search named', props()),
|
|
@@ -4622,8 +4603,7 @@ class PryCoreModule {
|
|
|
4622
4603
|
PryNqColorSelectorComponent,
|
|
4623
4604
|
PryAccessDirective,
|
|
4624
4605
|
PryUploadComponent,
|
|
4625
|
-
PrySelectImageComponent,
|
|
4626
|
-
PryTitlePresentationComponent], imports: [CommonModule,
|
|
4606
|
+
PrySelectImageComponent], imports: [CommonModule,
|
|
4627
4607
|
RouterModule,
|
|
4628
4608
|
HttpClientModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1.StoreFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, i1$3.EffectsFeatureModule, PryIconModule,
|
|
4629
4609
|
OverlayModule,
|
|
@@ -4638,8 +4618,7 @@ class PryCoreModule {
|
|
|
4638
4618
|
PryNqColorSelectorComponent,
|
|
4639
4619
|
PryAccessDirective,
|
|
4640
4620
|
PryUploadComponent,
|
|
4641
|
-
PrySelectImageComponent
|
|
4642
|
-
PryTitlePresentationComponent] }); }
|
|
4621
|
+
PrySelectImageComponent] }); }
|
|
4643
4622
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryCoreModule, providers: [AsyncPipe, TranslateIdPipe, TranslateItemToSymbolPipe], imports: [CommonModule,
|
|
4644
4623
|
RouterModule,
|
|
4645
4624
|
HttpClientModule,
|
|
@@ -4681,8 +4660,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImpor
|
|
|
4681
4660
|
PryNqColorSelectorComponent,
|
|
4682
4661
|
PryAccessDirective,
|
|
4683
4662
|
PryUploadComponent,
|
|
4684
|
-
PrySelectImageComponent
|
|
4685
|
-
PryTitlePresentationComponent
|
|
4663
|
+
PrySelectImageComponent
|
|
4686
4664
|
],
|
|
4687
4665
|
imports: [
|
|
4688
4666
|
CommonModule,
|
|
@@ -4723,8 +4701,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImpor
|
|
|
4723
4701
|
PryNqColorSelectorComponent,
|
|
4724
4702
|
PryAccessDirective,
|
|
4725
4703
|
PryUploadComponent,
|
|
4726
|
-
PrySelectImageComponent
|
|
4727
|
-
PryTitlePresentationComponent
|
|
4704
|
+
PrySelectImageComponent
|
|
4728
4705
|
]
|
|
4729
4706
|
}]
|
|
4730
4707
|
}], ctorParameters: function () { return [{ type: PryI18nService }]; } });
|
|
@@ -10670,5 +10647,5 @@ function filterLoader(module, prop) {
|
|
|
10670
10647
|
* Generated bundle index. Do not edit.
|
|
10671
10648
|
*/
|
|
10672
10649
|
|
|
10673
|
-
export { Aggregation, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ClassActions, ClassSelectors, ClassService, ConfigActions, ConfigSelectors, ConfigService, ContextMenuActions, ContextMenuComponent, ContextMenuSelectors, DEFAULT_CATEGORY_UUID, DEFAULT_COLUMNS_NUMBER, DEFAULT_GAP_PX, DEFAULT_ICON_URL, DEFAULT_MSG_TIMEOUT, DEFAULT_NAMED_QUERY_ID, DEFAULT_RESTITUTION_ICON_URL, DEFAULT_ROWS_NUMBER, DEFAULT_ROW_HEIGHT_PX, DELAY_FOR_HIDE, DashboardActions, DashboardComponent, DashboardGridLayout, DashboardSelectors, DataSourceActions, DataSourceSelectors, DataSourceService, DataWidgetComponent, DateRangeHighlightPipe, DateUtils, DefaultTooltipComponent, DefaultViewGuard, ENV_OPTIONS, EXPLORE_NAMED_QUERY_ID, FIELD_OPTIONS, FIELD_UUID, FILTERS_DOMAIN, FILTER_DEFINITION, FieldActions, FieldSelectors, FieldService, FieldType, FilterFactoryService, FilterInstanciatorComponent, GeoMetadata, GeocodingService, GetSecuredImagePipe, GraphType, HTTP_ORIGIN_METADATA, I18nPipe, INTERNALLY_STORED_IMAGE_PREFIX, IconPosition, ImageActions, ImageService, ImagesSelectors, ItemUtils, LibraryTypes, LoopScrollColumnComponent, METADATA_TYPE, META_OPTIONS, MIME_TYPE_RESULTSET, MIME_TYPE_WIDGET_MANIFEST, MIME_TYPE_WIDGET_SIZE, MIME_TYPE_WIDGET_TYPE, ManifestService, ManifestsComponent, MarkSubType, MarkType, MetadataComponent, NamedQueryTypes, NamedQueryUtils, OPERATOR_OPTIONS, Operation, PRY_ACCESS_GUARD, PRY_ACCESS_TOKEN, PRY_CUSTOMEVENT_TYPE, PRY_DIALOG_DATA, PryAccessDirective, PryAccessUtils, PryBaseAccess, PryBaseAccessGuard, PryCoreModule, PryDashboardModule, PryDatasetType, PryDatePickerComponent, PryDatePickerModule, PryDefaultAccessGuard, PryDefaultAccessService, PryDialogConfirmComponent, PryDialogRef, PryDialogService, PryEditInputComponent, PryEditInputModule, PryHiddenWhenOverlay, PryHiddenWhenOverlayDirective, PryHttpErrorInterceptorService, PryI18nModule, PryI18nService, PryIconComponent, PryIconModule, PryModalComponent, PryModalModule, PryModalStatusComponent, PryModalStatusModule, PryNqColorSelectorComponent, PryObjectEditionComponent, PryOverlayDirective, PryOverlayModule, PryRangeComponent, PryRangeModule, PrySelectComponent, PrySelectImageComponent, PrySelectModule, PryShareComponent, PryShareModule, PrySnackbarComponent, PrySnackbarModule, PrySnackbarService, PrySortDataPipe, PrySortHeaderComponent, PrySortHeaderDirective, PrySortModule, PrySortTableDirective, PryTimePickerComponent,
|
|
10650
|
+
export { Aggregation, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ClassActions, ClassSelectors, ClassService, ConfigActions, ConfigSelectors, ConfigService, ContextMenuActions, ContextMenuComponent, ContextMenuSelectors, DEFAULT_CATEGORY_UUID, DEFAULT_COLUMNS_NUMBER, DEFAULT_GAP_PX, DEFAULT_ICON_URL, DEFAULT_MSG_TIMEOUT, DEFAULT_NAMED_QUERY_ID, DEFAULT_RESTITUTION_ICON_URL, DEFAULT_ROWS_NUMBER, DEFAULT_ROW_HEIGHT_PX, DELAY_FOR_HIDE, DashboardActions, DashboardComponent, DashboardGridLayout, DashboardSelectors, DataSourceActions, DataSourceSelectors, DataSourceService, DataWidgetComponent, DateRangeHighlightPipe, DateUtils, DefaultTooltipComponent, DefaultViewGuard, ENV_OPTIONS, EXPLORE_NAMED_QUERY_ID, FIELD_OPTIONS, FIELD_UUID, FILTERS_DOMAIN, FILTER_DEFINITION, FieldActions, FieldSelectors, FieldService, FieldType, FilterFactoryService, FilterInstanciatorComponent, GeoMetadata, GeocodingService, GetSecuredImagePipe, GraphType, HTTP_ORIGIN_METADATA, I18nPipe, INTERNALLY_STORED_IMAGE_PREFIX, IconPosition, ImageActions, ImageService, ImagesSelectors, ItemUtils, LibraryTypes, LoopScrollColumnComponent, METADATA_TYPE, META_OPTIONS, MIME_TYPE_RESULTSET, MIME_TYPE_WIDGET_MANIFEST, MIME_TYPE_WIDGET_SIZE, MIME_TYPE_WIDGET_TYPE, ManifestService, ManifestsComponent, MarkSubType, MarkType, MetadataComponent, NamedQueryTypes, NamedQueryUtils, OPERATOR_OPTIONS, Operation, PRY_ACCESS_GUARD, PRY_ACCESS_TOKEN, PRY_CUSTOMEVENT_TYPE, PRY_DIALOG_DATA, PryAccessDirective, PryAccessUtils, PryBaseAccess, PryBaseAccessGuard, PryCoreModule, PryDashboardModule, PryDatasetType, PryDatePickerComponent, PryDatePickerModule, PryDefaultAccessGuard, PryDefaultAccessService, PryDialogConfirmComponent, PryDialogRef, PryDialogService, PryEditInputComponent, PryEditInputModule, PryHiddenWhenOverlay, PryHiddenWhenOverlayDirective, PryHttpErrorInterceptorService, PryI18nModule, PryI18nService, PryIconComponent, PryIconModule, PryModalComponent, PryModalModule, PryModalStatusComponent, PryModalStatusModule, PryNqColorSelectorComponent, PryObjectEditionComponent, PryOverlayDirective, PryOverlayModule, PryRangeComponent, PryRangeModule, PrySelectComponent, PrySelectImageComponent, PrySelectModule, PryShareComponent, PryShareModule, PrySnackbarComponent, PrySnackbarModule, PrySnackbarService, PrySortDataPipe, PrySortHeaderComponent, PrySortHeaderDirective, PrySortModule, PrySortTableDirective, PryTimePickerComponent, PryTitleService, PryToggleComponent, PryToggleModule, PryTooltipDirective, PryUploadComponent, PryVisibilityType, PryWidgetHeaderComponent, RawService, RelationTypesActions, RelationTypesSelectors, RelationTypesService, ResultSetSizePipe, ResultsetUtils, SYMBOL_DOMAIN, SearchActions, SearchSelectors, SearchService, SettingsComponent, SubscriptionnerDirective, SymbolService, TABLE_ATTR_DOMAIN, TILE_ATTR_DOMAIN, TOOLTIPS_DOMAIN, TOOLTIP_DEFINITION, ToolboxManifestService, ToolboxMenuService, TooltipFactoryService, TooltipMode, TranslateIdPipe, TranslateItemToSymbolPipe, UNKNOWN_DATASOURCE, USE_CURRENT_RESULTSET, VARIABLE_TYPE, VegaColorType, VegaType, ViewMode, VizualizeRawComponent, WIDGET_DEFINITION, WIDGET_HEADER_HEIGHT, WebsocketService, WidgetFactoryService, WidgetInstanciatorComponent, WidgetPlaceholderComponent, WidgetPlacementUtils, adapter$2 as adapter, aggregationDefault, baseItemProperties, classReducer, classesFeatureKey, compareOperationFunctions, contextMenuFeatureKey, contextMenuReducer, createPlacedWidgetCopy, dashboardFeatureKey, dashboardInitialState, dashboardReducer, dataSourceFeatureKey, dataSourceReducer, deepMerge, defaultColors, defaultMenuStructure, enTranslations$1 as enTranslations, filterLoader, frTranslations$1 as frTranslations, httpErrorOptions, imageFeatureKey, imageReducer, initialClassState, initialContextMenuState, initialDataSourceState, initialImageState, initialSearchState, latLonToGeographicFieldTransformation, markTypesDefault, notificationFeatureKey, orderWidgetsAccordingToPlacement, searchFeatureKey, searchReducer, selectAll$2 as selectAll, selectEntities$2 as selectEntities, selectIds$2 as selectIds, selectTotal$2 as selectTotal, solveCollisions, solvingCollisionOptions, sortByName$2 as sortByName, subTypesDefault, tooltipLoader, vegaColorSchemesDefault, widgetLoader, widgetMapConfig };
|
|
10674
10651
|
//# sourceMappingURL=provoly-dashboard.mjs.map
|