@netgrif/components-core 6.3.1 → 6.3.2
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/esm2020/lib/data-fields/date-field/abstract-date-field.component.mjs +14 -5
- package/esm2020/lib/data-fields/date-time-field/abstract-date-time-field.component.mjs +14 -5
- package/esm2020/lib/data-fields/time-instance-abstract-field/abstract-time-instance-field.component.mjs +29 -4
- package/esm2020/lib/data-fields/time-instance-abstract-field/models/abstract-time-instance-field.mjs +5 -5
- package/esm2020/lib/data-fields/user-field/abstract-user-field.component.mjs +4 -1
- package/esm2020/lib/task/services/task-data.service.mjs +20 -20
- package/esm2020/lib/task-content/services/field-converter.service.mjs +2 -2
- package/fesm2015/netgrif-components-core.mjs +132 -93
- package/fesm2015/netgrif-components-core.mjs.map +1 -1
- package/fesm2020/netgrif-components-core.mjs +132 -93
- package/fesm2020/netgrif-components-core.mjs.map +1 -1
- package/lib/data-fields/date-field/abstract-date-field.component.d.ts +7 -2
- package/lib/data-fields/date-time-field/abstract-date-time-field.component.d.ts +7 -2
- package/lib/data-fields/time-instance-abstract-field/abstract-time-instance-field.component.d.ts +13 -3
- package/lib/data-fields/user-field/abstract-user-field.component.d.ts +1 -0
- package/lib/task/services/task-data.service.d.ts +6 -6
- package/package.json +1 -1
|
@@ -39,7 +39,8 @@ import { MatPaginatorModule } from '@angular/material/paginator';
|
|
|
39
39
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
40
40
|
import { MatProgressSpinnerModule, MatSpinner } from '@angular/material/progress-spinner';
|
|
41
41
|
import { MatRadioModule } from '@angular/material/radio';
|
|
42
|
-
import
|
|
42
|
+
import * as i2$3 from '@angular/material/core';
|
|
43
|
+
import { MatRippleModule, MatOptionModule, DateAdapter, MAT_DATE_LOCALE } from '@angular/material/core';
|
|
43
44
|
import { MatSliderModule } from '@angular/material/slider';
|
|
44
45
|
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
45
46
|
import { MatSelectModule } from '@angular/material/select';
|
|
@@ -63,6 +64,7 @@ import { of, BehaviorSubject, interval, ReplaySubject, throwError, Subject, Obse
|
|
|
63
64
|
import * as i1 from '@angular/common/http';
|
|
64
65
|
import { HttpHeaders, HttpErrorResponse, HttpParams, HttpEventType, HTTP_INTERCEPTORS, HttpClient, HttpClientModule, HttpResponse } from '@angular/common/http';
|
|
65
66
|
import { AngularResizeEventModule } from 'angular-resize-event';
|
|
67
|
+
import * as i2$4 from '@angular-material-components/datetime-picker';
|
|
66
68
|
import { NgxMatDatetimePickerModule } from '@angular-material-components/datetime-picker';
|
|
67
69
|
import { NgxMatMomentModule } from '@angular-material-components/moment-adapter';
|
|
68
70
|
import * as i1$2 from '@ngx-translate/core';
|
|
@@ -74,7 +76,7 @@ import * as i2$1 from '@angular/platform-browser';
|
|
|
74
76
|
import moment from 'moment';
|
|
75
77
|
import * as Buffer from 'buffer';
|
|
76
78
|
import { ENTER, COMMA } from '@angular/cdk/keycodes';
|
|
77
|
-
import * as i2$
|
|
79
|
+
import * as i2$5 from '@angular/router';
|
|
78
80
|
import { NavigationEnd, Router, ActivatedRoute } from '@angular/router';
|
|
79
81
|
import * as i1$6 from '@angular/cdk/overlay';
|
|
80
82
|
import { OverlayModule } from '@angular/cdk/overlay';
|
|
@@ -4926,19 +4928,38 @@ class AbstractTimeInstanceField extends DataField {
|
|
|
4926
4928
|
return (fc) => fc.value < first || fc.value > second ? { validBetween: true } : null;
|
|
4927
4929
|
}
|
|
4928
4930
|
validWorkday(fc) {
|
|
4929
|
-
const dayOfWeek = !!fc.value ? fc.value.
|
|
4930
|
-
return dayOfWeek === 6 || dayOfWeek ===
|
|
4931
|
+
const dayOfWeek = !!fc.value ? fc.value.isoWeekday() : null;
|
|
4932
|
+
return dayOfWeek === 6 || dayOfWeek === 7 ? { validWorkday: true } : null;
|
|
4931
4933
|
}
|
|
4932
4934
|
validWeekend(fc) {
|
|
4933
|
-
const dayOfWeek = !!fc.value ? fc.value.
|
|
4934
|
-
return dayOfWeek >= 1 && dayOfWeek <= 5
|
|
4935
|
+
const dayOfWeek = !!fc.value ? fc.value.isoWeekday() : null;
|
|
4936
|
+
return dayOfWeek >= 1 && dayOfWeek <= 5 ? { validWeekend: true } : null;
|
|
4935
4937
|
}
|
|
4936
4938
|
}
|
|
4937
4939
|
|
|
4938
4940
|
class AbstractTimeInstanceFieldComponent extends AbstractDataFieldComponent {
|
|
4939
|
-
constructor(_translate, informAboutInvalidData) {
|
|
4941
|
+
constructor(_translate, _adapter, _locale, _languageService, informAboutInvalidData) {
|
|
4940
4942
|
super(informAboutInvalidData);
|
|
4941
4943
|
this._translate = _translate;
|
|
4944
|
+
this._adapter = _adapter;
|
|
4945
|
+
this._locale = _locale;
|
|
4946
|
+
this._languageService = _languageService;
|
|
4947
|
+
if (this._locale !== this._languageService.getLanguage()) {
|
|
4948
|
+
this.setLangToAdapter(this._languageService.getLanguage());
|
|
4949
|
+
}
|
|
4950
|
+
this._subLang = this._languageService.getLangChange$().subscribe(lang => {
|
|
4951
|
+
if (this._locale !== lang) {
|
|
4952
|
+
this.setLangToAdapter(lang);
|
|
4953
|
+
}
|
|
4954
|
+
});
|
|
4955
|
+
}
|
|
4956
|
+
ngOnDestroy() {
|
|
4957
|
+
super.ngOnDestroy();
|
|
4958
|
+
this._subLang.unsubscribe();
|
|
4959
|
+
}
|
|
4960
|
+
setLangToAdapter(lang) {
|
|
4961
|
+
this._locale = lang;
|
|
4962
|
+
this._adapter.setLocale(this._locale);
|
|
4942
4963
|
}
|
|
4943
4964
|
buildErrorMessage(dataField) {
|
|
4944
4965
|
if (this.formControl.hasError(AbstractTimeInstanceFieldValidation.REQUIRED)) {
|
|
@@ -4975,7 +4996,7 @@ class AbstractTimeInstanceFieldComponent extends AbstractDataFieldComponent {
|
|
|
4975
4996
|
return generalMessage;
|
|
4976
4997
|
}
|
|
4977
4998
|
}
|
|
4978
|
-
AbstractTimeInstanceFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTimeInstanceFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
4999
|
+
AbstractTimeInstanceFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTimeInstanceFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: i2$3.DateAdapter }, { token: MAT_DATE_LOCALE }, { token: LanguageService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
4979
5000
|
AbstractTimeInstanceFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTimeInstanceFieldComponent, selector: "ncc-abstract-time-instance-field", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
4980
5001
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTimeInstanceFieldComponent, decorators: [{
|
|
4981
5002
|
type: Component,
|
|
@@ -4983,7 +5004,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4983
5004
|
selector: 'ncc-abstract-time-instance-field',
|
|
4984
5005
|
template: ''
|
|
4985
5006
|
}]
|
|
4986
|
-
}], ctorParameters: function () { return [{ type: i1$2.TranslateService }, { type: undefined, decorators: [{
|
|
5007
|
+
}], ctorParameters: function () { return [{ type: i1$2.TranslateService }, { type: i2$3.DateAdapter }, { type: undefined, decorators: [{
|
|
5008
|
+
type: Inject,
|
|
5009
|
+
args: [MAT_DATE_LOCALE]
|
|
5010
|
+
}] }, { type: LanguageService }, { type: undefined, decorators: [{
|
|
4987
5011
|
type: Optional
|
|
4988
5012
|
}, {
|
|
4989
5013
|
type: Inject,
|
|
@@ -4991,15 +5015,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4991
5015
|
}] }]; } });
|
|
4992
5016
|
|
|
4993
5017
|
class AbstractDateFieldComponent extends AbstractTimeInstanceFieldComponent {
|
|
4994
|
-
constructor(_translate, informAboutInvalidData) {
|
|
4995
|
-
super(_translate, informAboutInvalidData);
|
|
5018
|
+
constructor(_translate, _adapter, _locale, _languageService, informAboutInvalidData) {
|
|
5019
|
+
super(_translate, _adapter, _locale, _languageService, informAboutInvalidData);
|
|
4996
5020
|
this._translate = _translate;
|
|
5021
|
+
this._adapter = _adapter;
|
|
5022
|
+
this._locale = _locale;
|
|
5023
|
+
this._languageService = _languageService;
|
|
4997
5024
|
}
|
|
4998
5025
|
getErrorMessage() {
|
|
4999
5026
|
return this.buildErrorMessage(this.dataField);
|
|
5000
5027
|
}
|
|
5001
5028
|
}
|
|
5002
|
-
AbstractDateFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5029
|
+
AbstractDateFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: i2$3.DateAdapter }, { token: MAT_DATE_LOCALE }, { token: LanguageService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5003
5030
|
AbstractDateFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDateFieldComponent, selector: "ncc-abstract-date-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
5004
5031
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateFieldComponent, decorators: [{
|
|
5005
5032
|
type: Component,
|
|
@@ -5007,7 +5034,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5007
5034
|
selector: 'ncc-abstract-date-field',
|
|
5008
5035
|
template: ''
|
|
5009
5036
|
}]
|
|
5010
|
-
}], ctorParameters: function () { return [{ type: i1$2.TranslateService }, { type: undefined, decorators: [{
|
|
5037
|
+
}], ctorParameters: function () { return [{ type: i1$2.TranslateService }, { type: i2$3.DateAdapter }, { type: undefined, decorators: [{
|
|
5038
|
+
type: Inject,
|
|
5039
|
+
args: [MAT_DATE_LOCALE]
|
|
5040
|
+
}] }, { type: LanguageService }, { type: undefined, decorators: [{
|
|
5011
5041
|
type: Optional
|
|
5012
5042
|
}, {
|
|
5013
5043
|
type: Inject,
|
|
@@ -5017,15 +5047,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5017
5047
|
}] } });
|
|
5018
5048
|
|
|
5019
5049
|
class AbstractDateTimeFieldComponent extends AbstractTimeInstanceFieldComponent {
|
|
5020
|
-
constructor(_translate, informAboutInvalidData) {
|
|
5021
|
-
super(_translate, informAboutInvalidData);
|
|
5050
|
+
constructor(_translate, _adapter, _locale, _languageService, informAboutInvalidData) {
|
|
5051
|
+
super(_translate, _adapter, _locale, _languageService, informAboutInvalidData);
|
|
5022
5052
|
this._translate = _translate;
|
|
5053
|
+
this._adapter = _adapter;
|
|
5054
|
+
this._locale = _locale;
|
|
5055
|
+
this._languageService = _languageService;
|
|
5023
5056
|
}
|
|
5024
5057
|
getErrorMessage() {
|
|
5025
5058
|
return this.buildErrorMessage(this.dataField);
|
|
5026
5059
|
}
|
|
5027
5060
|
}
|
|
5028
|
-
AbstractDateTimeFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateTimeFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5061
|
+
AbstractDateTimeFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateTimeFieldComponent, deps: [{ token: i1$2.TranslateService }, { token: i2$4.NgxMatDateAdapter }, { token: MAT_DATE_LOCALE }, { token: LanguageService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
5029
5062
|
AbstractDateTimeFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDateTimeFieldComponent, selector: "ncc-abstract-date-time-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
5030
5063
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDateTimeFieldComponent, decorators: [{
|
|
5031
5064
|
type: Component,
|
|
@@ -5033,7 +5066,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5033
5066
|
selector: 'ncc-abstract-date-time-field',
|
|
5034
5067
|
template: ''
|
|
5035
5068
|
}]
|
|
5036
|
-
}], ctorParameters: function () { return [{ type: i1$2.TranslateService }, { type: undefined, decorators: [{
|
|
5069
|
+
}], ctorParameters: function () { return [{ type: i1$2.TranslateService }, { type: i2$4.NgxMatDateAdapter }, { type: undefined, decorators: [{
|
|
5070
|
+
type: Inject,
|
|
5071
|
+
args: [MAT_DATE_LOCALE]
|
|
5072
|
+
}] }, { type: LanguageService }, { type: undefined, decorators: [{
|
|
5037
5073
|
type: Optional
|
|
5038
5074
|
}, {
|
|
5039
5075
|
type: Inject,
|
|
@@ -6156,7 +6192,7 @@ function decodeBase64(encoded) {
|
|
|
6156
6192
|
|
|
6157
6193
|
class FieldConverterService {
|
|
6158
6194
|
constructor() {
|
|
6159
|
-
this.textFieldNames = ['
|
|
6195
|
+
this.textFieldNames = ['richtextarea', 'htmltextarea', 'editor', 'htmlEditor'];
|
|
6160
6196
|
}
|
|
6161
6197
|
toClass(item) {
|
|
6162
6198
|
switch (item.type) {
|
|
@@ -8425,6 +8461,9 @@ class AbstractUserFieldComponent extends AbstractDataFieldComponent {
|
|
|
8425
8461
|
}
|
|
8426
8462
|
});
|
|
8427
8463
|
}
|
|
8464
|
+
deleteUser() {
|
|
8465
|
+
this.dataField.value = undefined;
|
|
8466
|
+
}
|
|
8428
8467
|
}
|
|
8429
8468
|
AbstractUserFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractUserFieldComponent, deps: [{ token: SideMenuService }, { token: SnackBarService }, { token: i1$2.TranslateService }, { token: NAE_INFORM_ABOUT_INVALID_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
8430
8469
|
AbstractUserFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractUserFieldComponent, selector: "ncc-abstract-user-field", inputs: { dataField: "dataField" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
@@ -15499,7 +15538,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15499
15538
|
}
|
|
15500
15539
|
const requestContext = this.createUpdateRequestContext();
|
|
15501
15540
|
this._eventQueue.scheduleEvent(new QueuedEvent(() => this.isSetDataRequestStillValid(requestContext.body), nextEvent => {
|
|
15502
|
-
this.performSetDataRequest(setTaskId, requestContext
|
|
15541
|
+
this.performSetDataRequest(setTaskId, requestContext, afterAction, nextEvent);
|
|
15503
15542
|
}, nextEvent => {
|
|
15504
15543
|
this.revertSetDataRequest(requestContext);
|
|
15505
15544
|
nextEvent.resolve(false);
|
|
@@ -15590,12 +15629,12 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15590
15629
|
/**
|
|
15591
15630
|
* Performs a `setData` request on the task currently stored in the `taskContent` service
|
|
15592
15631
|
* @param setTaskId ID of the task
|
|
15593
|
-
* @param
|
|
15632
|
+
* @param context context of the `setData` request
|
|
15594
15633
|
* @param afterAction the action that should be performed after the request is processed
|
|
15595
15634
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15596
15635
|
*/
|
|
15597
|
-
performSetDataRequest(setTaskId,
|
|
15598
|
-
if (Object.keys(body).length === 0) {
|
|
15636
|
+
performSetDataRequest(setTaskId, context, afterAction, nextEvent) {
|
|
15637
|
+
if (Object.keys(context.body).length === 0) {
|
|
15599
15638
|
this.sendNotification(TaskEvent.SET_DATA, true);
|
|
15600
15639
|
afterAction.resolve(true);
|
|
15601
15640
|
nextEvent.resolve(true);
|
|
@@ -15603,7 +15642,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15603
15642
|
}
|
|
15604
15643
|
this._taskState.startLoading(setTaskId);
|
|
15605
15644
|
this._taskState.startUpdating(setTaskId);
|
|
15606
|
-
this._taskResourceService.setData(this._safeTask.stringId, body).pipe(take(1))
|
|
15645
|
+
this._taskResourceService.setData(this._safeTask.stringId, context.body).pipe(take(1))
|
|
15607
15646
|
.subscribe((response) => {
|
|
15608
15647
|
if (!this.isTaskRelevant(setTaskId)) {
|
|
15609
15648
|
this._log.debug('current task changed before the set data response could be received, discarding...');
|
|
@@ -15614,13 +15653,13 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15614
15653
|
return;
|
|
15615
15654
|
}
|
|
15616
15655
|
if (response.success) {
|
|
15617
|
-
this.processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15656
|
+
this.processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context);
|
|
15618
15657
|
}
|
|
15619
15658
|
else if (response.error !== undefined) {
|
|
15620
|
-
this.processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15659
|
+
this.processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context);
|
|
15621
15660
|
}
|
|
15622
15661
|
}, error => {
|
|
15623
|
-
this.processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent,
|
|
15662
|
+
this.processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent, context);
|
|
15624
15663
|
});
|
|
15625
15664
|
}
|
|
15626
15665
|
/**
|
|
@@ -15631,7 +15670,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15631
15670
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15632
15671
|
* @param body hold the data that was sent in request
|
|
15633
15672
|
*/
|
|
15634
|
-
processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15673
|
+
processUnsuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context) {
|
|
15635
15674
|
if (response.error !== '') {
|
|
15636
15675
|
this._snackBar.openErrorSnackBar(this._translate.instant(response.error));
|
|
15637
15676
|
}
|
|
@@ -15645,8 +15684,8 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15645
15684
|
this._changedFieldsService.emitChangedFields(changedFieldsMap);
|
|
15646
15685
|
}
|
|
15647
15686
|
}
|
|
15648
|
-
this.revertToPreviousValue();
|
|
15649
|
-
this.clearWaitingForResponseFlag(body);
|
|
15687
|
+
this.revertToPreviousValue(context);
|
|
15688
|
+
this.clearWaitingForResponseFlag(context.body);
|
|
15650
15689
|
this.updateStateInfo(afterAction, false, setTaskId);
|
|
15651
15690
|
nextEvent.resolve(false);
|
|
15652
15691
|
this._taskOperations.reload();
|
|
@@ -15657,15 +15696,15 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15657
15696
|
* @param response the resulting Event outcome of the set data request
|
|
15658
15697
|
* @param afterAction the action that should be performed after the request is processed
|
|
15659
15698
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15660
|
-
* @param
|
|
15699
|
+
* @param context hold the data that was sent in request
|
|
15661
15700
|
*/
|
|
15662
|
-
processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent,
|
|
15701
|
+
processSuccessfulSetDataRequest(setTaskId, response, afterAction, nextEvent, context) {
|
|
15663
15702
|
const outcome = response.outcome;
|
|
15664
15703
|
const changedFieldsMap = this._eventService.parseChangedFieldsFromOutcomeTree(outcome);
|
|
15665
15704
|
if (Object.keys(changedFieldsMap).length > 0) {
|
|
15666
15705
|
this._changedFieldsService.emitChangedFields(changedFieldsMap);
|
|
15667
15706
|
}
|
|
15668
|
-
this.clearWaitingForResponseFlag(body);
|
|
15707
|
+
this.clearWaitingForResponseFlag(context.body);
|
|
15669
15708
|
this._snackBar.openSuccessSnackBar(!!outcome.message ? outcome.message : this._translate.instant('tasks.snackbar.dataSaved'));
|
|
15670
15709
|
this.updateStateInfo(afterAction, true, setTaskId);
|
|
15671
15710
|
nextEvent.resolve(true);
|
|
@@ -15678,7 +15717,7 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15678
15717
|
* @param nextEvent indicates to the event queue that the next event can be processed
|
|
15679
15718
|
* @param body hold the data that was sent in request
|
|
15680
15719
|
*/
|
|
15681
|
-
processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent,
|
|
15720
|
+
processErroneousSetDataRequest(setTaskId, error, afterAction, nextEvent, context) {
|
|
15682
15721
|
this._log.debug('setting task data failed', error);
|
|
15683
15722
|
if (!this.isTaskRelevant(setTaskId)) {
|
|
15684
15723
|
this._log.debug('current task changed before the get data error could be received');
|
|
@@ -15688,8 +15727,8 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15688
15727
|
nextEvent.resolve(false);
|
|
15689
15728
|
return;
|
|
15690
15729
|
}
|
|
15691
|
-
this.revertToPreviousValue();
|
|
15692
|
-
this.clearWaitingForResponseFlag(body);
|
|
15730
|
+
this.revertToPreviousValue(context);
|
|
15731
|
+
this.clearWaitingForResponseFlag(context.body);
|
|
15693
15732
|
this._snackBar.openErrorSnackBar(this._translate.instant('tasks.snackbar.failedSave'));
|
|
15694
15733
|
this.updateStateInfo(afterAction, false, setTaskId);
|
|
15695
15734
|
nextEvent.resolve(false);
|
|
@@ -15765,10 +15804,10 @@ class TaskDataService extends TaskHandlingService {
|
|
|
15765
15804
|
sendNotification(event, success) {
|
|
15766
15805
|
this._taskEvent.publishTaskEvent(createTaskEventNotification(this._safeTask, event, success));
|
|
15767
15806
|
}
|
|
15768
|
-
revertToPreviousValue() {
|
|
15807
|
+
revertToPreviousValue(context) {
|
|
15769
15808
|
this._safeTask.dataGroups.forEach(dataGroup => {
|
|
15770
15809
|
dataGroup.fields.forEach(field => {
|
|
15771
|
-
if (field.initialized && field.valid && field.
|
|
15810
|
+
if (field.initialized && field.valid && Object.keys(context.previousValues).includes(field.stringId)) {
|
|
15772
15811
|
field.revertToPreviousValue();
|
|
15773
15812
|
}
|
|
15774
15813
|
});
|
|
@@ -16021,14 +16060,14 @@ class RedirectService {
|
|
|
16021
16060
|
}
|
|
16022
16061
|
}
|
|
16023
16062
|
RedirectService.LOGIN_COMPONENT = 'login';
|
|
16024
|
-
RedirectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, deps: [{ token: i2$
|
|
16063
|
+
RedirectService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, deps: [{ token: i2$5.Router }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16025
16064
|
RedirectService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, providedIn: 'root' });
|
|
16026
16065
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RedirectService, decorators: [{
|
|
16027
16066
|
type: Injectable,
|
|
16028
16067
|
args: [{
|
|
16029
16068
|
providedIn: 'root'
|
|
16030
16069
|
}]
|
|
16031
|
-
}], ctorParameters: function () { return [{ type: i2$
|
|
16070
|
+
}], ctorParameters: function () { return [{ type: i2$5.Router }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$5.ActivatedRoute }]; } });
|
|
16032
16071
|
|
|
16033
16072
|
class AuthenticationInterceptor {
|
|
16034
16073
|
constructor(_session, _redirect, _anonymousService, idleTimerService) {
|
|
@@ -16228,14 +16267,14 @@ class AuthenticationGuardService {
|
|
|
16228
16267
|
return this._session.sessionToken && this._session.verified ? true : this._router.parseUrl(this._loginUrl);
|
|
16229
16268
|
}
|
|
16230
16269
|
}
|
|
16231
|
-
AuthenticationGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, deps: [{ token: SessionService }, { token: RedirectService }, { token: i2$
|
|
16270
|
+
AuthenticationGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, deps: [{ token: SessionService }, { token: RedirectService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
16232
16271
|
AuthenticationGuardService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, providedIn: AuthenticationModule });
|
|
16233
16272
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthenticationGuardService, decorators: [{
|
|
16234
16273
|
type: Injectable,
|
|
16235
16274
|
args: [{
|
|
16236
16275
|
providedIn: AuthenticationModule
|
|
16237
16276
|
}]
|
|
16238
|
-
}], ctorParameters: function () { return [{ type: SessionService }, { type: RedirectService }, { type: i2$
|
|
16277
|
+
}], ctorParameters: function () { return [{ type: SessionService }, { type: RedirectService }, { type: i2$5.Router }]; } });
|
|
16239
16278
|
|
|
16240
16279
|
/* SERVICES */
|
|
16241
16280
|
|
|
@@ -16475,7 +16514,7 @@ class AbstractAuthenticationOverlayComponent {
|
|
|
16475
16514
|
}
|
|
16476
16515
|
}
|
|
16477
16516
|
}
|
|
16478
|
-
AbstractAuthenticationOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractAuthenticationOverlayComponent, deps: [{ token: SessionService }, { token: SpinnerOverlayService }, { token: i2$
|
|
16517
|
+
AbstractAuthenticationOverlayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractAuthenticationOverlayComponent, deps: [{ token: SessionService }, { token: SpinnerOverlayService }, { token: i2$5.Router }, { token: RedirectService }, { token: UserService }], target: i0.ɵɵFactoryTarget.Component });
|
|
16479
16518
|
AbstractAuthenticationOverlayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractAuthenticationOverlayComponent, selector: "ncc-abstract-auth-overlay", ngImport: i0, template: '', isInline: true });
|
|
16480
16519
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractAuthenticationOverlayComponent, decorators: [{
|
|
16481
16520
|
type: Component,
|
|
@@ -16483,7 +16522,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16483
16522
|
selector: 'ncc-abstract-auth-overlay',
|
|
16484
16523
|
template: ''
|
|
16485
16524
|
}]
|
|
16486
|
-
}], ctorParameters: function () { return [{ type: SessionService }, { type: SpinnerOverlayService }, { type: i2$
|
|
16525
|
+
}], ctorParameters: function () { return [{ type: SessionService }, { type: SpinnerOverlayService }, { type: i2$5.Router }, { type: RedirectService }, { type: UserService }]; } });
|
|
16487
16526
|
|
|
16488
16527
|
class AbstractSessionIdleComponent {
|
|
16489
16528
|
constructor(sessionTimer, _user, _log, _config, _router) {
|
|
@@ -16536,7 +16575,7 @@ class AbstractSessionIdleComponent {
|
|
|
16536
16575
|
}
|
|
16537
16576
|
}
|
|
16538
16577
|
}
|
|
16539
|
-
AbstractSessionIdleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSessionIdleComponent, deps: [{ token: SessionIdleTimerService }, { token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$
|
|
16578
|
+
AbstractSessionIdleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSessionIdleComponent, deps: [{ token: SessionIdleTimerService }, { token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
16540
16579
|
AbstractSessionIdleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSessionIdleComponent, selector: "ncc-abstract-session-idle", inputs: { alertAtSeconds: "alertAtSeconds" }, ngImport: i0, template: '', isInline: true });
|
|
16541
16580
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSessionIdleComponent, decorators: [{
|
|
16542
16581
|
type: Component,
|
|
@@ -16544,7 +16583,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16544
16583
|
selector: 'ncc-abstract-session-idle',
|
|
16545
16584
|
template: ''
|
|
16546
16585
|
}]
|
|
16547
|
-
}], ctorParameters: function () { return [{ type: SessionIdleTimerService }, { type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$
|
|
16586
|
+
}], ctorParameters: function () { return [{ type: SessionIdleTimerService }, { type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$5.Router }]; }, propDecorators: { alertAtSeconds: [{
|
|
16548
16587
|
type: Input
|
|
16549
16588
|
}] } });
|
|
16550
16589
|
|
|
@@ -16922,7 +16961,7 @@ class AbstractPanelComponent {
|
|
|
16922
16961
|
return this._caseListFontColorService.computeCaseFontColor(this.caseColor);
|
|
16923
16962
|
}
|
|
16924
16963
|
}
|
|
16925
|
-
AbstractPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractPanelComponent, deps: [{ token: CaseListFontColorService }, { token: i2$
|
|
16964
|
+
AbstractPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractPanelComponent, deps: [{ token: CaseListFontColorService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
16926
16965
|
AbstractPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractPanelComponent, selector: "ncc-abstract-panel", inputs: { expansionDisabled: "expansionDisabled", preventExpand: "preventExpand", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", panelHeader: "panelHeader", panelContent: "panelContent", first: "first", last: "last", caseColor: "caseColor" }, outputs: { stopLoading: "stopLoading", getExpansionPanelRef: "getExpansionPanelRef" }, viewQueries: [{ propertyName: "matExpansionPanel", first: true, predicate: ["matExpansionPanel"], descendants: true }], ngImport: i0, template: '', isInline: true });
|
|
16927
16966
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractPanelComponent, decorators: [{
|
|
16928
16967
|
type: Component,
|
|
@@ -16930,7 +16969,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16930
16969
|
selector: 'ncc-abstract-panel',
|
|
16931
16970
|
template: ''
|
|
16932
16971
|
}]
|
|
16933
|
-
}], ctorParameters: function () { return [{ type: CaseListFontColorService }, { type: i2$
|
|
16972
|
+
}], ctorParameters: function () { return [{ type: CaseListFontColorService }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { expansionDisabled: [{
|
|
16934
16973
|
type: Input
|
|
16935
16974
|
}], preventExpand: [{
|
|
16936
16975
|
type: Input
|
|
@@ -19589,7 +19628,7 @@ class AbstractDefaultTaskListComponent extends TabbedVirtualScrollComponent {
|
|
|
19589
19628
|
});
|
|
19590
19629
|
}
|
|
19591
19630
|
}
|
|
19592
|
-
AbstractDefaultTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
19631
|
+
AbstractDefaultTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
19593
19632
|
AbstractDefaultTaskListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDefaultTaskListComponent, selector: "ncc-abstract-default-task-list", inputs: { loading$: "loading$", selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", allowMultiOpen: "allowMultiOpen" }, outputs: { taskEvent: "taskEvent" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
19594
19633
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultTaskListComponent, decorators: [{
|
|
19595
19634
|
type: Component,
|
|
@@ -19602,7 +19641,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
19602
19641
|
}, {
|
|
19603
19642
|
type: Inject,
|
|
19604
19643
|
args: [NAE_TAB_DATA]
|
|
19605
|
-
}] }, { type: i2$
|
|
19644
|
+
}] }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { loading$: [{
|
|
19606
19645
|
type: Input
|
|
19607
19646
|
}], selectedHeaders$: [{
|
|
19608
19647
|
type: Input
|
|
@@ -19638,7 +19677,7 @@ class AbstractTaskListComponent extends AbstractDefaultTaskListComponent {
|
|
|
19638
19677
|
this._taskViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
|
|
19639
19678
|
}
|
|
19640
19679
|
}
|
|
19641
|
-
AbstractTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
19680
|
+
AbstractTaskListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
19642
19681
|
AbstractTaskListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskListComponent, selector: "ncc-abstract-task-list", inputs: { tasks$: "tasks$" }, viewQueries: [{ propertyName: "viewport", first: true, predicate: CdkVirtualScrollViewport, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
19643
19682
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListComponent, decorators: [{
|
|
19644
19683
|
type: Component,
|
|
@@ -19651,7 +19690,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
19651
19690
|
}, {
|
|
19652
19691
|
type: Inject,
|
|
19653
19692
|
args: [NAE_TAB_DATA]
|
|
19654
|
-
}] }, { type: i2$
|
|
19693
|
+
}] }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { tasks$: [{
|
|
19655
19694
|
type: Input
|
|
19656
19695
|
}], viewport: [{
|
|
19657
19696
|
type: ViewChild,
|
|
@@ -19683,7 +19722,7 @@ class AbstractTaskListPaginationComponent extends AbstractDefaultTaskListCompone
|
|
|
19683
19722
|
this._taskViewService.nextPagePagination(this.pageSize, this.pageIndex);
|
|
19684
19723
|
}
|
|
19685
19724
|
}
|
|
19686
|
-
AbstractTaskListPaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListPaginationComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
19725
|
+
AbstractTaskListPaginationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListPaginationComponent, deps: [{ token: TaskViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
19687
19726
|
AbstractTaskListPaginationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskListPaginationComponent, selector: "ncc-abstract-task-list-pagination-component", inputs: { tasks$: "tasks$" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
19688
19727
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskListPaginationComponent, decorators: [{
|
|
19689
19728
|
type: Component,
|
|
@@ -19696,7 +19735,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
19696
19735
|
}, {
|
|
19697
19736
|
type: Inject,
|
|
19698
19737
|
args: [NAE_TAB_DATA]
|
|
19699
|
-
}] }, { type: i2$
|
|
19738
|
+
}] }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { tasks$: [{
|
|
19700
19739
|
type: Input
|
|
19701
19740
|
}] } });
|
|
19702
19741
|
|
|
@@ -20161,7 +20200,7 @@ class AbstractSingleTaskComponent {
|
|
|
20161
20200
|
this.taskEvent.emit(event);
|
|
20162
20201
|
}
|
|
20163
20202
|
}
|
|
20164
|
-
AbstractSingleTaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, deps: [{ token: LoggerService }, { token: i2$
|
|
20203
|
+
AbstractSingleTaskComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, deps: [{ token: LoggerService }, { token: i2$5.ActivatedRoute }, { token: NAE_TAB_DATA, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
20165
20204
|
AbstractSingleTaskComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSingleTaskComponent, selector: "ncc-abstract-single-task", inputs: { task$: "task$", loading$: "loading$", selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", forceLoadDataOnOpen: "forceLoadDataOnOpen", textEllipsis: "textEllipsis", preventCollapse: "preventCollapse", hidePanelHeader: "hidePanelHeader", noTaskSection: "noTaskSection", pageHeader: "pageHeader", pageFooter: "pageFooter", headerTitle: "headerTitle", footerText: "footerText", actionButtonTemplates: "actionButtonTemplates", actionRowJustifyContent: "actionRowJustifyContent" }, outputs: { taskEvent: "taskEvent" }, ngImport: i0, template: '', isInline: true });
|
|
20166
20205
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskComponent, decorators: [{
|
|
20167
20206
|
type: Component,
|
|
@@ -20169,7 +20208,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
20169
20208
|
selector: 'ncc-abstract-single-task',
|
|
20170
20209
|
template: ''
|
|
20171
20210
|
}]
|
|
20172
|
-
}], ctorParameters: function () { return [{ type: LoggerService }, { type: i2$
|
|
20211
|
+
}], ctorParameters: function () { return [{ type: LoggerService }, { type: i2$5.ActivatedRoute }, { type: undefined, decorators: [{
|
|
20173
20212
|
type: Optional
|
|
20174
20213
|
}, {
|
|
20175
20214
|
type: Inject,
|
|
@@ -22289,7 +22328,7 @@ class AbstractViewWithHeadersComponent {
|
|
|
22289
22328
|
return !(this.config?.[ConfigParams.PANEL_HEADER] === 'false');
|
|
22290
22329
|
}
|
|
22291
22330
|
}
|
|
22292
|
-
AbstractViewWithHeadersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractViewWithHeadersComponent, deps: [{ token: AbstractSortableViewComponent }, { token: i2$
|
|
22331
|
+
AbstractViewWithHeadersComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractViewWithHeadersComponent, deps: [{ token: AbstractSortableViewComponent }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22293
22332
|
AbstractViewWithHeadersComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractViewWithHeadersComponent, selector: "ncc-abstract-view-with-headers", ngImport: i0, template: '', isInline: true });
|
|
22294
22333
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractViewWithHeadersComponent, decorators: [{
|
|
22295
22334
|
type: Component,
|
|
@@ -22297,7 +22336,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22297
22336
|
selector: 'ncc-abstract-view-with-headers',
|
|
22298
22337
|
template: ''
|
|
22299
22338
|
}]
|
|
22300
|
-
}], ctorParameters: function () { return [{ type: AbstractSortableViewComponent }, { type: i2$
|
|
22339
|
+
}], ctorParameters: function () { return [{ type: AbstractSortableViewComponent }, { type: i2$5.ActivatedRoute }]; } });
|
|
22301
22340
|
|
|
22302
22341
|
class AbstractTaskViewComponent extends AbstractViewWithHeadersComponent {
|
|
22303
22342
|
constructor(taskViewService, _activatedRoute) {
|
|
@@ -22310,7 +22349,7 @@ class AbstractTaskViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
22310
22349
|
super.ngOnDestroy();
|
|
22311
22350
|
}
|
|
22312
22351
|
}
|
|
22313
|
-
AbstractTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$
|
|
22352
|
+
AbstractTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22314
22353
|
AbstractTaskViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTaskViewComponent, selector: "ncc-abstract-task-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
22315
22354
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTaskViewComponent, decorators: [{
|
|
22316
22355
|
type: Component,
|
|
@@ -22318,7 +22357,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22318
22357
|
selector: 'ncc-abstract-task-view',
|
|
22319
22358
|
template: ''
|
|
22320
22359
|
}]
|
|
22321
|
-
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$
|
|
22360
|
+
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$5.ActivatedRoute }]; } });
|
|
22322
22361
|
|
|
22323
22362
|
/**
|
|
22324
22363
|
* Holds all identifiers of the Filter process in an accessible manner
|
|
@@ -22738,7 +22777,7 @@ class AbstractSaveFilterComponent extends AbstractTaskViewComponent {
|
|
|
22738
22777
|
}
|
|
22739
22778
|
}
|
|
22740
22779
|
}
|
|
22741
|
-
AbstractSaveFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSaveFilterComponent, deps: [{ token: NAE_SIDE_MENU_CONTROL }, { token: UserFiltersService }, { token: LoggerService }, { token: TaskViewService }, { token: i2$
|
|
22780
|
+
AbstractSaveFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSaveFilterComponent, deps: [{ token: NAE_SIDE_MENU_CONTROL }, { token: UserFiltersService }, { token: LoggerService }, { token: TaskViewService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22742
22781
|
AbstractSaveFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSaveFilterComponent, selector: "ncc-abstract-save-filter", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
22743
22782
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSaveFilterComponent, decorators: [{
|
|
22744
22783
|
type: Component,
|
|
@@ -22749,7 +22788,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22749
22788
|
}], ctorParameters: function () { return [{ type: SideMenuControl, decorators: [{
|
|
22750
22789
|
type: Inject,
|
|
22751
22790
|
args: [NAE_SIDE_MENU_CONTROL]
|
|
22752
|
-
}] }, { type: UserFiltersService }, { type: LoggerService }, { type: TaskViewService }, { type: i2$
|
|
22791
|
+
}] }, { type: UserFiltersService }, { type: LoggerService }, { type: TaskViewService }, { type: i2$5.ActivatedRoute }]; } });
|
|
22753
22792
|
|
|
22754
22793
|
var HeaderType;
|
|
22755
22794
|
(function (HeaderType) {
|
|
@@ -22802,7 +22841,7 @@ class AbstractCaseViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
22802
22841
|
}
|
|
22803
22842
|
}
|
|
22804
22843
|
}
|
|
22805
|
-
AbstractCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseViewComponent, deps: [{ token: CaseViewService }, { token: OverflowService }, { token: Array }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$
|
|
22844
|
+
AbstractCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseViewComponent, deps: [{ token: CaseViewService }, { token: OverflowService }, { token: Array }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
22806
22845
|
AbstractCaseViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractCaseViewComponent, selector: "ncc-abstract-case-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
22807
22846
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseViewComponent, decorators: [{
|
|
22808
22847
|
type: Component,
|
|
@@ -22815,7 +22854,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
22815
22854
|
}, {
|
|
22816
22855
|
type: Inject,
|
|
22817
22856
|
args: [NAE_NEW_CASE_CREATION_CONFIGURATION_DATA]
|
|
22818
|
-
}] }, { type: i2$
|
|
22857
|
+
}] }, { type: i2$5.ActivatedRoute }]; } });
|
|
22819
22858
|
|
|
22820
22859
|
class AbstractLoadFilterComponent extends AbstractCaseViewComponent {
|
|
22821
22860
|
constructor(_sideMenuControl, _log, caseViewService) {
|
|
@@ -24726,7 +24765,7 @@ class AbstractLogoutShortcutComponent {
|
|
|
24726
24765
|
});
|
|
24727
24766
|
}
|
|
24728
24767
|
}
|
|
24729
|
-
AbstractLogoutShortcutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractLogoutShortcutComponent, deps: [{ token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$
|
|
24768
|
+
AbstractLogoutShortcutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractLogoutShortcutComponent, deps: [{ token: UserService }, { token: LoggerService }, { token: ConfigurationService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Component });
|
|
24730
24769
|
AbstractLogoutShortcutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractLogoutShortcutComponent, selector: "ncc-abstract-logout-shortcut", ngImport: i0, template: '', isInline: true });
|
|
24731
24770
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractLogoutShortcutComponent, decorators: [{
|
|
24732
24771
|
type: Component,
|
|
@@ -24734,7 +24773,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
24734
24773
|
selector: 'ncc-abstract-logout-shortcut',
|
|
24735
24774
|
template: ''
|
|
24736
24775
|
}]
|
|
24737
|
-
}], ctorParameters: function () { return [{ type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$
|
|
24776
|
+
}], ctorParameters: function () { return [{ type: UserService }, { type: LoggerService }, { type: ConfigurationService }, { type: i2$5.Router }]; } });
|
|
24738
24777
|
|
|
24739
24778
|
class AbstractLanguageSelectorComponent {
|
|
24740
24779
|
constructor(_select) {
|
|
@@ -25063,14 +25102,14 @@ class AuthorityGuardService {
|
|
|
25063
25102
|
}
|
|
25064
25103
|
}
|
|
25065
25104
|
}
|
|
25066
|
-
AuthorityGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, deps: [{ token: RedirectService }, { token: UserService }, { token: ConfigurationService }, { token: i2$
|
|
25105
|
+
AuthorityGuardService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, deps: [{ token: RedirectService }, { token: UserService }, { token: ConfigurationService }, { token: i2$5.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
25067
25106
|
AuthorityGuardService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, providedIn: AuthenticationModule });
|
|
25068
25107
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AuthorityGuardService, decorators: [{
|
|
25069
25108
|
type: Injectable,
|
|
25070
25109
|
args: [{
|
|
25071
25110
|
providedIn: AuthenticationModule
|
|
25072
25111
|
}]
|
|
25073
|
-
}], ctorParameters: function () { return [{ type: RedirectService }, { type: UserService }, { type: ConfigurationService }, { type: i2$
|
|
25112
|
+
}], ctorParameters: function () { return [{ type: RedirectService }, { type: UserService }, { type: ConfigurationService }, { type: i2$5.Router }]; } });
|
|
25074
25113
|
|
|
25075
25114
|
/**
|
|
25076
25115
|
* This service allows access to information about the groups of the currently logged user.
|
|
@@ -25678,7 +25717,7 @@ class AbstractNavigationTreeComponent extends AbstractNavigationResizableDrawerC
|
|
|
25678
25717
|
return split;
|
|
25679
25718
|
}
|
|
25680
25719
|
}
|
|
25681
|
-
AbstractNavigationTreeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationTreeComponent, deps: [{ token: ConfigurationService }, { token: i2$
|
|
25720
|
+
AbstractNavigationTreeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationTreeComponent, deps: [{ token: ConfigurationService }, { token: i2$5.Router }, { token: LoggerService }, { token: UserService }, { token: AccessService }, { token: ActiveGroupService }, { token: TaskResourceService }, { token: LanguageService }, { token: DynamicNavigationRouteProviderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
25682
25721
|
AbstractNavigationTreeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractNavigationTreeComponent, selector: "ncc-abstract-navigation-tree", inputs: { viewPath: "viewPath", parentUrl: "parentUrl", routerChange: "routerChange" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
25683
25722
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationTreeComponent, decorators: [{
|
|
25684
25723
|
type: Component,
|
|
@@ -25686,7 +25725,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
25686
25725
|
selector: 'ncc-abstract-navigation-tree',
|
|
25687
25726
|
template: ''
|
|
25688
25727
|
}]
|
|
25689
|
-
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$
|
|
25728
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$5.Router }, { type: LoggerService }, { type: UserService }, { type: AccessService }, { type: ActiveGroupService }, { type: TaskResourceService }, { type: LanguageService }, { type: DynamicNavigationRouteProviderService }]; }, propDecorators: { viewPath: [{
|
|
25690
25729
|
type: Input
|
|
25691
25730
|
}], parentUrl: [{
|
|
25692
25731
|
type: Input
|
|
@@ -26214,14 +26253,14 @@ class RoutingBuilderService {
|
|
|
26214
26253
|
return result;
|
|
26215
26254
|
}
|
|
26216
26255
|
}
|
|
26217
|
-
RoutingBuilderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, deps: [{ token: i2$
|
|
26256
|
+
RoutingBuilderService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, deps: [{ token: i2$5.Router }, { token: ConfigurationService }, { token: ViewService }, { token: LoggerService }, { token: DynamicNavigationRouteProviderService }, { token: NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
26218
26257
|
RoutingBuilderService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, providedIn: 'root' });
|
|
26219
26258
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RoutingBuilderService, decorators: [{
|
|
26220
26259
|
type: Injectable,
|
|
26221
26260
|
args: [{
|
|
26222
26261
|
providedIn: 'root'
|
|
26223
26262
|
}]
|
|
26224
|
-
}], ctorParameters: function () { return [{ type: i2$
|
|
26263
|
+
}], ctorParameters: function () { return [{ type: i2$5.Router }, { type: ConfigurationService }, { type: ViewService }, { type: LoggerService }, { type: DynamicNavigationRouteProviderService }, { type: i0.Type, decorators: [{
|
|
26225
26264
|
type: Optional
|
|
26226
26265
|
}, {
|
|
26227
26266
|
type: Inject,
|
|
@@ -26547,14 +26586,14 @@ class ImpersonationService extends AbstractResourceService {
|
|
|
26547
26586
|
}
|
|
26548
26587
|
}
|
|
26549
26588
|
}
|
|
26550
|
-
ImpersonationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, deps: [{ token: ResourceProvider }, { token: i2$
|
|
26589
|
+
ImpersonationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, deps: [{ token: ResourceProvider }, { token: i2$5.Router }, { token: ConfigurationService }, { token: UserService }, { token: SnackBarService }, { token: FilterRepository }, { token: LoggerService }, { token: i1$2.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
26551
26590
|
ImpersonationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, providedIn: 'root' });
|
|
26552
26591
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ImpersonationService, decorators: [{
|
|
26553
26592
|
type: Injectable,
|
|
26554
26593
|
args: [{
|
|
26555
26594
|
providedIn: 'root'
|
|
26556
26595
|
}]
|
|
26557
|
-
}], ctorParameters: function () { return [{ type: ResourceProvider }, { type: i2$
|
|
26596
|
+
}], ctorParameters: function () { return [{ type: ResourceProvider }, { type: i2$5.Router }, { type: ConfigurationService }, { type: UserService }, { type: SnackBarService }, { type: FilterRepository }, { type: LoggerService }, { type: i1$2.TranslateService }]; } });
|
|
26558
26597
|
|
|
26559
26598
|
class ImpersonationUserSelectService {
|
|
26560
26599
|
constructor(_log, _sideMenuService, _snackBar, _impersonation, _user, _userImpersonateComponent, _adminImpersonateComponent) {
|
|
@@ -27009,7 +27048,7 @@ class AbstractNavigationDoubleDrawerComponent {
|
|
|
27009
27048
|
// this.contentWidth.next(this.width);
|
|
27010
27049
|
}
|
|
27011
27050
|
}
|
|
27012
|
-
AbstractNavigationDoubleDrawerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationDoubleDrawerComponent, deps: [{ token: i2$
|
|
27051
|
+
AbstractNavigationDoubleDrawerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationDoubleDrawerComponent, deps: [{ token: i2$5.Router }, { token: i2$5.ActivatedRoute }, { token: i1$7.BreakpointObserver }, { token: LanguageService }, { token: UserService }, { token: AccessService }, { token: LoggerService }, { token: ConfigurationService }, { token: UriService }, { token: ImpersonationUserSelectService }, { token: ImpersonationService }, { token: DynamicNavigationRouteProviderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
27013
27052
|
AbstractNavigationDoubleDrawerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractNavigationDoubleDrawerComponent, selector: "ncc-abstract-navigation-double-drawer", inputs: { portalLeftMenu: "portalLeftMenu", portalRightMenu: "portalRightMenu", imageRouterLink: "imageRouterLink", imageAlt: "imageAlt", image: "image", profileRouterLink: "profileRouterLink", includeUser: "includeUser", includeLanguage: "includeLanguage", includeMoreMenu: "includeMoreMenu", includeImpersonation: "includeImpersonation", allClosable: "allClosable", folderIcon: "folderIcon", openedFolderIcon: "openedFolderIcon", filterIcon: "filterIcon", foldersCategoryName: "foldersCategoryName", viewsCategoryName: "viewsCategoryName" }, ngImport: i0, template: '', isInline: true });
|
|
27014
27053
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractNavigationDoubleDrawerComponent, decorators: [{
|
|
27015
27054
|
type: Component,
|
|
@@ -27017,7 +27056,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27017
27056
|
selector: 'ncc-abstract-navigation-double-drawer',
|
|
27018
27057
|
template: '',
|
|
27019
27058
|
}]
|
|
27020
|
-
}], ctorParameters: function () { return [{ type: i2$
|
|
27059
|
+
}], ctorParameters: function () { return [{ type: i2$5.Router }, { type: i2$5.ActivatedRoute }, { type: i1$7.BreakpointObserver }, { type: LanguageService }, { type: UserService }, { type: AccessService }, { type: LoggerService }, { type: ConfigurationService }, { type: UriService }, { type: ImpersonationUserSelectService }, { type: ImpersonationService }, { type: DynamicNavigationRouteProviderService }]; }, propDecorators: { portalLeftMenu: [{
|
|
27021
27060
|
type: Input
|
|
27022
27061
|
}], portalRightMenu: [{
|
|
27023
27062
|
type: Input
|
|
@@ -27177,7 +27216,7 @@ class AbstractGroupNavigationComponentResolverComponent {
|
|
|
27177
27216
|
});
|
|
27178
27217
|
}
|
|
27179
27218
|
}
|
|
27180
|
-
AbstractGroupNavigationComponentResolverComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractGroupNavigationComponentResolverComponent, deps: [{ token: GroupNavigationComponentResolverService }, { token: i0.Injector }, { token: i2$
|
|
27219
|
+
AbstractGroupNavigationComponentResolverComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractGroupNavigationComponentResolverComponent, deps: [{ token: GroupNavigationComponentResolverService }, { token: i0.Injector }, { token: i2$5.ActivatedRoute }, { token: i2$5.Router }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Component });
|
|
27181
27220
|
AbstractGroupNavigationComponentResolverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractGroupNavigationComponentResolverComponent, selector: "ncc-abstract-group-nagiation-resolver", ngImport: i0, template: '', isInline: true });
|
|
27182
27221
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractGroupNavigationComponentResolverComponent, decorators: [{
|
|
27183
27222
|
type: Component,
|
|
@@ -27185,7 +27224,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27185
27224
|
selector: 'ncc-abstract-group-nagiation-resolver',
|
|
27186
27225
|
template: ''
|
|
27187
27226
|
}]
|
|
27188
|
-
}], ctorParameters: function () { return [{ type: GroupNavigationComponentResolverService }, { type: i0.Injector }, { type: i2$
|
|
27227
|
+
}], ctorParameters: function () { return [{ type: GroupNavigationComponentResolverService }, { type: i0.Injector }, { type: i2$5.ActivatedRoute }, { type: i2$5.Router }, { type: LoggerService }]; } });
|
|
27189
27228
|
|
|
27190
27229
|
class AbstractBreadcrumbsComponent {
|
|
27191
27230
|
constructor(_uriService) {
|
|
@@ -27519,7 +27558,7 @@ class AbstractTabbedCaseViewComponent extends AbstractCaseViewComponent {
|
|
|
27519
27558
|
}, this._autoswitchToTaskTab, this._openExistingTab);
|
|
27520
27559
|
}
|
|
27521
27560
|
}
|
|
27522
|
-
AbstractTabbedCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedCaseViewComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA }, { token: OverflowService }, { token: NAE_AUTOSWITCH_TAB_TOKEN, optional: true }, { token: NAE_OPEN_EXISTING_TAB, optional: true }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$
|
|
27561
|
+
AbstractTabbedCaseViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedCaseViewComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA }, { token: OverflowService }, { token: NAE_AUTOSWITCH_TAB_TOKEN, optional: true }, { token: NAE_OPEN_EXISTING_TAB, optional: true }, { token: NAE_NEW_CASE_CREATION_CONFIGURATION_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
27523
27562
|
AbstractTabbedCaseViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTabbedCaseViewComponent, selector: "ncc-abstract-tabbed-case-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
27524
27563
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedCaseViewComponent, decorators: [{
|
|
27525
27564
|
type: Component,
|
|
@@ -27545,7 +27584,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27545
27584
|
}, {
|
|
27546
27585
|
type: Inject,
|
|
27547
27586
|
args: [NAE_NEW_CASE_CREATION_CONFIGURATION_DATA]
|
|
27548
|
-
}] }, { type: i2$
|
|
27587
|
+
}] }, { type: i2$5.ActivatedRoute }]; } });
|
|
27549
27588
|
|
|
27550
27589
|
class AbstractTabbedTaskViewComponent extends AbstractTaskViewComponent {
|
|
27551
27590
|
constructor(taskViewService, _injectedTabData, _activatedRoute) {
|
|
@@ -27560,7 +27599,7 @@ class AbstractTabbedTaskViewComponent extends AbstractTaskViewComponent {
|
|
|
27560
27599
|
this.subTaskView.unsubscribe();
|
|
27561
27600
|
}
|
|
27562
27601
|
}
|
|
27563
|
-
AbstractTabbedTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedTaskViewComponent, deps: [{ token: TaskViewService }, { token: NAE_TAB_DATA }, { token: i2$
|
|
27602
|
+
AbstractTabbedTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedTaskViewComponent, deps: [{ token: TaskViewService }, { token: NAE_TAB_DATA }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
27564
27603
|
AbstractTabbedTaskViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractTabbedTaskViewComponent, selector: "ncc-abstract-tabbed-task-view", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
27565
27604
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractTabbedTaskViewComponent, decorators: [{
|
|
27566
27605
|
type: Component,
|
|
@@ -27571,7 +27610,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
27571
27610
|
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: undefined, decorators: [{
|
|
27572
27611
|
type: Inject,
|
|
27573
27612
|
args: [NAE_TAB_DATA]
|
|
27574
|
-
}] }, { type: i2$
|
|
27613
|
+
}] }, { type: i2$5.ActivatedRoute }]; } });
|
|
27575
27614
|
|
|
27576
27615
|
const NAE_TREE_CASE_VIEW_CONFIGURATION = new InjectionToken('NaeTreeCaseViewConfiguration');
|
|
27577
27616
|
|
|
@@ -28749,7 +28788,7 @@ class AbstractWorkflowViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
28749
28788
|
}
|
|
28750
28789
|
}
|
|
28751
28790
|
}
|
|
28752
|
-
AbstractWorkflowViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractWorkflowViewComponent, deps: [{ token: SideMenuService }, { token: WorkflowViewService }, { token: LoggerService }, { token: ProcessService }, { token: i2$
|
|
28791
|
+
AbstractWorkflowViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractWorkflowViewComponent, deps: [{ token: SideMenuService }, { token: WorkflowViewService }, { token: LoggerService }, { token: ProcessService }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
28753
28792
|
AbstractWorkflowViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractWorkflowViewComponent, selector: "ncc-abstract-workflow-view", inputs: { footerSize: "footerSize", showDeleteMenu: "showDeleteMenu" }, viewQueries: [{ propertyName: "workflowHeader", first: true, predicate: ["header"], descendants: true }, { propertyName: "viewport", first: true, predicate: CdkVirtualScrollViewport, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
28754
28793
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractWorkflowViewComponent, decorators: [{
|
|
28755
28794
|
type: Component,
|
|
@@ -28757,7 +28796,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
28757
28796
|
selector: 'ncc-abstract-workflow-view',
|
|
28758
28797
|
template: ''
|
|
28759
28798
|
}]
|
|
28760
|
-
}], ctorParameters: function () { return [{ type: SideMenuService }, { type: WorkflowViewService }, { type: LoggerService }, { type: ProcessService }, { type: i2$
|
|
28799
|
+
}], ctorParameters: function () { return [{ type: SideMenuService }, { type: WorkflowViewService }, { type: LoggerService }, { type: ProcessService }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { footerSize: [{
|
|
28761
28800
|
type: Input
|
|
28762
28801
|
}], showDeleteMenu: [{
|
|
28763
28802
|
type: Input
|
|
@@ -28810,7 +28849,7 @@ class AbstractDefaultCaseListComponent extends TabbedVirtualScrollComponent {
|
|
|
28810
28849
|
});
|
|
28811
28850
|
}
|
|
28812
28851
|
}
|
|
28813
|
-
AbstractDefaultCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
28852
|
+
AbstractDefaultCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
28814
28853
|
AbstractDefaultCaseListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractDefaultCaseListComponent, selector: "ncc-abstract-default-case-list", inputs: { selectedHeaders$: "selectedHeaders$", responsiveBody: "responsiveBody", showCasePanelIcon: "showCasePanelIcon", showDeleteMenu: "showDeleteMenu", textEllipsis: "textEllipsis", width: "width", redirectEnabled: "redirectEnabled" }, outputs: { caseClick: "caseClick" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
28815
28854
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractDefaultCaseListComponent, decorators: [{
|
|
28816
28855
|
type: Component,
|
|
@@ -28823,7 +28862,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
28823
28862
|
}, {
|
|
28824
28863
|
type: Inject,
|
|
28825
28864
|
args: [NAE_TAB_DATA]
|
|
28826
|
-
}] }, { type: i2$
|
|
28865
|
+
}] }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { selectedHeaders$: [{
|
|
28827
28866
|
type: Input
|
|
28828
28867
|
}], responsiveBody: [{
|
|
28829
28868
|
type: Input
|
|
@@ -28863,7 +28902,7 @@ class AbstractCaseListComponent extends AbstractDefaultCaseListComponent {
|
|
|
28863
28902
|
this._caseViewService.nextPage(this.viewport.getRenderedRange(), this.viewport.getDataLength());
|
|
28864
28903
|
}
|
|
28865
28904
|
}
|
|
28866
|
-
AbstractCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
28905
|
+
AbstractCaseListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
28867
28906
|
AbstractCaseListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractCaseListComponent, selector: "ncc-abstract-case-list", viewQueries: [{ propertyName: "viewport", first: true, predicate: CdkVirtualScrollViewport, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
28868
28907
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListComponent, decorators: [{
|
|
28869
28908
|
type: Component,
|
|
@@ -28876,7 +28915,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
28876
28915
|
}, {
|
|
28877
28916
|
type: Inject,
|
|
28878
28917
|
args: [NAE_TAB_DATA]
|
|
28879
|
-
}] }, { type: i2$
|
|
28918
|
+
}] }, { type: i2$5.ActivatedRoute }]; }, propDecorators: { viewport: [{
|
|
28880
28919
|
type: ViewChild,
|
|
28881
28920
|
args: [CdkVirtualScrollViewport]
|
|
28882
28921
|
}] } });
|
|
@@ -28905,7 +28944,7 @@ class AbstractCaseListPaginatorComponent extends AbstractDefaultCaseListComponen
|
|
|
28905
28944
|
return caze.stringId;
|
|
28906
28945
|
}
|
|
28907
28946
|
}
|
|
28908
|
-
AbstractCaseListPaginatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListPaginatorComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$
|
|
28947
|
+
AbstractCaseListPaginatorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListPaginatorComponent, deps: [{ token: CaseViewService }, { token: LoggerService }, { token: NAE_TAB_DATA, optional: true }, { token: i2$5.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component });
|
|
28909
28948
|
AbstractCaseListPaginatorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractCaseListPaginatorComponent, selector: "ncc-abstract-case-list-paginator", usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
28910
28949
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractCaseListPaginatorComponent, decorators: [{
|
|
28911
28950
|
type: Component,
|
|
@@ -28918,7 +28957,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
28918
28957
|
}, {
|
|
28919
28958
|
type: Inject,
|
|
28920
28959
|
args: [NAE_TAB_DATA]
|
|
28921
|
-
}] }, { type: i2$
|
|
28960
|
+
}] }, { type: i2$5.ActivatedRoute }]; } });
|
|
28922
28961
|
|
|
28923
28962
|
class AbstractTreeComponent {
|
|
28924
28963
|
constructor(_treeService) {
|
|
@@ -29228,7 +29267,7 @@ class AbstractSingleTaskViewComponent extends AbstractViewWithHeadersComponent {
|
|
|
29228
29267
|
return transitionTask;
|
|
29229
29268
|
}
|
|
29230
29269
|
}
|
|
29231
|
-
AbstractSingleTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$
|
|
29270
|
+
AbstractSingleTaskViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, deps: [{ token: TaskViewService }, { token: i2$5.ActivatedRoute }, { token: i5.AsyncPipe }], target: i0.ɵɵFactoryTarget.Component });
|
|
29232
29271
|
AbstractSingleTaskViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: AbstractSingleTaskViewComponent, selector: "ncc-abstract-single-task-view", inputs: { initiallyExpanded: "initiallyExpanded", preventCollapse: "preventCollapse" }, outputs: { noTaskPresent: "noTaskPresent" }, usesInheritance: true, ngImport: i0, template: '', isInline: true });
|
|
29233
29272
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AbstractSingleTaskViewComponent, decorators: [{
|
|
29234
29273
|
type: Component,
|
|
@@ -29236,7 +29275,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
29236
29275
|
selector: 'ncc-abstract-single-task-view',
|
|
29237
29276
|
template: ''
|
|
29238
29277
|
}]
|
|
29239
|
-
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$
|
|
29278
|
+
}], ctorParameters: function () { return [{ type: TaskViewService }, { type: i2$5.ActivatedRoute }, { type: i5.AsyncPipe }]; }, propDecorators: { initiallyExpanded: [{
|
|
29240
29279
|
type: Input
|
|
29241
29280
|
}], preventCollapse: [{
|
|
29242
29281
|
type: Input
|
|
@@ -32467,11 +32506,11 @@ class TestViewService extends ViewService {
|
|
|
32467
32506
|
super([], config, router, logger);
|
|
32468
32507
|
}
|
|
32469
32508
|
}
|
|
32470
|
-
TestViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService, deps: [{ token: ConfigurationService }, { token: i2$
|
|
32509
|
+
TestViewService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService, deps: [{ token: ConfigurationService }, { token: i2$5.Router }, { token: LoggerService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
32471
32510
|
TestViewService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService });
|
|
32472
32511
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TestViewService, decorators: [{
|
|
32473
32512
|
type: Injectable
|
|
32474
|
-
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$
|
|
32513
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }, { type: i2$5.Router }, { type: LoggerService }]; } });
|
|
32475
32514
|
|
|
32476
32515
|
/**
|
|
32477
32516
|
* A utility class that mock any pageable endpoint that takes one parameter
|