@bnsights/bbsf-admin-portal 1.0.4 → 1.0.8
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/bnsights-bbsf-admin-portal-1.0.8.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +8335 -3660
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/ActiveDirectories/active-directory-add/active-directory-add.component.js +2 -2
- package/esm2015/lib/Pages/account/account-routing.module.js +9 -1
- package/esm2015/lib/Pages/account/account.component.js +15 -6
- package/esm2015/lib/Pages/account/account.module.js +19 -8
- package/esm2015/lib/Pages/account/activation/activation.component.js +91 -0
- package/esm2015/lib/Pages/account/forgot-password/forgot-password.component.js +54 -0
- package/esm2015/lib/Pages/account/rest-password/rest-password.component.js +89 -0
- package/esm2015/lib/Pages/account/upload-license/upload-license.component.js +70 -0
- package/esm2015/lib/Pages/configurations/configuration/configuration.component.js +203 -184
- package/esm2015/lib/Pages/core/authentication/auth.guard.js +10 -4
- package/esm2015/lib/Pages/core/authentication/auth.service.js +1 -2
- package/esm2015/lib/Pages/departments/department/department.component.js +12 -9
- package/esm2015/lib/Pages/departments/department-info/department-info.component.js +1 -1
- package/esm2015/lib/Pages/departments/departments.module.js +6 -4
- package/esm2015/lib/Pages/helpCenter/help-center/help-center.component.js +9 -9
- package/esm2015/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.js +9 -9
- package/esm2015/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.js +9 -9
- package/esm2015/lib/Pages/home/home.component.js +2 -2
- package/esm2015/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.js +1 -1
- package/esm2015/lib/Pages/jobs/jobs/jobs.component.js +1 -1
- package/esm2015/lib/Pages/localizations/localizations.component.js +10 -11
- package/esm2015/lib/Pages/lookups/lookup/lookup.component.js +10 -10
- package/esm2015/lib/Pages/lookups/lookup-group/lookup-group.component.js +5 -5
- package/esm2015/lib/Pages/lookups/lookup-item/lookup-item.component.js +5 -5
- package/esm2015/lib/Pages/notifications/add/add.component.js +11 -13
- package/esm2015/lib/Pages/notifications/edit/edit.component.js +11 -13
- package/esm2015/lib/Pages/notifications/master-layouts/master-layouts.component.js +1 -1
- package/esm2015/lib/Pages/notifications/template-info/template-info.component.js +5 -5
- package/esm2015/lib/Pages/notifications/templates/templates.component.js +9 -9
- package/esm2015/lib/Pages/providers/provider/provider.component.js +2 -1
- package/esm2015/lib/Pages/publicHolidays/public-holiday/public-holiday.component.js +78 -84
- package/esm2015/lib/Pages/roles/permission-set-info/permission-set-info.component.js +1 -1
- package/esm2015/lib/Pages/roles/permissions/permissions.component.js +5 -5
- package/esm2015/lib/Pages/roles/permissionsets/permissionsets.component.js +5 -5
- package/esm2015/lib/Pages/sectors/department-info/department-info.component.js +1 -1
- package/esm2015/lib/Pages/sectors/sector/sector.component.js +5 -5
- package/esm2015/lib/Pages/sectors/sector-info/sector-info.component.js +1 -1
- package/esm2015/lib/Pages/shared/Enums/ConditionRHSType.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/ConfigurationScope.js +8 -0
- package/esm2015/lib/Pages/shared/Enums/ConfigurationType.js +8 -0
- package/esm2015/lib/Pages/shared/Enums/ConfigurationValueSource.js +6 -0
- package/esm2015/lib/Pages/shared/Enums/WFActivityType.js +12 -0
- package/esm2015/lib/Pages/shared/Enums/WFVariableDataType.js +14 -0
- package/esm2015/lib/Pages/shared/Services/AccountService.service.js +41 -0
- package/esm2015/lib/Pages/shared/Services/DepartmentService.service.js +1 -1
- package/esm2015/lib/Pages/shared/Services/WorkFlowVersionService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowActivityService.service.js +32 -5
- package/esm2015/lib/Pages/shared/Services/WorkflowInstanceService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowLogVariablesService.service.js +24 -0
- package/esm2015/lib/Pages/shared/Services/WorkflowService.service.js +12 -4
- package/esm2015/lib/Pages/shared/Services/WorkflowVariablesService.service.js +12 -6
- package/esm2015/lib/Pages/shared/models/AccountModels/forgotPasswordModel.js +6 -0
- package/esm2015/lib/Pages/shared/models/DepartmentModels/DepartmentModel.js +3 -2
- package/esm2015/lib/Pages/shared/models/UserModels/ActivationModel.js +3 -0
- package/esm2015/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.js +8 -0
- package/esm2015/lib/Pages/users/users.component.js +7 -6
- package/esm2015/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.js +535 -0
- package/esm2015/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.js +852 -0
- package/esm2015/lib/Pages/workflows/instance-info/instance-info.component.js +309 -0
- package/esm2015/lib/Pages/workflows/tabs/tabs.component.js +611 -430
- package/esm2015/lib/Pages/workflows/version-info/version-info.component.js +143 -0
- package/esm2015/lib/Pages/workflows/workflow/workflow.component.js +136 -148
- package/esm2015/lib/Pages/workflows/workflows-routing.module.js +9 -1
- package/esm2015/lib/Pages/workflows/workflows.module.js +7 -3
- package/esm2015/lib/masterlayout.component.js +1 -2
- package/esm2015/lib/masterlayout.module.js +2 -4
- package/esm2015/public-api.js +2 -1
- package/fesm2015/bnsights-bbsf-admin-portal.js +7678 -3098
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/lib/Pages/account/account.component.d.ts +5 -1
- package/lib/Pages/account/account.module.d.ts +11 -6
- package/lib/Pages/account/activation/activation.component.d.ts +32 -0
- package/lib/Pages/account/forgot-password/forgot-password.component.d.ts +23 -0
- package/lib/Pages/account/rest-password/rest-password.component.d.ts +32 -0
- package/lib/Pages/account/upload-license/upload-license.component.d.ts +25 -0
- package/lib/Pages/configurations/configuration/configuration.component.d.ts +12 -8
- package/lib/Pages/core/authentication/auth.guard.d.ts +1 -0
- package/lib/Pages/departments/department/department.component.d.ts +3 -2
- package/lib/Pages/departments/department-info/department-info.component.d.ts +1 -1
- package/lib/Pages/helpCenter/help-center/help-center.component.d.ts +1 -1
- package/lib/Pages/helpCenter/help-center-secondlevel/help-center-secondlevel.component.d.ts +1 -1
- package/lib/Pages/helpCenter/help-center-thirdlevel/help-center-thirdlevel.component.d.ts +1 -1
- package/lib/Pages/impersonation-rules/impersonation-rules/impersonation-rules.component.d.ts +1 -1
- package/lib/Pages/jobs/jobs/jobs.component.d.ts +6 -6
- package/lib/Pages/localizations/localizations.component.d.ts +1 -1
- package/lib/Pages/lookups/lookup/lookup.component.d.ts +1 -1
- package/lib/Pages/lookups/lookup-group/lookup-group.component.d.ts +1 -1
- package/lib/Pages/lookups/lookup-item/lookup-item.component.d.ts +1 -1
- package/lib/Pages/notifications/master-layouts/master-layouts.component.d.ts +1 -1
- package/lib/Pages/notifications/templates/templates.component.d.ts +1 -1
- package/lib/Pages/providers/provider/provider.component.d.ts +1 -1
- package/lib/Pages/publicHolidays/public-holiday/public-holiday.component.d.ts +12 -15
- package/lib/Pages/roles/permission-set-info/permission-set-info.component.d.ts +1 -1
- package/lib/Pages/roles/permissions/permissions.component.d.ts +1 -1
- package/lib/Pages/roles/permissionsets/permissionsets.component.d.ts +1 -1
- package/lib/Pages/sectors/department-info/department-info.component.d.ts +1 -1
- package/lib/Pages/sectors/sector/sector.component.d.ts +1 -1
- package/lib/Pages/sectors/sector-info/sector-info.component.d.ts +1 -1
- package/lib/Pages/shared/Enums/ConditionRHSType.d.ts +4 -0
- package/lib/Pages/shared/Enums/ConfigurationScope.d.ts +5 -0
- package/lib/Pages/shared/Enums/ConfigurationType.d.ts +6 -0
- package/lib/Pages/shared/Enums/ConfigurationValueSource.d.ts +4 -0
- package/lib/Pages/shared/Enums/WFActivityType.d.ts +10 -0
- package/lib/Pages/shared/Enums/WFVariableDataType.d.ts +12 -0
- package/lib/Pages/shared/Services/AccountService.service.d.ts +17 -0
- package/lib/Pages/shared/Services/ActiveDirectoryService.service.d.ts +8 -8
- package/lib/Pages/shared/Services/ConfigurationsService.service.d.ts +7 -7
- package/lib/Pages/shared/Services/DepartmentService.service.d.ts +7 -7
- package/lib/Pages/shared/Services/EmailHeaderAndFooterTemplateService.Service.d.ts +5 -5
- package/lib/Pages/shared/Services/HelpCenterService.service.d.ts +8 -8
- package/lib/Pages/shared/Services/ImpersonationRuleService.service.d.ts +5 -5
- package/lib/Pages/shared/Services/JobsService.service.d.ts +1 -1
- package/lib/Pages/shared/Services/LicenseService.service.d.ts +2 -2
- package/lib/Pages/shared/Services/LogsService.d.ts +1 -1
- package/lib/Pages/shared/Services/LookupGroupsService.service.d.ts +4 -4
- package/lib/Pages/shared/Services/LookupService.service.d.ts +14 -14
- package/lib/Pages/shared/Services/PermissionSetService.service.d.ts +8 -8
- package/lib/Pages/shared/Services/PermissionsService.service.d.ts +5 -5
- package/lib/Pages/shared/Services/PublicHolidayService.service.d.ts +6 -6
- package/lib/Pages/shared/Services/SectorService.service.d.ts +7 -7
- package/lib/Pages/shared/Services/TemplateService.service.d.ts +20 -20
- package/lib/Pages/shared/Services/WorkFlowVersionService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowActivityService.service.d.ts +9 -3
- package/lib/Pages/shared/Services/WorkflowInstanceService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowLogVariablesService.service.d.ts +10 -0
- package/lib/Pages/shared/Services/WorkflowService.service.d.ts +5 -3
- package/lib/Pages/shared/Services/WorkflowVariablesService.service.d.ts +5 -4
- package/lib/Pages/shared/Services/localizationsService.service .d.ts +12 -12
- package/lib/Pages/shared/Services/provider.service.d.ts +10 -10
- package/lib/Pages/shared/Services/userService.service.d.ts +14 -14
- package/lib/Pages/shared/models/AccountModels/forgotPasswordModel.d.ts +3 -0
- package/lib/Pages/shared/models/DepartmentModels/DepartmentModel.d.ts +9 -8
- package/lib/Pages/shared/models/UserModels/ActivationModel.d.ts +10 -0
- package/lib/Pages/shared/models/WorkflowModels/WFActivityVariablesModel.d.ts +13 -0
- package/lib/Pages/users/users.component.d.ts +1 -1
- package/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.d.ts +77 -0
- package/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.d.ts +83 -0
- package/lib/Pages/workflows/instance-info/instance-info.component.d.ts +81 -0
- package/lib/Pages/workflows/tabs/tabs.component.d.ts +73 -80
- package/lib/Pages/workflows/version-info/version-info.component.d.ts +41 -0
- package/lib/Pages/workflows/workflow/workflow.component.d.ts +26 -29
- package/lib/Pages/workflows/workflows.module.d.ts +19 -15
- package/package.json +5 -3
- package/public-api.d.ts +1 -0
- package/src/lib/assets/sass/core/components/_variables.scss +1 -1
- package/src/lib/assets/sass/custom-styles-rtl.scss +5 -0
- package/src/lib/assets/sass/custom-styles.scss +38 -0
package/lib/Pages/workflows/activity/workflow-activity-add/workflow-activity-add.component.d.ts
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { DropdownOptions, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, TextBoxOptions, ToggleSlideOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { PageInfoService } from '../../../../../public-api';
|
|
8
|
+
import { WorkflowActivityService } from '../../../shared/Services/WorkflowActivityService.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class WorkflowActivityAddComponent implements OnInit {
|
|
11
|
+
private workflowActivityService;
|
|
12
|
+
utilityService: UtilityService;
|
|
13
|
+
private activatedRoute;
|
|
14
|
+
private pageInfoService;
|
|
15
|
+
private router;
|
|
16
|
+
private requestHandlerService;
|
|
17
|
+
private bbsfTranslateService;
|
|
18
|
+
isAddFormLoaded: boolean;
|
|
19
|
+
versionID: number;
|
|
20
|
+
addworkflowActivityForm: FormGroup;
|
|
21
|
+
addworkflowActivityFormOptions: FormOptions;
|
|
22
|
+
name: MultiLingualTextBoxOptions;
|
|
23
|
+
sysName: TextBoxOptions;
|
|
24
|
+
activityType: DropdownOptions;
|
|
25
|
+
canAddOutcome: boolean;
|
|
26
|
+
ActivityTypeList: any[];
|
|
27
|
+
showParticipantContainer: boolean;
|
|
28
|
+
showParticipantPermssionSet: boolean;
|
|
29
|
+
participantTypes: DropdownOptions;
|
|
30
|
+
participantPermissionSet: DropdownOptions;
|
|
31
|
+
showDynamicControls: boolean;
|
|
32
|
+
dynamicTaskName: MultiLingualTextBoxOptions;
|
|
33
|
+
dynamicTaskDescription: MultiLingualTextAreaOptions;
|
|
34
|
+
dynamicTaskURL: TextBoxOptions;
|
|
35
|
+
dynamicTaskType: DropdownOptions;
|
|
36
|
+
dynamicCanComplete: ToggleSlideOptions;
|
|
37
|
+
showStaticControls: boolean;
|
|
38
|
+
staticOutcomeName: MultiLingualTextBoxOptions;
|
|
39
|
+
staticOutcomeSysName: TextBoxOptions;
|
|
40
|
+
staticOutcomeNextActivity: DropdownOptions;
|
|
41
|
+
staticOutcomeCanAddComment: ToggleSlideOptions;
|
|
42
|
+
showConditionControls: boolean;
|
|
43
|
+
conditionLHSDropDown: DropdownOptions;
|
|
44
|
+
conditionsDropDown: DropdownOptions;
|
|
45
|
+
conditionRHSTypeDropDown: DropdownOptions;
|
|
46
|
+
conditionRHSDropDown: DropdownOptions;
|
|
47
|
+
conditionRHSValue: TextBoxOptions;
|
|
48
|
+
showConditionRHSWFVariable: boolean;
|
|
49
|
+
outcomesOptions: any[];
|
|
50
|
+
outcomesCount: number;
|
|
51
|
+
showOutcomesContainer: boolean;
|
|
52
|
+
taskTypeList: any[];
|
|
53
|
+
participantTypeList: any[];
|
|
54
|
+
participantDataList: any[];
|
|
55
|
+
nextActivityList: any[];
|
|
56
|
+
conditionLHSWFVariableList: any[];
|
|
57
|
+
conditionRHSWFVariableList: any[];
|
|
58
|
+
conditionRHSTypeList: any[];
|
|
59
|
+
conditionList: any[];
|
|
60
|
+
constructor(workflowActivityService: WorkflowActivityService, utilityService: UtilityService, activatedRoute: ActivatedRoute, pageInfoService: PageInfoService, router: Router, requestHandlerService: RequestHandlerService, bbsfTranslateService: BBSFTranslateService);
|
|
61
|
+
ngOnInit(): Promise<void>;
|
|
62
|
+
initializePage(): void;
|
|
63
|
+
getAddWFActivityModel: () => any[];
|
|
64
|
+
getAddWFActivityFunction: (AddModel: any) => Observable<any>;
|
|
65
|
+
onAddSuccess: (result: any) => void;
|
|
66
|
+
getActivityOutcomesOptions(outComes: any[]): (number | any[])[];
|
|
67
|
+
addWFActivityOutcome(): void;
|
|
68
|
+
deleteOutcome(deletedOutcome: any): void;
|
|
69
|
+
activityTypeOnChange(activityType: any): void;
|
|
70
|
+
conditionRHSTypeOnChange(type: any): void;
|
|
71
|
+
participantTypeOnChange(participantType: any): void;
|
|
72
|
+
resetAllActivityTypeControls(): void;
|
|
73
|
+
cancelAdd(): void;
|
|
74
|
+
ngOnDestroy(): void;
|
|
75
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowActivityAddComponent, never>;
|
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowActivityAddComponent, "lib-workflow-activity-add", never, {}, {}, never, never>;
|
|
77
|
+
}
|
package/lib/Pages/workflows/activity/workflow-activity-edit/workflow-activity-edit.component.d.ts
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
+
import { DropdownOptions, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, TextBoxOptions, ToggleSlideOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { PageInfoService } from '../../../../../public-api';
|
|
8
|
+
import { WorkflowActivityService } from '../../../shared/Services/WorkflowActivityService.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class WorkflowActivityEditComponent implements OnInit {
|
|
11
|
+
private workflowActivityService;
|
|
12
|
+
private pageInfoService;
|
|
13
|
+
utilityService: UtilityService;
|
|
14
|
+
private activatedRoute;
|
|
15
|
+
private router;
|
|
16
|
+
private requestHandlerService;
|
|
17
|
+
private bbsfTranslateService;
|
|
18
|
+
isEditFormLoaded: boolean;
|
|
19
|
+
versionID: number;
|
|
20
|
+
activityID: number;
|
|
21
|
+
activityIDEnc: string;
|
|
22
|
+
activityModel: any;
|
|
23
|
+
isPublished: boolean;
|
|
24
|
+
editworkflowActivityForm: FormGroup;
|
|
25
|
+
editworkflowActivityFormOptions: FormOptions;
|
|
26
|
+
name: MultiLingualTextBoxOptions;
|
|
27
|
+
canAddOutcome: boolean;
|
|
28
|
+
activityTypeID: number;
|
|
29
|
+
showActivityType: boolean;
|
|
30
|
+
sysName: TextBoxOptions;
|
|
31
|
+
activityType: DropdownOptions;
|
|
32
|
+
showParticipantContainer: boolean;
|
|
33
|
+
showParticipantPermssionSet: boolean;
|
|
34
|
+
participantTypes: DropdownOptions;
|
|
35
|
+
participantPermissionSet: DropdownOptions;
|
|
36
|
+
showDynamicControls: boolean;
|
|
37
|
+
dynamicTaskName: MultiLingualTextBoxOptions;
|
|
38
|
+
dynamicTaskDescription: MultiLingualTextAreaOptions;
|
|
39
|
+
dynamicTaskURL: TextBoxOptions;
|
|
40
|
+
dynamicTaskType: DropdownOptions;
|
|
41
|
+
dynamicCanComplete: ToggleSlideOptions;
|
|
42
|
+
showStaticControls: boolean;
|
|
43
|
+
staticOutcomeName: MultiLingualTextBoxOptions;
|
|
44
|
+
staticOutcomeSysName: TextBoxOptions;
|
|
45
|
+
staticOutcomeNextActivity: DropdownOptions;
|
|
46
|
+
staticOutcomeCanAddComment: ToggleSlideOptions;
|
|
47
|
+
showConditionControls: boolean;
|
|
48
|
+
conditionLHSDropDown: DropdownOptions;
|
|
49
|
+
conditionsDropDown: DropdownOptions;
|
|
50
|
+
conditionRHSTypeDropDown: DropdownOptions;
|
|
51
|
+
conditionRHSDropDown: DropdownOptions;
|
|
52
|
+
conditionRHSValue: TextBoxOptions;
|
|
53
|
+
showConditionRHSWFVariable: boolean;
|
|
54
|
+
ActivityTypeList: any[];
|
|
55
|
+
outcomesOptions: any[];
|
|
56
|
+
outcomesCount: number;
|
|
57
|
+
showOutcomesContainer: boolean;
|
|
58
|
+
taskTypeList: any[];
|
|
59
|
+
participantTypeList: any[];
|
|
60
|
+
participantDataList: any[];
|
|
61
|
+
nextActivityList: any[];
|
|
62
|
+
conditionLHSWFVariableList: any[];
|
|
63
|
+
conditionRHSWFVariableList: any[];
|
|
64
|
+
conditionRHSTypeList: any[];
|
|
65
|
+
conditionList: any[];
|
|
66
|
+
constructor(workflowActivityService: WorkflowActivityService, pageInfoService: PageInfoService, utilityService: UtilityService, activatedRoute: ActivatedRoute, router: Router, requestHandlerService: RequestHandlerService, bbsfTranslateService: BBSFTranslateService);
|
|
67
|
+
ngOnInit(): Promise<void>;
|
|
68
|
+
initializePage(): void;
|
|
69
|
+
getEditWFActivityModel: () => any[];
|
|
70
|
+
getEditWFActivityFunction: (editModel: any) => Observable<any>;
|
|
71
|
+
onEditSuccess: (result: any) => void;
|
|
72
|
+
getActivityOutcomesOptions(outComes: any[], isPublished: boolean): (number | any[])[];
|
|
73
|
+
addWFActivityOutcome(): void;
|
|
74
|
+
deleteOutcome(deletedOutcome: any): void;
|
|
75
|
+
activityTypeOnChange(activityType: any): void;
|
|
76
|
+
conditionRHSTypeOnChange(type: any): void;
|
|
77
|
+
participantTypeOnChange(participantType: any): void;
|
|
78
|
+
resetAllActivityTypeControls(): void;
|
|
79
|
+
cancelEdit(): void;
|
|
80
|
+
ngOnDestroy(): void;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowActivityEditComponent, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowActivityEditComponent, "lib-workflow-activity-edit", never, {}, {}, never, never>;
|
|
83
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { FilterItem, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { AuthService, BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
7
|
+
import { PageInfoService } from '../../../../public-api';
|
|
8
|
+
import { WorkflowInstanceService } from '../../shared/Services/WorkflowInstanceService.service';
|
|
9
|
+
import { WorkflowLogVariablesService } from '../../shared/Services/WorkflowLogVariablesService.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class InstanceInfoComponent implements OnInit {
|
|
12
|
+
private authService;
|
|
13
|
+
private workFlowInstanceService;
|
|
14
|
+
private activatedRoute;
|
|
15
|
+
private pageInfoService;
|
|
16
|
+
private bbsfTranslateService;
|
|
17
|
+
utilityService: UtilityService;
|
|
18
|
+
private wfLogVariablesService;
|
|
19
|
+
private modalService;
|
|
20
|
+
private requestHandlerService;
|
|
21
|
+
detailsForm: FormGroup;
|
|
22
|
+
instanceDetails: any;
|
|
23
|
+
instanceID: string;
|
|
24
|
+
instanceName: MultiLingualTextBoxOptions;
|
|
25
|
+
instanceCreator: TextBoxOptions;
|
|
26
|
+
instanceStatus: TextBoxOptions;
|
|
27
|
+
showInstanceDetails: boolean;
|
|
28
|
+
workFlowVariablesApiUrl: string;
|
|
29
|
+
workflowVariablesForm: FormGroup;
|
|
30
|
+
variablesInstanceIdTextBox: TextBoxOptions;
|
|
31
|
+
variableInstanceIdFilter: FilterItem;
|
|
32
|
+
searchVariablesTextBox: TextBoxOptions;
|
|
33
|
+
variablesTextInputFilter: FilterItem;
|
|
34
|
+
workFlowVariablesPagingResult: any[];
|
|
35
|
+
WorkflowVariablesPaging: PagingOptions;
|
|
36
|
+
isWFVariablesFilterLoaded: boolean;
|
|
37
|
+
workFlowTasksApiUrl: string;
|
|
38
|
+
tasksForm: FormGroup;
|
|
39
|
+
searchTasksTextBox: TextBoxOptions;
|
|
40
|
+
taskTextInputFilter: FilterItem;
|
|
41
|
+
taskInstanceIdTextBox: TextBoxOptions;
|
|
42
|
+
taskInstanceIdFilter: FilterItem;
|
|
43
|
+
tasksPagingResult: any[];
|
|
44
|
+
WorkflowTasksPaging: PagingOptions;
|
|
45
|
+
isWFTasksFilterLoaded: boolean;
|
|
46
|
+
workFlowErrorsApiUrl: string;
|
|
47
|
+
errorsForm: FormGroup;
|
|
48
|
+
searchErrorsTextBox: TextBoxOptions;
|
|
49
|
+
errorTextInputFilter: FilterItem;
|
|
50
|
+
errorInstanceIdTextBox: TextBoxOptions;
|
|
51
|
+
errorInstanceIdFilter: FilterItem;
|
|
52
|
+
errorsPagingResult: any[];
|
|
53
|
+
WorkflowErrorsPaging: PagingOptions;
|
|
54
|
+
isWFErrorsFilterLoaded: boolean;
|
|
55
|
+
workFlowLogsApiUrl: string;
|
|
56
|
+
logsForm: FormGroup;
|
|
57
|
+
searchLogsTextBox: TextBoxOptions;
|
|
58
|
+
logTextInputFilter: FilterItem;
|
|
59
|
+
logInstanceIdTextBox: TextBoxOptions;
|
|
60
|
+
logInstanceIdFilter: FilterItem;
|
|
61
|
+
logsPagingResult: any[];
|
|
62
|
+
WorkflowLogsPaging: PagingOptions;
|
|
63
|
+
isWFLogsFilterLoaded: boolean;
|
|
64
|
+
logVariablesPagingResult: any[];
|
|
65
|
+
logID: string;
|
|
66
|
+
constructor(authService: AuthService, workFlowInstanceService: WorkflowInstanceService, activatedRoute: ActivatedRoute, pageInfoService: PageInfoService, bbsfTranslateService: BBSFTranslateService, utilityService: UtilityService, wfLogVariablesService: WorkflowLogVariablesService, modalService: NgbModal, requestHandlerService: RequestHandlerService);
|
|
67
|
+
ngOnInit(): Promise<void>;
|
|
68
|
+
getDetails(): void;
|
|
69
|
+
initializeWFVariables(): void;
|
|
70
|
+
setWorkflowVariablesListResult(result: any): void;
|
|
71
|
+
initializeTasks(): void;
|
|
72
|
+
setWorkflowTasksListResult(result: any): void;
|
|
73
|
+
initializeErrors(): void;
|
|
74
|
+
setWorkflowErrorsListResult(result: any): void;
|
|
75
|
+
initializeLogs(): void;
|
|
76
|
+
setWorkflowLogsListResult(result: any): void;
|
|
77
|
+
showLogVariables(logID: string, logVariablesModal: any): void;
|
|
78
|
+
ngOnDestroy(): void;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InstanceInfoComponent, never>;
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InstanceInfoComponent, "lib-instance-info", never, {}, {}, never, never>;
|
|
81
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { FilterItem, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions, ToggleSlideOptions, DropdownOptions } from '@bnsights/bbsf-controls';
|
|
4
|
-
import { DataSecretService } from '../../shared/Services/data.service';
|
|
3
|
+
import { FilterItem, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions, ToggleSlideOptions, DropdownOptions, FormOptions, ConfirmationModalOptions } from '@bnsights/bbsf-controls';
|
|
5
4
|
import { WorkflowService } from './../../shared/Services/WorkflowService.service';
|
|
6
|
-
import { ActivatedRoute
|
|
5
|
+
import { ActivatedRoute } from '@angular/router';
|
|
7
6
|
import { WorkflowVariablesService } from '../../shared/Services/WorkflowVariablesService.service';
|
|
8
7
|
import { WorkflowActivityService } from '../../shared/Services/WorkflowActivityService.service';
|
|
9
8
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
10
9
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
11
|
-
import { AuthService, BBSFTranslateService, EnvironmentService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
10
|
+
import { AuthService, BBSFTranslateService, EnvironmentService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
11
|
+
import { PagingComponent } from '@bnsights/bbsf-controls/lib/controls/Paging/Paging.component';
|
|
12
|
+
import { Observable } from 'rxjs';
|
|
13
|
+
import { ConfirmationModalComponent } from '@bnsights/bbsf-controls/lib/controls/ConfirmationModal/ConfirmationModal.component';
|
|
12
14
|
import * as i0 from "@angular/core";
|
|
13
15
|
export declare class TabsComponent implements OnInit {
|
|
14
|
-
private dataServices;
|
|
15
16
|
private authService;
|
|
16
17
|
private WorkflowService;
|
|
17
18
|
private activatedRoute;
|
|
18
|
-
private router;
|
|
19
19
|
private WorkflowVariablesService;
|
|
20
20
|
private workflowActivityService;
|
|
21
21
|
private pageInfoService;
|
|
@@ -23,17 +23,12 @@ export declare class TabsComponent implements OnInit {
|
|
|
23
23
|
private environmentService;
|
|
24
24
|
private bbsfTranslateService;
|
|
25
25
|
utilityService: UtilityService;
|
|
26
|
-
|
|
27
|
-
SubheaderTitle: string;
|
|
28
|
-
ShowToolbar: boolean;
|
|
29
|
-
ShowbreadCrumb: boolean;
|
|
30
|
-
Url: string;
|
|
31
|
-
BreadcrumbTitle: string;
|
|
32
|
-
DetailsForm: FormGroup;
|
|
26
|
+
private requestHandlerService;
|
|
33
27
|
ProductionMode: boolean;
|
|
28
|
+
Pagetitle: string;
|
|
29
|
+
DetailsForm: FormGroup;
|
|
34
30
|
WorkflowDetails: any;
|
|
35
31
|
WorkflowId: string;
|
|
36
|
-
language: string;
|
|
37
32
|
NameMultilingualTextBox: MultiLingualTextBoxOptions;
|
|
38
33
|
DescriptionMultilingualTextBox: MultiLingualTextBoxOptions;
|
|
39
34
|
Active: TextBoxOptions;
|
|
@@ -41,96 +36,94 @@ export declare class TabsComponent implements OnInit {
|
|
|
41
36
|
SysName: TextBoxOptions;
|
|
42
37
|
ShowWorkflowDetails: boolean;
|
|
43
38
|
VersionId: string;
|
|
44
|
-
|
|
45
|
-
|
|
39
|
+
publishWFConfirmationOptions: ConfirmationModalOptions;
|
|
40
|
+
publishControlLoaded: boolean;
|
|
41
|
+
publishConfirmationModalControl: ConfirmationModalComponent;
|
|
42
|
+
WorkFlowVersionApiUrl: string;
|
|
43
|
+
WorkflowVersionForm: FormGroup;
|
|
46
44
|
WorkflowIdTextBox: TextBoxOptions;
|
|
47
45
|
searchTextBox: TextBoxOptions;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
WorkflowActivityPaging: PagingOptions;
|
|
46
|
+
WorkflowVersionPagingResult: any[];
|
|
47
|
+
WorkflowVersionPaging: PagingOptions;
|
|
51
48
|
TextInputFilter: FilterItem;
|
|
52
49
|
WorkflowIdFilter: FilterItem;
|
|
53
50
|
IsFilterLoaded: boolean;
|
|
54
|
-
|
|
51
|
+
WFVersionPagingElement: PagingComponent<any>;
|
|
55
52
|
WorkflowVariableApiUrl: string;
|
|
53
|
+
WorkflowVariableForm: FormGroup;
|
|
56
54
|
WorkflowVariablesearchTextBox: TextBoxOptions;
|
|
55
|
+
WorkflowVariableTextInputFilter: FilterItem;
|
|
56
|
+
VerisonIdTextBox: TextBoxOptions;
|
|
57
|
+
VerisonIdTextInputFilter: FilterItem;
|
|
57
58
|
DataTypeList: any[];
|
|
58
|
-
WorkflowVariableForm: FormGroup;
|
|
59
|
-
WorkflowVariableshowFilter: boolean;
|
|
60
59
|
WorkflowVariablePagingResult: any[];
|
|
61
60
|
WorkflowVariablePaging: PagingOptions;
|
|
62
|
-
WorkflowVariableTextInputFilter: FilterItem;
|
|
63
61
|
IsWorkflowVariableFilterLoaded: boolean;
|
|
64
|
-
|
|
65
|
-
VerisonIdTextBox: TextBoxOptions;
|
|
66
|
-
VerisonIdTextInputFilter: FilterItem;
|
|
67
|
-
Pagetitle: string;
|
|
68
|
-
WorkflowVariablePagingViewElement: ElementRef;
|
|
62
|
+
WorkflowVariablePagingViewElement: PagingComponent<any>;
|
|
69
63
|
AddWorkflowVariableForm: FormGroup;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
64
|
+
AddWorkflowVariableFormOptions: FormOptions;
|
|
65
|
+
AddWFVariableName: MultiLingualTextBoxOptions;
|
|
66
|
+
AddWFVariableSysName: TextBoxOptions;
|
|
67
|
+
AddWFVariableDataType: DropdownOptions;
|
|
68
|
+
AddWFVariableConstant: ToggleSlideOptions;
|
|
69
|
+
addWFVariablesLookupOptions: any[];
|
|
70
|
+
showAddLookupsTable: boolean;
|
|
71
|
+
addLastLookupIndex: number;
|
|
77
72
|
EditWorkflowVariableForm: FormGroup;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
73
|
+
EditWorkflowVariableFormOptions: FormOptions;
|
|
74
|
+
EditWFVariableName: MultiLingualTextBoxOptions;
|
|
75
|
+
EditWFVariableSysName: TextBoxOptions;
|
|
76
|
+
EditWFVariableDataType: DropdownOptions;
|
|
77
|
+
EditWFVariableConstant: ToggleSlideOptions;
|
|
83
78
|
WorkflowVariableId: any;
|
|
84
|
-
|
|
79
|
+
editWFVariablesLookupOptions: any[];
|
|
80
|
+
showEditLookupsTable: boolean;
|
|
81
|
+
editLastLookupIndex: number;
|
|
85
82
|
ActivityApiUrl: string;
|
|
86
83
|
ActivityTypeList: any[];
|
|
87
84
|
workflowActivityForm: FormGroup;
|
|
88
|
-
|
|
85
|
+
WorkflowActivityIdTextBox: TextBoxOptions;
|
|
86
|
+
WorkflowActivityIdFilter: FilterItem;
|
|
89
87
|
ActivityPagingResult: any[];
|
|
90
88
|
ActivityPaging: PagingOptions;
|
|
91
89
|
IsworkflowActivityFilterLoaded: boolean;
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
workflowActivityDescriptionInArabic: TextBoxOptions;
|
|
101
|
-
workflowActivitySysName: TextBoxOptions;
|
|
102
|
-
ActivityType: DropdownOptions;
|
|
103
|
-
CloseworkflowActivityModal: ElementRef;
|
|
104
|
-
EditworkflowActivityForm: FormGroup;
|
|
105
|
-
EditworkflowActivityNameInEnglish: TextBoxOptions;
|
|
106
|
-
EditworkflowActivityNameInArabic: TextBoxOptions;
|
|
107
|
-
EditworkflowActivityDescriptionInEnglish: TextBoxOptions;
|
|
108
|
-
EditworkflowActivityDescriptionInArabic: TextBoxOptions;
|
|
109
|
-
EditworkflowActivitySysName: TextBoxOptions;
|
|
110
|
-
EditActivityType: DropdownOptions;
|
|
111
|
-
workflowActivityId: number;
|
|
112
|
-
CloseEditworkflowActivityModal: ElementRef;
|
|
113
|
-
ShowPageContent: boolean;
|
|
114
|
-
constructor(dataServices: DataSecretService, authService: AuthService, WorkflowService: WorkflowService, activatedRoute: ActivatedRoute, router: Router, WorkflowVariablesService: WorkflowVariablesService, workflowActivityService: WorkflowActivityService, pageInfoService: PageInfoService, modalService: NgbModal, environmentService: EnvironmentService, bbsfTranslateService: BBSFTranslateService, utilityService: UtilityService);
|
|
90
|
+
ActivityPagingViewElement: PagingComponent<any>;
|
|
91
|
+
addWorkflowVariabletoActivityForm: FormGroup;
|
|
92
|
+
addWorkflowVariabletoActivityFormOptions: FormOptions;
|
|
93
|
+
activityID: number;
|
|
94
|
+
activityWFVariableOptions: any[];
|
|
95
|
+
lastActivityWFVariableIndex: number;
|
|
96
|
+
activityVariablesList: any[];
|
|
97
|
+
constructor(authService: AuthService, WorkflowService: WorkflowService, activatedRoute: ActivatedRoute, WorkflowVariablesService: WorkflowVariablesService, workflowActivityService: WorkflowActivityService, pageInfoService: PageInfoService, modalService: NgbModal, environmentService: EnvironmentService, bbsfTranslateService: BBSFTranslateService, utilityService: UtilityService, requestHandlerService: RequestHandlerService);
|
|
115
98
|
ngOnInit(): Promise<void>;
|
|
116
99
|
getDetails(): void;
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
100
|
+
showPublishWFModal(id: string): void;
|
|
101
|
+
publishWorkFlow: (id: string) => Observable<any>;
|
|
102
|
+
publishWorkFlowOnSuccess: (result: any) => void;
|
|
103
|
+
initializeVersion(): void;
|
|
104
|
+
setWorkflowVersionListResult(result: any): void;
|
|
120
105
|
setWorkflowVariableListResult(result: any): void;
|
|
121
|
-
|
|
122
|
-
|
|
106
|
+
initializeWorkflowVariables(): void;
|
|
107
|
+
WFVariableTypeOnChange(type: number, isAdd: boolean): void;
|
|
108
|
+
initializeWFVariableLookupOptions(isAdd: boolean): (number | any[])[];
|
|
109
|
+
deleteWFVariableLookup(deletedLookup: any, isAdd: boolean): void;
|
|
123
110
|
showAddWorkflowVariableModal(AddWorkflowVariableModal: any): void;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
111
|
+
getAddWFVariableModel: () => any[];
|
|
112
|
+
getAddWFVariableFunction: (AddModel: any) => Observable<any>;
|
|
113
|
+
addWFVariableLookupinAddMode(): void;
|
|
114
|
+
showEditWorkflowVariableModal(WFVariableID: number, WFVariableIDEnc: any, EditWorkflowVariableModal: any): void;
|
|
115
|
+
getEditWFVariableModel: () => any[];
|
|
116
|
+
getEditWFVariableFunction: (EditModel: any) => Observable<any>;
|
|
117
|
+
setEditVariableLookups(existingLookups: any[]): void;
|
|
118
|
+
addWFVariableLookupinEditMode(): void;
|
|
127
119
|
setActivityListResult(result: any): void;
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
120
|
+
initializeWorkflowActivity(): void;
|
|
121
|
+
showAddWFVariablestoActivity(versionID: number, activityID: number, wfVariablesModal: any): void;
|
|
122
|
+
getaddWFVariabletoActivityModel: () => any[];
|
|
123
|
+
getaddWFVariabletoActivityFunction: (variablesModel: any) => Observable<any>;
|
|
124
|
+
deleteActivityWFVariable(deletedVariable: any): void;
|
|
125
|
+
addNewActivityWFVariable(): void;
|
|
126
|
+
ngOnDestroy(): void;
|
|
134
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
135
128
|
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "lib-tabs", never, {}, {}, never, never>;
|
|
136
129
|
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { ActivatedRoute } from '@angular/router';
|
|
4
|
+
import { FilterItem, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
|
+
import { AuthService, BBSFTranslateService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
6
|
+
import { PageInfoService } from '../../../../public-api';
|
|
7
|
+
import { WorkflowVersionService } from '../../shared/Services/WorkFlowVersionService.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class VersionInfoComponent implements OnInit {
|
|
10
|
+
private authService;
|
|
11
|
+
private workFlowVersionService;
|
|
12
|
+
private activatedRoute;
|
|
13
|
+
private pageInfoService;
|
|
14
|
+
private bbsfTranslateService;
|
|
15
|
+
utilityService: UtilityService;
|
|
16
|
+
private requestHandlerService;
|
|
17
|
+
detailsForm: FormGroup;
|
|
18
|
+
versionDetails: any;
|
|
19
|
+
versionID: string;
|
|
20
|
+
versionName: MultiLingualTextBoxOptions;
|
|
21
|
+
versionIsCurrent: TextBoxOptions;
|
|
22
|
+
versionIsPublished: TextBoxOptions;
|
|
23
|
+
showVersionDetails: boolean;
|
|
24
|
+
workFlowInstanceApiUrl: string;
|
|
25
|
+
workflowInstanceForm: FormGroup;
|
|
26
|
+
versionIdTextBox: TextBoxOptions;
|
|
27
|
+
versionIdFilter: FilterItem;
|
|
28
|
+
searchTextBox: TextBoxOptions;
|
|
29
|
+
textInputFilter: FilterItem;
|
|
30
|
+
WorkflowInstancePagingResult: any[];
|
|
31
|
+
WorkflowInstancePaging: PagingOptions;
|
|
32
|
+
isFilterLoaded: boolean;
|
|
33
|
+
constructor(authService: AuthService, workFlowVersionService: WorkflowVersionService, activatedRoute: ActivatedRoute, pageInfoService: PageInfoService, bbsfTranslateService: BBSFTranslateService, utilityService: UtilityService, requestHandlerService: RequestHandlerService);
|
|
34
|
+
ngOnInit(): Promise<void>;
|
|
35
|
+
getDetails(): void;
|
|
36
|
+
initializeInstances(): void;
|
|
37
|
+
setWorkflowInstancesListResult(result: any): void;
|
|
38
|
+
ngOnDestroy(): void;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VersionInfoComponent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VersionInfoComponent, "lib-version-info", never, {}, {}, never, never>;
|
|
41
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { FilterItem,
|
|
4
|
-
import { DataSecretService } from '../../shared/Services/data.service';
|
|
3
|
+
import { FilterItem, FormOptions, MultiLingualTextAreaOptions, MultiLingualTextBoxOptions, PagingOptions, TextBoxOptions } from '@bnsights/bbsf-controls';
|
|
5
4
|
import { WorkflowService } from '../../shared/Services/WorkflowService.service';
|
|
6
5
|
import { PageInfoService } from '../../../_metronic/core/services/page-info.service';
|
|
7
6
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
8
|
-
import { AuthService, BBSFTranslateService, EnvironmentService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
7
|
+
import { AuthService, BBSFTranslateService, EnvironmentService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
|
+
import { PagingComponent } from '@bnsights/bbsf-controls/lib/controls/Paging/Paging.component';
|
|
9
|
+
import { Observable } from 'rxjs';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class WorkflowComponent implements OnInit {
|
|
11
|
-
private dataServices;
|
|
12
12
|
private authService;
|
|
13
13
|
private WorkflowService;
|
|
14
14
|
private modalService;
|
|
@@ -16,44 +16,41 @@ export declare class WorkflowComponent implements OnInit {
|
|
|
16
16
|
private environmentService;
|
|
17
17
|
private bbsfTranslateService;
|
|
18
18
|
private pageInfoService;
|
|
19
|
+
private requestHandlerService;
|
|
20
|
+
ShowPageContent: boolean;
|
|
19
21
|
ApiUrl: string;
|
|
22
|
+
ProductionMode: boolean;
|
|
20
23
|
searchTextBox: TextBoxOptions;
|
|
21
24
|
WorkflowForm: FormGroup;
|
|
22
|
-
showFilter: boolean;
|
|
23
25
|
WorkflowPagingResult: any[];
|
|
26
|
+
clientSidePagingResult: any[];
|
|
24
27
|
WorkflowPaging: PagingOptions;
|
|
25
28
|
TextInputFilter: FilterItem;
|
|
26
29
|
IsFilterLoaded: boolean;
|
|
27
|
-
|
|
28
|
-
input: ElementRef;
|
|
30
|
+
pagingElement: PagingComponent<any>;
|
|
29
31
|
AddWorkflowForm: FormGroup;
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
DescriptionInArabic: TextAreaOptions;
|
|
35
|
-
CloseWorkflowModal: ElementRef;
|
|
32
|
+
AddWorkflowFormOptions: FormOptions;
|
|
33
|
+
AddName: MultiLingualTextBoxOptions;
|
|
34
|
+
AddDescription: MultiLingualTextAreaOptions;
|
|
35
|
+
AddSysName: TextBoxOptions;
|
|
36
36
|
EditWorkflowForm: FormGroup;
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
EditWorkflowFormOptions: FormOptions;
|
|
38
|
+
EditName: MultiLingualTextBoxOptions;
|
|
39
|
+
EditDescription: MultiLingualTextAreaOptions;
|
|
39
40
|
EditSysName: TextBoxOptions;
|
|
40
|
-
EditDescriptionInEnglish: TextAreaOptions;
|
|
41
|
-
EditDescriptionInArabic: TextAreaOptions;
|
|
42
41
|
WorkflowId: number;
|
|
43
|
-
|
|
44
|
-
language: string;
|
|
45
|
-
ShowPageContent: boolean;
|
|
46
|
-
constructor(dataServices: DataSecretService, authService: AuthService, WorkflowService: WorkflowService, modalService: NgbModal, utilityService: UtilityService, environmentService: EnvironmentService, bbsfTranslateService: BBSFTranslateService, pageInfoService: PageInfoService);
|
|
42
|
+
constructor(authService: AuthService, WorkflowService: WorkflowService, modalService: NgbModal, utilityService: UtilityService, environmentService: EnvironmentService, bbsfTranslateService: BBSFTranslateService, pageInfoService: PageInfoService, requestHandlerService: RequestHandlerService);
|
|
47
43
|
ngOnInit(): Promise<void>;
|
|
48
|
-
|
|
49
|
-
ReinitializeGetWorkflowPaging(): void;
|
|
50
|
-
UpdateWorkflowPaging(): void;
|
|
44
|
+
initializePage(): void;
|
|
51
45
|
setWorkflowListResult(result: any): void;
|
|
52
|
-
|
|
46
|
+
searchClientSide(searchValue: any): void;
|
|
53
47
|
showAddWorkflowModal(AddWorkflowModal: any): void;
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
48
|
+
getAddWorkflowModel: () => any[];
|
|
49
|
+
getAddWorkflowFunction: (AddModel: any) => Observable<any>;
|
|
50
|
+
showEditWorkflowModal(workFlowID: number, workFlowIDEnc: any, editWorkflowModal: any): void;
|
|
51
|
+
getEditWorkFlowModel: () => any[];
|
|
52
|
+
getEditWorkFlowFunction: (EditModel: any) => Observable<any>;
|
|
53
|
+
ngOnDestroy(): void;
|
|
57
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowComponent, never>;
|
|
58
55
|
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowComponent, "lib-workflow", never, {}, {}, never, never>;
|
|
59
56
|
}
|
|
@@ -2,22 +2,26 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./workflow/workflow.component";
|
|
3
3
|
import * as i2 from "./tabs/tabs.component";
|
|
4
4
|
import * as i3 from "./workflows.component";
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "@angular/
|
|
11
|
-
import * as i10 from "
|
|
12
|
-
import * as i11 from "
|
|
13
|
-
import * as i12 from "
|
|
14
|
-
import * as i13 from "
|
|
15
|
-
import * as i14 from "
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "
|
|
18
|
-
import * as i17 from "../
|
|
5
|
+
import * as i4 from "./version-info/version-info.component";
|
|
6
|
+
import * as i5 from "./instance-info/instance-info.component";
|
|
7
|
+
import * as i6 from "./activity/workflow-activity-add/workflow-activity-add.component";
|
|
8
|
+
import * as i7 from "./activity/workflow-activity-edit/workflow-activity-edit.component";
|
|
9
|
+
import * as i8 from "./workflows-routing.module";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
12
|
+
import * as i11 from "@angular/common/http";
|
|
13
|
+
import * as i12 from "../core/auth.module";
|
|
14
|
+
import * as i13 from "@angular/router";
|
|
15
|
+
import * as i14 from "ngx-clipboard";
|
|
16
|
+
import * as i15 from "ng-block-ui";
|
|
17
|
+
import * as i16 from "@bnsights/bbsf-controls";
|
|
18
|
+
import * as i17 from "../_layout/components/subheader/subheader.module";
|
|
19
|
+
import * as i18 from "@angular/material/menu";
|
|
20
|
+
import * as i19 from "@ng-bootstrap/ng-bootstrap";
|
|
21
|
+
import * as i20 from "ng-inline-svg";
|
|
22
|
+
import * as i21 from "../empty-data/empty-data.module";
|
|
19
23
|
export declare class WorkflowsModule {
|
|
20
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowsModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<WorkflowsModule, [typeof i1.WorkflowComponent, typeof i2.TabsComponent, typeof i3.WorkflowsComponent], [typeof
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<WorkflowsModule, [typeof i1.WorkflowComponent, typeof i2.TabsComponent, typeof i3.WorkflowsComponent, typeof i4.VersionInfoComponent, typeof i5.InstanceInfoComponent, typeof i6.WorkflowActivityAddComponent, typeof i7.WorkflowActivityEditComponent], [typeof i8.WorkflowsRoutingModule, typeof i9.CommonModule, typeof i10.ReactiveFormsModule, typeof i11.HttpClientModule, typeof i12.AuthModule, typeof i13.RouterModule, typeof i9.CommonModule, typeof i14.ClipboardModule, typeof i15.BlockUIModule, typeof i10.ReactiveFormsModule, typeof i10.FormsModule, typeof i16.BBSFControlsModule, typeof i17.SubheaderModule, typeof i18.MatMenuModule, typeof i19.NgbModule, typeof i20.InlineSVGModule, typeof i21.EmptyDataModule], never>;
|
|
22
26
|
static ɵinj: i0.ɵɵInjectorDeclaration<WorkflowsModule>;
|
|
23
27
|
}
|