@acorex/modules 19.1.10 → 19.1.12
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/fesm2022/{acorex-modules-form-template-management-category.entity-m0HWwBzu.mjs → acorex-modules-form-template-management-category.entity-D8XA8ZaF.mjs} +5 -5
- package/fesm2022/acorex-modules-form-template-management-category.entity-D8XA8ZaF.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-template-management-template.entity-EoPISAfV.mjs → acorex-modules-form-template-management-template.entity-CGj7d49H.mjs} +4 -4
- package/fesm2022/acorex-modules-form-template-management-template.entity-CGj7d49H.mjs.map +1 -0
- package/fesm2022/acorex-modules-form-template-management.mjs +3 -3
- package/fesm2022/acorex-modules-form-template-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-notification-management.mjs +65 -63
- package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-organization-managment-chart-design.page-eE-nOaMw.mjs +305 -0
- package/fesm2022/acorex-modules-organization-managment-chart-design.page-eE-nOaMw.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-managment-chart.entity-C_1rAJrs.mjs +257 -0
- package/fesm2022/acorex-modules-organization-managment-chart.entity-C_1rAJrs.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-managment-company.entity-5qijWD6i.mjs +199 -0
- package/fesm2022/acorex-modules-organization-managment-company.entity-5qijWD6i.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-managment-department.entity-BW18skLD.mjs +199 -0
- package/fesm2022/acorex-modules-organization-managment-department.entity-BW18skLD.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-managment-employment.entity-D28NBRYg.mjs +199 -0
- package/fesm2022/acorex-modules-organization-managment-employment.entity-D28NBRYg.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-managment-position.entity-DhndysSH.mjs +199 -0
- package/fesm2022/acorex-modules-organization-managment-position.entity-DhndysSH.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-managment.mjs +482 -0
- package/fesm2022/acorex-modules-organization-managment.mjs.map +1 -0
- package/fesm2022/acorex-modules-platform-management.mjs +396 -35
- package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-scheduler-job-management.mjs +36 -24
- package/fesm2022/acorex-modules-scheduler-job-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-security-management.mjs +269 -108
- package/fesm2022/acorex-modules-security-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-text-template-management.mjs +2 -7
- package/fesm2022/acorex-modules-text-template-management.mjs.map +1 -1
- package/organization-managment/README.md +3 -0
- package/organization-managment/index.d.ts +8 -0
- package/organization-managment/lib/const.d.ts +38 -0
- package/organization-managment/lib/entities/chart/chart.entity.d.ts +3 -0
- package/organization-managment/lib/entities/chart/chart.module.d.ts +6 -0
- package/organization-managment/lib/entities/chart/chart.service.d.ts +10 -0
- package/organization-managment/lib/entities/chart/chart.types.d.ts +6 -0
- package/organization-managment/lib/entities/company/company.entity.d.ts +3 -0
- package/organization-managment/lib/entities/company/company.module.d.ts +6 -0
- package/organization-managment/lib/entities/company/company.service.d.ts +10 -0
- package/organization-managment/lib/entities/company/company.types.d.ts +4 -0
- package/organization-managment/lib/entities/department/department.entity.d.ts +3 -0
- package/organization-managment/lib/entities/department/department.module.d.ts +6 -0
- package/organization-managment/lib/entities/department/department.service.d.ts +10 -0
- package/organization-managment/lib/entities/department/department.types.d.ts +4 -0
- package/organization-managment/lib/entities/employment/employment.entity.d.ts +3 -0
- package/organization-managment/lib/entities/employment/employment.module.d.ts +6 -0
- package/organization-managment/lib/entities/employment/employment.service.d.ts +10 -0
- package/organization-managment/lib/entities/employment/employment.types.d.ts +4 -0
- package/organization-managment/lib/entities/index.d.ts +5 -0
- package/organization-managment/lib/entities/position/position.entity.d.ts +3 -0
- package/organization-managment/lib/entities/position/position.module.d.ts +6 -0
- package/organization-managment/lib/entities/position/position.service.d.ts +10 -0
- package/organization-managment/lib/entities/position/position.types.d.ts +4 -0
- package/organization-managment/lib/entity.provider.d.ts +10 -0
- package/organization-managment/lib/menu.provider.d.ts +5 -0
- package/organization-managment/lib/organization-managment.module.d.ts +13 -0
- package/organization-managment/lib/pages/chart-design/add-item/add-item.component.d.ts +14 -0
- package/organization-managment/lib/pages/chart-design/chart-design.page.d.ts +26 -0
- package/organization-managment/lib/pages/chart-design/chart-design.service.d.ts +23 -0
- package/organization-managment/lib/pages/chart-design/chart.type.d.ts +9 -0
- package/organization-managment/lib/setting.provider.d.ts +4 -0
- package/organization-managment/lib/workflows/chart.workflow.d.ts +12 -0
- package/package.json +12 -8
- package/platform-management/index.d.ts +0 -1
- package/platform-management/lib/const.d.ts +27 -7
- package/platform-management/lib/entities/app-version/app-version.entity.d.ts +3 -0
- package/platform-management/lib/entities/app-version/app-version.service.d.ts +10 -0
- package/platform-management/lib/entities/app-version/app-version.types.d.ts +6 -0
- package/platform-management/lib/entities/app-version/index.d.ts +3 -0
- package/platform-management/lib/{global-variables → entities/global-variable}/index.d.ts +1 -2
- package/platform-management/lib/entities/index.d.ts +2 -0
- package/platform-management/lib/entity.provider.d.ts +10 -0
- package/scheduler-job-management/lib/const.d.ts +17 -6
- package/security-management/index.d.ts +1 -0
- package/security-management/lib/entities/index.d.ts +3 -0
- package/fesm2022/acorex-modules-form-template-management-category.entity-m0HWwBzu.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-template-management-template.entity-EoPISAfV.mjs.map +0 -1
- package/platform-management/lib/global-variables/entity.loader.d.ts +0 -9
- /package/platform-management/lib/{global-variables/entities → entities/global-variable}/global-variable.entity.d.ts +0 -0
- /package/platform-management/lib/{global-variables → entities/global-variable}/global-variables.service.d.ts +0 -0
- /package/platform-management/lib/{global-variables → entities/global-variable}/global-variables.types.d.ts +0 -0
|
@@ -0,0 +1,482 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Injectable, NgModule, inject, Injector } from '@angular/core';
|
|
3
|
+
import { AXMEntityCrudServiceImpl, AXPWorkflowNavigateAction, AXP_SETTING_DEFINITION_PROVIDER, AXP_MENU_PROVIDER } from '@acorex/platform/common';
|
|
4
|
+
import { AXPEntityService, AXP_ENTITY_DEFINITION_LOADER } from '@acorex/platform/layout/entity';
|
|
5
|
+
import { AXPRootLayoutComponent } from '@acorex/platform/themes/default';
|
|
6
|
+
import * as i1 from '@acorex/platform/workflow';
|
|
7
|
+
import { AXPWorkflowAction, AXPWorkflowModule } from '@acorex/platform/workflow';
|
|
8
|
+
import { CommonModule } from '@angular/common';
|
|
9
|
+
import { Router, ROUTES } from '@angular/router';
|
|
10
|
+
|
|
11
|
+
/*export const AXMOrganizationManagementModuleConst = {
|
|
12
|
+
moduleName: 'OrganizationManagement',
|
|
13
|
+
moduleRoute: 'organization-management',
|
|
14
|
+
i18n: 'organization-management',
|
|
15
|
+
companyEntity: 'pCompanies',
|
|
16
|
+
departmentEntity: 'pDepartments',
|
|
17
|
+
employmentEntity: 'pEmployments',
|
|
18
|
+
positionEntity: 'pPositions',
|
|
19
|
+
chartEntity: 'pCharts',
|
|
20
|
+
title: 'Title',
|
|
21
|
+
};*/
|
|
22
|
+
const config = {
|
|
23
|
+
i18n: 'organization-management',
|
|
24
|
+
};
|
|
25
|
+
const RootConfig = {
|
|
26
|
+
config,
|
|
27
|
+
module: {
|
|
28
|
+
route: 'organization-management',
|
|
29
|
+
name: 'OrganizationManagement',
|
|
30
|
+
title: `t('module-name', {scope:"${config.i18n}"})`,
|
|
31
|
+
icon: 'fa-solid fa-sitemap',
|
|
32
|
+
},
|
|
33
|
+
entities: {
|
|
34
|
+
company: {
|
|
35
|
+
name: 'Company',
|
|
36
|
+
title: `t("company", {scope:"${config.i18n}"})`,
|
|
37
|
+
icon: 'fa-regular fa-building',
|
|
38
|
+
},
|
|
39
|
+
department: {
|
|
40
|
+
name: 'Department',
|
|
41
|
+
title: `t("department",{scope:"${config.i18n}"})`,
|
|
42
|
+
icon: 'fa-solid fa-building-columns',
|
|
43
|
+
},
|
|
44
|
+
employment: {
|
|
45
|
+
name: 'Employment',
|
|
46
|
+
title: `t("employment",{scope:"${config.i18n}"})`,
|
|
47
|
+
icon: 'fa-solid fa-building-user',
|
|
48
|
+
},
|
|
49
|
+
position: {
|
|
50
|
+
name: 'Position',
|
|
51
|
+
title: `t("position",{scope:"${config.i18n}"})`,
|
|
52
|
+
icon: 'fa-solid fa-crosshairs',
|
|
53
|
+
},
|
|
54
|
+
chart: {
|
|
55
|
+
name: 'Chart',
|
|
56
|
+
title: `t("chart",{scope:"${config.i18n}"})`,
|
|
57
|
+
icon: 'fa-solid fa-building-columns',
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
class AXMOrganizationManagementChartEntityService extends AXMEntityCrudServiceImpl {
|
|
63
|
+
}
|
|
64
|
+
class AXMOrganizationManagementChartEntityServiceImpl extends AXMOrganizationManagementChartEntityService {
|
|
65
|
+
constructor() {
|
|
66
|
+
super(`${RootConfig.module.name}.${RootConfig.entities.chart}`);
|
|
67
|
+
}
|
|
68
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementChartEntityServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
69
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementChartEntityServiceImpl }); }
|
|
70
|
+
}
|
|
71
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementChartEntityServiceImpl, decorators: [{
|
|
72
|
+
type: Injectable
|
|
73
|
+
}], ctorParameters: () => [] });
|
|
74
|
+
|
|
75
|
+
class AXMOrganizationManagementChartEntityModule {
|
|
76
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementChartEntityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
77
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementChartEntityModule }); }
|
|
78
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementChartEntityModule, providers: [
|
|
79
|
+
{
|
|
80
|
+
provide: AXMOrganizationManagementChartEntityService,
|
|
81
|
+
useClass: AXMOrganizationManagementChartEntityServiceImpl,
|
|
82
|
+
},
|
|
83
|
+
] }); }
|
|
84
|
+
}
|
|
85
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementChartEntityModule, decorators: [{
|
|
86
|
+
type: NgModule,
|
|
87
|
+
args: [{
|
|
88
|
+
imports: [],
|
|
89
|
+
exports: [],
|
|
90
|
+
declarations: [],
|
|
91
|
+
providers: [
|
|
92
|
+
{
|
|
93
|
+
provide: AXMOrganizationManagementChartEntityService,
|
|
94
|
+
useClass: AXMOrganizationManagementChartEntityServiceImpl,
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
}]
|
|
98
|
+
}] });
|
|
99
|
+
|
|
100
|
+
class AXMOrganizationManagementCompanyEntityService extends AXMEntityCrudServiceImpl {
|
|
101
|
+
}
|
|
102
|
+
class AXMOrganizationManagementCompanyEntityServiceImpl extends AXMOrganizationManagementCompanyEntityService {
|
|
103
|
+
constructor() {
|
|
104
|
+
super(`${RootConfig.module.name}.${RootConfig.entities.company}`);
|
|
105
|
+
}
|
|
106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementCompanyEntityServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
107
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementCompanyEntityServiceImpl }); }
|
|
108
|
+
}
|
|
109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementCompanyEntityServiceImpl, decorators: [{
|
|
110
|
+
type: Injectable
|
|
111
|
+
}], ctorParameters: () => [] });
|
|
112
|
+
|
|
113
|
+
class AXMOrganizationManagementCompanyEntityModule {
|
|
114
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementCompanyEntityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
115
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementCompanyEntityModule }); }
|
|
116
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementCompanyEntityModule, providers: [
|
|
117
|
+
{
|
|
118
|
+
provide: AXMOrganizationManagementCompanyEntityService,
|
|
119
|
+
useClass: AXMOrganizationManagementCompanyEntityServiceImpl,
|
|
120
|
+
},
|
|
121
|
+
] }); }
|
|
122
|
+
}
|
|
123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementCompanyEntityModule, decorators: [{
|
|
124
|
+
type: NgModule,
|
|
125
|
+
args: [{
|
|
126
|
+
imports: [],
|
|
127
|
+
exports: [],
|
|
128
|
+
declarations: [],
|
|
129
|
+
providers: [
|
|
130
|
+
{
|
|
131
|
+
provide: AXMOrganizationManagementCompanyEntityService,
|
|
132
|
+
useClass: AXMOrganizationManagementCompanyEntityServiceImpl,
|
|
133
|
+
},
|
|
134
|
+
],
|
|
135
|
+
}]
|
|
136
|
+
}] });
|
|
137
|
+
|
|
138
|
+
class AXMOrganizationManagementDepartmentEntityService extends AXMEntityCrudServiceImpl {
|
|
139
|
+
}
|
|
140
|
+
class AXMOrganizationManagementDepartmentEntityServiceImpl extends AXMOrganizationManagementDepartmentEntityService {
|
|
141
|
+
constructor() {
|
|
142
|
+
super(`${RootConfig.module.name}.${RootConfig.entities.department}`);
|
|
143
|
+
}
|
|
144
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementDepartmentEntityServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
145
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementDepartmentEntityServiceImpl }); }
|
|
146
|
+
}
|
|
147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementDepartmentEntityServiceImpl, decorators: [{
|
|
148
|
+
type: Injectable
|
|
149
|
+
}], ctorParameters: () => [] });
|
|
150
|
+
|
|
151
|
+
class AXMOrganizationManagementDepartmentEntityModule {
|
|
152
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementDepartmentEntityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
153
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementDepartmentEntityModule }); }
|
|
154
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementDepartmentEntityModule, providers: [
|
|
155
|
+
{
|
|
156
|
+
provide: AXMOrganizationManagementDepartmentEntityService,
|
|
157
|
+
useClass: AXMOrganizationManagementDepartmentEntityServiceImpl,
|
|
158
|
+
},
|
|
159
|
+
] }); }
|
|
160
|
+
}
|
|
161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementDepartmentEntityModule, decorators: [{
|
|
162
|
+
type: NgModule,
|
|
163
|
+
args: [{
|
|
164
|
+
imports: [],
|
|
165
|
+
exports: [],
|
|
166
|
+
declarations: [],
|
|
167
|
+
providers: [
|
|
168
|
+
{
|
|
169
|
+
provide: AXMOrganizationManagementDepartmentEntityService,
|
|
170
|
+
useClass: AXMOrganizationManagementDepartmentEntityServiceImpl,
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
}]
|
|
174
|
+
}] });
|
|
175
|
+
|
|
176
|
+
class AXMOrganizationManagementEmploymentEntityService extends AXMEntityCrudServiceImpl {
|
|
177
|
+
}
|
|
178
|
+
class AXMOrganizationManagementEmploymentEntityServiceImpl extends AXMOrganizationManagementEmploymentEntityService {
|
|
179
|
+
constructor() {
|
|
180
|
+
super(`${RootConfig.module.name}.${RootConfig.entities.employment}`);
|
|
181
|
+
}
|
|
182
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementEmploymentEntityServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
183
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementEmploymentEntityServiceImpl }); }
|
|
184
|
+
}
|
|
185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementEmploymentEntityServiceImpl, decorators: [{
|
|
186
|
+
type: Injectable
|
|
187
|
+
}], ctorParameters: () => [] });
|
|
188
|
+
|
|
189
|
+
class AXMOrganizationManagementEmploymentEntityModule {
|
|
190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementEmploymentEntityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
191
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementEmploymentEntityModule }); }
|
|
192
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementEmploymentEntityModule, providers: [
|
|
193
|
+
{
|
|
194
|
+
provide: AXMOrganizationManagementEmploymentEntityService,
|
|
195
|
+
useClass: AXMOrganizationManagementEmploymentEntityServiceImpl,
|
|
196
|
+
},
|
|
197
|
+
] }); }
|
|
198
|
+
}
|
|
199
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementEmploymentEntityModule, decorators: [{
|
|
200
|
+
type: NgModule,
|
|
201
|
+
args: [{
|
|
202
|
+
imports: [],
|
|
203
|
+
exports: [],
|
|
204
|
+
declarations: [],
|
|
205
|
+
providers: [
|
|
206
|
+
{
|
|
207
|
+
provide: AXMOrganizationManagementEmploymentEntityService,
|
|
208
|
+
useClass: AXMOrganizationManagementEmploymentEntityServiceImpl,
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
}]
|
|
212
|
+
}] });
|
|
213
|
+
|
|
214
|
+
class AXMOrganizationManagementPositionEntityService extends AXMEntityCrudServiceImpl {
|
|
215
|
+
}
|
|
216
|
+
class AXMOrganizationManagementPositionEntityServiceImpl extends AXMOrganizationManagementPositionEntityService {
|
|
217
|
+
constructor() {
|
|
218
|
+
super(`${RootConfig.module.name}.${RootConfig.entities.position}`);
|
|
219
|
+
}
|
|
220
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementPositionEntityServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
221
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementPositionEntityServiceImpl }); }
|
|
222
|
+
}
|
|
223
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementPositionEntityServiceImpl, decorators: [{
|
|
224
|
+
type: Injectable
|
|
225
|
+
}], ctorParameters: () => [] });
|
|
226
|
+
|
|
227
|
+
class AXMOrganizationManagementPositionEntityModule {
|
|
228
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementPositionEntityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
229
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementPositionEntityModule }); }
|
|
230
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementPositionEntityModule, providers: [
|
|
231
|
+
{
|
|
232
|
+
provide: AXMOrganizationManagementPositionEntityService,
|
|
233
|
+
useClass: AXMOrganizationManagementPositionEntityServiceImpl,
|
|
234
|
+
},
|
|
235
|
+
] }); }
|
|
236
|
+
}
|
|
237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagementPositionEntityModule, decorators: [{
|
|
238
|
+
type: NgModule,
|
|
239
|
+
args: [{
|
|
240
|
+
imports: [],
|
|
241
|
+
exports: [],
|
|
242
|
+
declarations: [],
|
|
243
|
+
providers: [
|
|
244
|
+
{
|
|
245
|
+
provide: AXMOrganizationManagementPositionEntityService,
|
|
246
|
+
useClass: AXMOrganizationManagementPositionEntityServiceImpl,
|
|
247
|
+
},
|
|
248
|
+
],
|
|
249
|
+
}]
|
|
250
|
+
}] });
|
|
251
|
+
|
|
252
|
+
class AXMOrganizationModuleEntityProvider {
|
|
253
|
+
constructor() {
|
|
254
|
+
this.injector = inject(Injector);
|
|
255
|
+
}
|
|
256
|
+
preload() {
|
|
257
|
+
const module = RootConfig.module.name;
|
|
258
|
+
return Array.from(Object.values(RootConfig.entities)).map((entity) => ({
|
|
259
|
+
module: module,
|
|
260
|
+
entity: entity.name,
|
|
261
|
+
}));
|
|
262
|
+
}
|
|
263
|
+
async get(moduleName, entityName) {
|
|
264
|
+
if (moduleName == RootConfig.module.name) {
|
|
265
|
+
switch (entityName) {
|
|
266
|
+
case RootConfig.entities.company.name:
|
|
267
|
+
return (await import('./acorex-modules-organization-managment-company.entity-5qijWD6i.mjs')).factory(this.injector);
|
|
268
|
+
case RootConfig.entities.department.name:
|
|
269
|
+
return (await import('./acorex-modules-organization-managment-department.entity-BW18skLD.mjs')).factory(this.injector);
|
|
270
|
+
case RootConfig.entities.employment.name:
|
|
271
|
+
return (await import('./acorex-modules-organization-managment-employment.entity-D28NBRYg.mjs')).factory(this.injector);
|
|
272
|
+
case RootConfig.entities.position.name:
|
|
273
|
+
return (await import('./acorex-modules-organization-managment-position.entity-DhndysSH.mjs')).factory(this.injector);
|
|
274
|
+
case RootConfig.entities.chart.name:
|
|
275
|
+
return (await import('./acorex-modules-organization-managment-chart.entity-C_1rAJrs.mjs')).factory(this.injector);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
return null;
|
|
279
|
+
}
|
|
280
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationModuleEntityProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
281
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationModuleEntityProvider }); }
|
|
282
|
+
}
|
|
283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationModuleEntityProvider, decorators: [{
|
|
284
|
+
type: Injectable
|
|
285
|
+
}] });
|
|
286
|
+
|
|
287
|
+
class AXMMenuProvider {
|
|
288
|
+
constructor() {
|
|
289
|
+
this.entityService = inject(AXPEntityService);
|
|
290
|
+
}
|
|
291
|
+
async provide(context) {
|
|
292
|
+
const scope = RootConfig.config.i18n;
|
|
293
|
+
const module = RootConfig.module;
|
|
294
|
+
context.addItems([
|
|
295
|
+
{
|
|
296
|
+
priority: 9001,
|
|
297
|
+
text: `t('module-name', {scope:"${scope}"})`,
|
|
298
|
+
icon: 'fa-solid fa-file-invoice',
|
|
299
|
+
children: [
|
|
300
|
+
{
|
|
301
|
+
text: `t("companies", {scope:"${scope}"})`,
|
|
302
|
+
path: this.entityService.createPath(module.name, RootConfig.entities.company.name),
|
|
303
|
+
priority: 1,
|
|
304
|
+
icon: RootConfig.entities.company.icon,
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
text: `t('departments', {scope:"${scope}"})`,
|
|
308
|
+
path: this.entityService.createPath(module.name, RootConfig.entities.department.name),
|
|
309
|
+
priority: 2,
|
|
310
|
+
icon: RootConfig.entities.department.icon,
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
text: `t('employments', {scope:"${scope}"})`,
|
|
314
|
+
path: this.entityService.createPath(module.name, RootConfig.entities.employment.name),
|
|
315
|
+
priority: 3,
|
|
316
|
+
icon: RootConfig.entities.employment.icon,
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
text: `t('positions', {scope:"${scope}"})`,
|
|
320
|
+
path: this.entityService.createPath(module.name, RootConfig.entities.position.name),
|
|
321
|
+
priority: 4,
|
|
322
|
+
icon: RootConfig.entities.position.icon,
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
text: `t('charts', {scope:"${scope}"})`,
|
|
326
|
+
path: this.entityService.createPath(module.name, RootConfig.entities.chart.name),
|
|
327
|
+
priority: 5,
|
|
328
|
+
icon: RootConfig.entities.chart.icon,
|
|
329
|
+
},
|
|
330
|
+
],
|
|
331
|
+
},
|
|
332
|
+
]);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
class AXMSettingProvider {
|
|
337
|
+
async provide(context) { }
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
const AXMViewChartWorkflow = {
|
|
341
|
+
startStepId: 'view-chart',
|
|
342
|
+
steps: {
|
|
343
|
+
'view-chart': {
|
|
344
|
+
action: 'navigate-url',
|
|
345
|
+
input: {
|
|
346
|
+
url: 'chart/designer',
|
|
347
|
+
data: '{{context.getVariable("data")}}',
|
|
348
|
+
},
|
|
349
|
+
},
|
|
350
|
+
},
|
|
351
|
+
};
|
|
352
|
+
class AXMOpenChartViewAction extends AXPWorkflowAction {
|
|
353
|
+
constructor() {
|
|
354
|
+
super(...arguments);
|
|
355
|
+
this.router = inject(Router);
|
|
356
|
+
this.navigation = inject(AXPWorkflowNavigateAction);
|
|
357
|
+
}
|
|
358
|
+
async execute(context) {
|
|
359
|
+
const { id } = context.getVariable('data');
|
|
360
|
+
const newPayload = {
|
|
361
|
+
commands: `chart/designer`,
|
|
362
|
+
extras: { state: { id: id } },
|
|
363
|
+
};
|
|
364
|
+
context.setVariable('payload', newPayload);
|
|
365
|
+
this.navigation.execute(context);
|
|
366
|
+
}
|
|
367
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOpenChartViewAction, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
368
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOpenChartViewAction }); }
|
|
369
|
+
}
|
|
370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOpenChartViewAction, decorators: [{
|
|
371
|
+
type: Injectable
|
|
372
|
+
}] });
|
|
373
|
+
|
|
374
|
+
function routesFacory() {
|
|
375
|
+
const routes = [
|
|
376
|
+
{
|
|
377
|
+
component: AXPRootLayoutComponent,
|
|
378
|
+
path: 'chart',
|
|
379
|
+
children: [
|
|
380
|
+
{
|
|
381
|
+
path: 'designer',
|
|
382
|
+
loadComponent: () => import('./acorex-modules-organization-managment-chart-design.page-eE-nOaMw.mjs').then((c) => c.AXMChartDesignPage),
|
|
383
|
+
},
|
|
384
|
+
],
|
|
385
|
+
},
|
|
386
|
+
];
|
|
387
|
+
return routes;
|
|
388
|
+
}
|
|
389
|
+
class AXMOrganizationManagmentModule {
|
|
390
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagmentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
391
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagmentModule, imports: [CommonModule,
|
|
392
|
+
AXMOrganizationManagementCompanyEntityModule,
|
|
393
|
+
AXMOrganizationManagementDepartmentEntityModule,
|
|
394
|
+
AXMOrganizationManagementEmploymentEntityModule,
|
|
395
|
+
AXMOrganizationManagementPositionEntityModule,
|
|
396
|
+
AXMOrganizationManagementChartEntityModule, i1.AXPWorkflowModule] }); }
|
|
397
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagmentModule, providers: [
|
|
398
|
+
{
|
|
399
|
+
provide: AXP_SETTING_DEFINITION_PROVIDER,
|
|
400
|
+
useClass: AXMSettingProvider,
|
|
401
|
+
multi: true,
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
provide: AXP_ENTITY_DEFINITION_LOADER,
|
|
405
|
+
useClass: AXMOrganizationModuleEntityProvider,
|
|
406
|
+
multi: true,
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
provide: AXP_MENU_PROVIDER,
|
|
410
|
+
useClass: AXMMenuProvider,
|
|
411
|
+
multi: true,
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
provide: ROUTES,
|
|
415
|
+
multi: true,
|
|
416
|
+
useFactory: routesFacory,
|
|
417
|
+
},
|
|
418
|
+
], imports: [CommonModule,
|
|
419
|
+
AXMOrganizationManagementCompanyEntityModule,
|
|
420
|
+
AXMOrganizationManagementDepartmentEntityModule,
|
|
421
|
+
AXMOrganizationManagementEmploymentEntityModule,
|
|
422
|
+
AXMOrganizationManagementPositionEntityModule,
|
|
423
|
+
AXMOrganizationManagementChartEntityModule,
|
|
424
|
+
AXPWorkflowModule.forChild({
|
|
425
|
+
actions: {
|
|
426
|
+
'navigate-url': AXMOpenChartViewAction,
|
|
427
|
+
},
|
|
428
|
+
workflows: {
|
|
429
|
+
'view-chart': AXMViewChartWorkflow,
|
|
430
|
+
},
|
|
431
|
+
})] }); }
|
|
432
|
+
}
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.3", ngImport: i0, type: AXMOrganizationManagmentModule, decorators: [{
|
|
434
|
+
type: NgModule,
|
|
435
|
+
args: [{
|
|
436
|
+
imports: [
|
|
437
|
+
CommonModule,
|
|
438
|
+
AXMOrganizationManagementCompanyEntityModule,
|
|
439
|
+
AXMOrganizationManagementDepartmentEntityModule,
|
|
440
|
+
AXMOrganizationManagementEmploymentEntityModule,
|
|
441
|
+
AXMOrganizationManagementPositionEntityModule,
|
|
442
|
+
AXMOrganizationManagementChartEntityModule,
|
|
443
|
+
AXPWorkflowModule.forChild({
|
|
444
|
+
actions: {
|
|
445
|
+
'navigate-url': AXMOpenChartViewAction,
|
|
446
|
+
},
|
|
447
|
+
workflows: {
|
|
448
|
+
'view-chart': AXMViewChartWorkflow,
|
|
449
|
+
},
|
|
450
|
+
}),
|
|
451
|
+
],
|
|
452
|
+
providers: [
|
|
453
|
+
{
|
|
454
|
+
provide: AXP_SETTING_DEFINITION_PROVIDER,
|
|
455
|
+
useClass: AXMSettingProvider,
|
|
456
|
+
multi: true,
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
provide: AXP_ENTITY_DEFINITION_LOADER,
|
|
460
|
+
useClass: AXMOrganizationModuleEntityProvider,
|
|
461
|
+
multi: true,
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
provide: AXP_MENU_PROVIDER,
|
|
465
|
+
useClass: AXMMenuProvider,
|
|
466
|
+
multi: true,
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
provide: ROUTES,
|
|
470
|
+
multi: true,
|
|
471
|
+
useFactory: routesFacory,
|
|
472
|
+
},
|
|
473
|
+
],
|
|
474
|
+
}]
|
|
475
|
+
}] });
|
|
476
|
+
|
|
477
|
+
/**
|
|
478
|
+
* Generated bundle index. Do not edit.
|
|
479
|
+
*/
|
|
480
|
+
|
|
481
|
+
export { AXMOrganizationManagementChartEntityModule, AXMOrganizationManagementChartEntityService, AXMOrganizationManagementChartEntityServiceImpl, AXMOrganizationManagementCompanyEntityModule, AXMOrganizationManagementCompanyEntityService, AXMOrganizationManagementCompanyEntityServiceImpl, AXMOrganizationManagementDepartmentEntityModule, AXMOrganizationManagementDepartmentEntityService, AXMOrganizationManagementDepartmentEntityServiceImpl, AXMOrganizationManagementEmploymentEntityModule, AXMOrganizationManagementEmploymentEntityService, AXMOrganizationManagementEmploymentEntityServiceImpl, AXMOrganizationManagementPositionEntityModule, AXMOrganizationManagementPositionEntityService, AXMOrganizationManagementPositionEntityServiceImpl, AXMOrganizationManagmentModule, RootConfig };
|
|
482
|
+
//# sourceMappingURL=acorex-modules-organization-managment.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acorex-modules-organization-managment.mjs","sources":["../../../../libs/modules/organization-managment/src/lib/const.ts","../../../../libs/modules/organization-managment/src/lib/entities/chart/chart.service.ts","../../../../libs/modules/organization-managment/src/lib/entities/chart/chart.module.ts","../../../../libs/modules/organization-managment/src/lib/entities/company/company.service.ts","../../../../libs/modules/organization-managment/src/lib/entities/company/company.module.ts","../../../../libs/modules/organization-managment/src/lib/entities/department/department.service.ts","../../../../libs/modules/organization-managment/src/lib/entities/department/department.module.ts","../../../../libs/modules/organization-managment/src/lib/entities/employment/employment.service.ts","../../../../libs/modules/organization-managment/src/lib/entities/employment/employment.module.ts","../../../../libs/modules/organization-managment/src/lib/entities/position/position.service.ts","../../../../libs/modules/organization-managment/src/lib/entities/position/position.module.ts","../../../../libs/modules/organization-managment/src/lib/entity.provider.ts","../../../../libs/modules/organization-managment/src/lib/menu.provider.ts","../../../../libs/modules/organization-managment/src/lib/setting.provider.ts","../../../../libs/modules/organization-managment/src/lib/workflows/chart.workflow.ts","../../../../libs/modules/organization-managment/src/lib/organization-managment.module.ts","../../../../libs/modules/organization-managment/src/acorex-modules-organization-managment.ts"],"sourcesContent":["/*export const AXMOrganizationManagementModuleConst = {\n moduleName: 'OrganizationManagement',\n moduleRoute: 'organization-management',\n i18n: 'organization-management',\n companyEntity: 'pCompanies',\n departmentEntity: 'pDepartments',\n employmentEntity: 'pEmployments',\n positionEntity: 'pPositions',\n chartEntity: 'pCharts',\n title: 'Title',\n};*/\nconst config = {\n i18n: 'organization-management',\n};\nexport const RootConfig = {\n config,\n module: {\n route: 'organization-management',\n name: 'OrganizationManagement',\n title: `t('module-name', {scope:\"${config.i18n}\"})`,\n icon: 'fa-solid fa-sitemap',\n },\n entities: {\n company: {\n name: 'Company',\n title: `t(\"company\", {scope:\"${config.i18n}\"})`,\n icon: 'fa-regular fa-building',\n },\n department: {\n name: 'Department',\n title: `t(\"department\",{scope:\"${config.i18n}\"})`,\n icon: 'fa-solid fa-building-columns',\n },\n employment: {\n name: 'Employment',\n title: `t(\"employment\",{scope:\"${config.i18n}\"})`,\n icon: 'fa-solid fa-building-user',\n },\n position: {\n name: 'Position',\n title: `t(\"position\",{scope:\"${config.i18n}\"})`,\n icon: 'fa-solid fa-crosshairs',\n },\n chart: {\n name: 'Chart',\n title: `t(\"chart\",{scope:\"${config.i18n}\"})`,\n icon: 'fa-solid fa-building-columns',\n },\n },\n};\n","import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';\nimport { Injectable } from '@angular/core';\nimport { RootConfig } from '../../const';\nimport { AXMOrganizationManagementChartEntityModel } from './chart.types';\nexport abstract class AXMOrganizationManagementChartEntityService extends AXMEntityCrudServiceImpl<\n string,\n AXMOrganizationManagementChartEntityModel\n> {}\n\n@Injectable()\nexport class AXMOrganizationManagementChartEntityServiceImpl extends AXMOrganizationManagementChartEntityService {\n constructor() {\n super(`${RootConfig.module.name}.${RootConfig.entities.chart}`);\n }\n}\n","import { NgModule } from '@angular/core';\nimport {\n AXMOrganizationManagementChartEntityService,\n AXMOrganizationManagementChartEntityServiceImpl,\n} from './chart.service';\n\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n providers: [\n {\n provide: AXMOrganizationManagementChartEntityService,\n useClass: AXMOrganizationManagementChartEntityServiceImpl,\n },\n ],\n})\nexport class AXMOrganizationManagementChartEntityModule {}\n","import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';\nimport { Injectable } from '@angular/core';\nimport { RootConfig } from '../../const';\nimport { AXMOrganizationManagementCompanyEntityModel } from './company.types';\n\nexport abstract class AXMOrganizationManagementCompanyEntityService extends AXMEntityCrudServiceImpl<\n string,\n AXMOrganizationManagementCompanyEntityModel\n> {}\n\n@Injectable()\nexport class AXMOrganizationManagementCompanyEntityServiceImpl extends AXMOrganizationManagementCompanyEntityService {\n constructor() {\n super(`${RootConfig.module.name}.${RootConfig.entities.company}`);\n }\n}\n","import { NgModule } from '@angular/core';\nimport {\n AXMOrganizationManagementCompanyEntityService,\n AXMOrganizationManagementCompanyEntityServiceImpl,\n} from './company.service';\n\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n providers: [\n {\n provide: AXMOrganizationManagementCompanyEntityService,\n useClass: AXMOrganizationManagementCompanyEntityServiceImpl,\n },\n ],\n})\nexport class AXMOrganizationManagementCompanyEntityModule {}\n","import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';\nimport { Injectable } from '@angular/core';\nimport { RootConfig } from '../../const';\nimport { AXMOrganizationManagementDepartmentEntityModel } from './department.types';\n\nexport abstract class AXMOrganizationManagementDepartmentEntityService extends AXMEntityCrudServiceImpl<\n string,\n AXMOrganizationManagementDepartmentEntityModel\n> {}\n\n@Injectable()\nexport class AXMOrganizationManagementDepartmentEntityServiceImpl extends AXMOrganizationManagementDepartmentEntityService {\n constructor() {\n super(`${RootConfig.module.name}.${RootConfig.entities.department}`);\n }\n}\n","import { NgModule } from '@angular/core';\nimport {\n AXMOrganizationManagementDepartmentEntityService,\n AXMOrganizationManagementDepartmentEntityServiceImpl,\n} from './department.service';\n\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n providers: [\n {\n provide: AXMOrganizationManagementDepartmentEntityService,\n useClass: AXMOrganizationManagementDepartmentEntityServiceImpl,\n },\n ],\n})\nexport class AXMOrganizationManagementDepartmentEntityModule {}\n","import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';\nimport { Injectable } from '@angular/core';\nimport { RootConfig } from '../../const';\nimport { AXMOrganizationManagementEmploymentEntityModel } from './employment.types';\n\nexport abstract class AXMOrganizationManagementEmploymentEntityService extends AXMEntityCrudServiceImpl<\n string,\n AXMOrganizationManagementEmploymentEntityModel\n> {}\n\n@Injectable()\nexport class AXMOrganizationManagementEmploymentEntityServiceImpl extends AXMOrganizationManagementEmploymentEntityService {\n constructor() {\n super(`${RootConfig.module.name}.${RootConfig.entities.employment}`);\n }\n}\n","import { NgModule } from '@angular/core';\nimport {\n AXMOrganizationManagementEmploymentEntityService,\n AXMOrganizationManagementEmploymentEntityServiceImpl,\n} from './employment.service';\n\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n providers: [\n {\n provide: AXMOrganizationManagementEmploymentEntityService,\n useClass: AXMOrganizationManagementEmploymentEntityServiceImpl,\n },\n ],\n})\nexport class AXMOrganizationManagementEmploymentEntityModule {}\n","import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';\nimport { Injectable } from '@angular/core';\nimport { RootConfig } from '../../const';\nimport { AXMOrganizationManagementPositionEntityModel } from './position.types';\nexport abstract class AXMOrganizationManagementPositionEntityService extends AXMEntityCrudServiceImpl<\n string,\n AXMOrganizationManagementPositionEntityModel\n> {}\n\n@Injectable()\nexport class AXMOrganizationManagementPositionEntityServiceImpl extends AXMOrganizationManagementPositionEntityService {\n constructor() {\n super(`${RootConfig.module.name}.${RootConfig.entities.position}`);\n }\n}\n","import { NgModule } from '@angular/core';\nimport {\n AXMOrganizationManagementPositionEntityService,\n AXMOrganizationManagementPositionEntityServiceImpl,\n} from './position.service';\n\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n providers: [\n {\n provide: AXMOrganizationManagementPositionEntityService,\n useClass: AXMOrganizationManagementPositionEntityServiceImpl,\n },\n ],\n})\nexport class AXMOrganizationManagementPositionEntityModule {}\n","import { AXPEntity } from '@acorex/platform/common';\nimport { AXPEntityDefinitionLoader, AXPEntityPreloadEntity } from '@acorex/platform/layout/entity';\nimport { Injectable, Injector, inject } from '@angular/core';\nimport { RootConfig } from './const';\n\n@Injectable()\nexport class AXMOrganizationModuleEntityProvider implements AXPEntityDefinitionLoader {\n public preload(): AXPEntityPreloadEntity[] {\n const module = RootConfig.module.name;\n return Array.from(Object.values(RootConfig.entities)).map((entity: any) => ({\n module: module,\n entity: entity.name,\n }));\n }\n\n private injector = inject(Injector);\n\n async get(moduleName: string, entityName: string): Promise<AXPEntity | null> {\n if (moduleName == RootConfig.module.name) {\n switch (entityName) {\n case RootConfig.entities.company.name:\n return (await import('./entities/company/company.entity')).factory(this.injector);\n case RootConfig.entities.department.name:\n return (await import('./entities/department/department.entity')).factory(this.injector);\n case RootConfig.entities.employment.name:\n return (await import('./entities/employment/employment.entity')).factory(this.injector);\n case RootConfig.entities.position.name:\n return (await import('./entities/position/position.entity')).factory(this.injector);\n case RootConfig.entities.chart.name:\n return (await import('./entities/chart/chart.entity')).factory(this.injector);\n }\n }\n return null;\n }\n}\n","import { AXPMenuProvider, AXPMenuProviderContext } from '@acorex/platform/common';\nimport { AXPEntityService } from '@acorex/platform/layout/entity';\nimport { inject } from '@angular/core';\nimport { RootConfig } from './const';\n\nexport class AXMMenuProvider implements AXPMenuProvider {\n private entityService = inject(AXPEntityService);\n\n async provide(context: AXPMenuProviderContext): Promise<void> {\n const scope = RootConfig.config.i18n;\n const module = RootConfig.module;\n\n context.addItems([\n {\n priority: 9001,\n text: `t('module-name', {scope:\"${scope}\"})`,\n icon: 'fa-solid fa-file-invoice',\n children: [\n {\n text: `t(\"companies\", {scope:\"${scope}\"})`,\n path: this.entityService.createPath(module.name, RootConfig.entities.company.name),\n priority: 1,\n icon: RootConfig.entities.company.icon,\n },\n {\n text: `t('departments', {scope:\"${scope}\"})`,\n path: this.entityService.createPath(module.name, RootConfig.entities.department.name),\n priority: 2,\n icon: RootConfig.entities.department.icon,\n },\n {\n text: `t('employments', {scope:\"${scope}\"})`,\n path: this.entityService.createPath(module.name, RootConfig.entities.employment.name),\n priority: 3,\n icon: RootConfig.entities.employment.icon,\n },\n {\n text: `t('positions', {scope:\"${scope}\"})`,\n path: this.entityService.createPath(module.name, RootConfig.entities.position.name),\n priority: 4,\n icon: RootConfig.entities.position.icon,\n },\n {\n text: `t('charts', {scope:\"${scope}\"})`,\n path: this.entityService.createPath(module.name, RootConfig.entities.chart.name),\n priority: 5,\n icon: RootConfig.entities.chart.icon,\n },\n ],\n },\n ]);\n }\n}\n","import { AXPSettingDefinitionProvider, AXPSettingDefinitionProviderContext } from '@acorex/platform/common';\n\nexport class AXMSettingProvider implements AXPSettingDefinitionProvider {\n async provide(context: AXPSettingDefinitionProviderContext): Promise<void> {}\n}\n","import { AXPWorkflowNavigateAction } from '@acorex/platform/common';\nimport { AXPWorkflow, AXPWorkflowAction, AXPWorkflowContext } from '@acorex/platform/workflow';\nimport { inject, Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\nexport const AXMViewChartWorkflow: AXPWorkflow = {\n startStepId: 'view-chart',\n steps: {\n 'view-chart': {\n action: 'navigate-url',\n input: {\n url: 'chart/designer',\n data: '{{context.getVariable(\"data\")}}',\n },\n },\n },\n};\n\n@Injectable()\nexport class AXMOpenChartViewAction extends AXPWorkflowAction {\n url!: string;\n router = inject(Router);\n private navigation = inject(AXPWorkflowNavigateAction);\n async execute(context: AXPWorkflowContext): Promise<void> {\n const { id } = context.getVariable('data');\n const newPayload = {\n commands: `chart/designer`,\n extras: { state: { id: id } },\n };\n context.setVariable('payload', newPayload);\n this.navigation.execute(context);\n }\n}\n","import { AXP_MENU_PROVIDER, AXP_SETTING_DEFINITION_PROVIDER } from '@acorex/platform/common';\nimport { AXP_ENTITY_DEFINITION_LOADER } from '@acorex/platform/layout/entity';\nimport { AXPRootLayoutComponent } from '@acorex/platform/themes/default';\nimport { AXPWorkflowModule } from '@acorex/platform/workflow';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { Routes, ROUTES } from '@angular/router';\nimport { AXMOrganizationManagementChartEntityModule } from './entities/chart/chart.module';\nimport { AXMOrganizationManagementCompanyEntityModule } from './entities/company/company.module';\nimport { AXMOrganizationManagementDepartmentEntityModule } from './entities/department/department.module';\nimport { AXMOrganizationManagementEmploymentEntityModule } from './entities/employment/employment.module';\nimport { AXMOrganizationManagementPositionEntityModule } from './entities/position/position.module';\nimport { AXMOrganizationModuleEntityProvider } from './entity.provider';\nimport { AXMMenuProvider } from './menu.provider';\nimport { AXMSettingProvider } from './setting.provider';\nimport { AXMOpenChartViewAction, AXMViewChartWorkflow } from './workflows/chart.workflow';\n\nfunction routesFacory() {\n const routes: Routes = [\n {\n component: AXPRootLayoutComponent,\n path: 'chart',\n children: [\n {\n path: 'designer',\n loadComponent: () => import('./pages/chart-design/chart-design.page').then((c) => c.AXMChartDesignPage),\n },\n ],\n },\n ];\n return routes;\n}\n\n@NgModule({\n imports: [\n CommonModule,\n AXMOrganizationManagementCompanyEntityModule,\n AXMOrganizationManagementDepartmentEntityModule,\n AXMOrganizationManagementEmploymentEntityModule,\n AXMOrganizationManagementPositionEntityModule,\n AXMOrganizationManagementChartEntityModule,\n AXPWorkflowModule.forChild({\n actions: {\n 'navigate-url': AXMOpenChartViewAction,\n },\n workflows: {\n 'view-chart': AXMViewChartWorkflow,\n },\n }),\n ],\n providers: [\n {\n provide: AXP_SETTING_DEFINITION_PROVIDER,\n useClass: AXMSettingProvider,\n multi: true,\n },\n\n {\n provide: AXP_ENTITY_DEFINITION_LOADER,\n useClass: AXMOrganizationModuleEntityProvider,\n multi: true,\n },\n {\n provide: AXP_MENU_PROVIDER,\n useClass: AXMMenuProvider,\n multi: true,\n },\n {\n provide: ROUTES,\n multi: true,\n useFactory: routesFacory,\n },\n ],\n})\nexport class AXMOrganizationManagmentModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|