@acorex/connectivity 20.6.0-next.8 → 20.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. package/api/index.d.ts +35 -62
  2. package/fesm2022/{acorex-connectivity-api-execute.command-BwXw_Kn7.mjs → acorex-connectivity-api-execute.command-CQt_HF1B.mjs} +13 -4
  3. package/fesm2022/acorex-connectivity-api-execute.command-CQt_HF1B.mjs.map +1 -0
  4. package/fesm2022/acorex-connectivity-api.mjs +184 -276
  5. package/fesm2022/acorex-connectivity-api.mjs.map +1 -1
  6. package/fesm2022/{acorex-connectivity-mock-category-with-items.query-NY9J0cQ0.mjs → acorex-connectivity-mock-category-with-items.query-Dsxj98tX.mjs} +2 -2
  7. package/fesm2022/acorex-connectivity-mock-category-with-items.query-Dsxj98tX.mjs.map +1 -0
  8. package/fesm2022/{acorex-connectivity-mock-distribution-record.command-B-Xviv6G.mjs → acorex-connectivity-mock-distribution-record.command-DRiDwlqN.mjs} +12 -3
  9. package/fesm2022/acorex-connectivity-mock-distribution-record.command-DRiDwlqN.mjs.map +1 -0
  10. package/fesm2022/{acorex-connectivity-mock-sample.command-BkxMgq1C.mjs → acorex-connectivity-mock-sample.command-CkH5bmEs.mjs} +4 -1
  11. package/fesm2022/acorex-connectivity-mock-sample.command-CkH5bmEs.mjs.map +1 -0
  12. package/fesm2022/acorex-connectivity-mock.mjs +13390 -8665
  13. package/fesm2022/acorex-connectivity-mock.mjs.map +1 -1
  14. package/mock/index.d.ts +1030 -43
  15. package/package.json +2 -2
  16. package/fesm2022/acorex-connectivity-api-execute.command-BwXw_Kn7.mjs.map +0 -1
  17. package/fesm2022/acorex-connectivity-mock-category-with-items.query-NY9J0cQ0.mjs.map +0 -1
  18. package/fesm2022/acorex-connectivity-mock-distribution-record.command-B-Xviv6G.mjs.map +0 -1
  19. package/fesm2022/acorex-connectivity-mock-sample.command-BkxMgq1C.mjs.map +0 -1
@@ -208,6 +208,9 @@ class AXCFileStorageApiService extends AXPFileStorageService {
208
208
  if (request.path !== undefined) {
209
209
  updateData.path = request.path;
210
210
  }
211
+ if (request.name !== undefined) {
212
+ updateData.name = request.name;
213
+ }
211
214
  if (request.isPrimary !== undefined) {
212
215
  updateData.isPrimary = request.isPrimary;
213
216
  }
@@ -639,13 +642,40 @@ class AXCAPIOidcStrategy extends AXPAuthStrategy {
639
642
  this.handleError(error);
640
643
  }
641
644
  }
645
+ /**
646
+ * Signs out the user according to OpenID Connect standards.
647
+ * Tries to call the standard OIDC end_session_endpoint if available, else falls back to configured logoutUrl.
648
+ * Falls back to root landing page on local logout if nothing is provided.
649
+ * This runs in the background (without redirecting user immediately to the endpoint).
650
+ */
642
651
  async signout() {
643
652
  localStorage.removeItem('pkce_code_verifier');
644
653
  localStorage.removeItem('oauth_provider');
645
- console.log(this.openidConfigurationInfo?.info?.discoveryDocument);
646
- // Use configured logoutUrl or derive from baseUrl
647
- const logoutUrl = this.aXMAuthConfigs.logoutUrl || `connect/logout`;
648
- window.location.href = logoutUrl;
654
+ // Standard OIDC logout: try to use end_session_endpoint if found in the discovery document
655
+ const discoveryDoc = this.openidConfigurationInfo?.info?.discoveryDocument;
656
+ let logoutUrl;
657
+ if (discoveryDoc?.end_session_endpoint) {
658
+ logoutUrl = discoveryDoc.end_session_endpoint;
659
+ // Optional: append id_token_hint, post_logout_redirect_uri or others as needed by your IdP
660
+ // For example: logoutUrl += `?post_logout_redirect_uri=${encodeURIComponent(window.location.origin)}`;
661
+ }
662
+ else if (this.aXMAuthConfigs.logoutUrl) {
663
+ logoutUrl = this.aXMAuthConfigs.logoutUrl;
664
+ }
665
+ // Call logout in the background (don't redirect)
666
+ if (logoutUrl) {
667
+ // Fire-and-forget: Create an invisible iframe to make the logout request in the background
668
+ const iframe = document.createElement('iframe');
669
+ iframe.style.display = 'none';
670
+ iframe.src = logoutUrl;
671
+ document.body.appendChild(iframe);
672
+ // Optionally, remove iframe after load
673
+ iframe.onload = () => {
674
+ setTimeout(() => document.body.removeChild(iframe), 1000);
675
+ };
676
+ }
677
+ // Always send user to landing page after local logout, regardless
678
+ window.location.href = '/';
649
679
  }
650
680
  async refreshToken(context) {
651
681
  try {
@@ -796,43 +826,24 @@ class AXCApiUserAvatarProvider {
796
826
  constructor() {
797
827
  this.userService = inject(AXMUsersEntityService);
798
828
  this.sessionService = inject(AXPSessionService);
799
- this.http = inject(HttpClient);
800
- this.configs = inject(AXP_ROOT_CONFIG_TOKEN);
801
- this.baseUrl = this.configs.baseUrl;
802
829
  }
803
830
  async provide(userId) {
804
831
  // Check if requesting current user info
805
832
  const currentUser = this.sessionService.user;
806
833
  const isCurrentUser = currentUser?.id === userId;
807
- if (isCurrentUser) {
808
- // Use OpenIddict /connect/userinfo endpoint for current user
809
- try {
810
- // Extract base URL without /api suffix and add /connect/userinfo
811
- const authority = this.baseUrl.replace(/\/api$/, '');
812
- const userInfoUrl = `${authority}/connect/userinfo`;
813
- const token = this.sessionService.getToken();
814
- // Add Authorization header if token exists (interceptor will also add it, but explicit is better)
815
- const headers = new HttpHeaders();
816
- if (token) {
817
- headers.set('Authorization', `Bearer ${token}`);
818
- }
819
- const userInfo = await firstValueFrom(this.http.get(userInfoUrl, { headers }));
820
- const [firstName, lastName] = (userInfo.name || userInfo.sub || '').split(' ') || ['', ''];
821
- return {
822
- id: userInfo.sub || userId,
823
- username: userInfo.preferred_username || userInfo.name || '',
824
- firstName: firstName || userInfo.given_name || '',
825
- lastName: lastName || userInfo.family_name || '',
826
- status: 'online',
827
- avatarUrl: userInfo.picture || 'https://via.placeholder.com/150',
828
- };
829
- }
830
- catch (error) {
831
- console.error('Failed to load userinfo from /connect/userinfo, falling back to entity service', error);
832
- // Fallback to entity service if userinfo endpoint fails
833
- }
834
+ if (isCurrentUser && currentUser) {
835
+ // Use session service user data for current user
836
+ const [firstName, lastName] = (currentUser.name || '').split(' ') || ['', ''];
837
+ return {
838
+ id: currentUser.id,
839
+ username: currentUser.name || '',
840
+ firstName: firstName || '',
841
+ lastName: lastName || '',
842
+ status: 'online',
843
+ avatarUrl: currentUser.avatar || `https://avatar.iran.liara.run/public/${AXPDataGenerator.pick([35, 22, 16, 6, 31])}`,
844
+ };
834
845
  }
835
- // Use entity service for other users or as fallback
846
+ // Use entity service for other users
836
847
  const user = await this.userService.getOne(userId);
837
848
  if (!user) {
838
849
  throw new Error(`User not found for ${userId}`);
@@ -850,224 +861,32 @@ class AXCApiUserAvatarProvider {
850
861
  }
851
862
 
852
863
  //#endregion
853
- //#region ---- Helper Functions ----
854
- // /**
855
- // * Converts a widget string to AXPWidgetsList key
856
- // */
857
- // function convertWidgetStringToAXPWidgetsListKey(
858
- // widgetString: string,
859
- // )
860
- // :
861
- // | keyof typeof AXPWidgetsList.Editors
862
- // | keyof typeof AXPWidgetsList.Layouts
863
- // | keyof typeof AXPWidgetsList.Actions
864
- // | keyof typeof AXPWidgetsList.Advanced
865
- // | keyof typeof AXPWidgetsList.Templates
866
- // | keyof typeof AXPWidgetsList.Entity
867
- // | keyof typeof AXPWidgetsList.Theme
868
- // {
869
- // console.log('Converting widget string:', widgetString);
870
- // // Check if the string is in format "AXPWidgetsList.Category.Key"
871
- // if (widgetString.startsWith('AXPWidgetsList.')) {
872
- // // Extract the key from "AXPWidgetsList.Editors.DateTimeBox" -> "DateTimeBox"
873
- // const parts = widgetString.split('.');
874
- // if (parts.length >= 3) {
875
- // const key = parts[parts.length - 1]; // Get the last part (key)
876
- // console.log('Extracted key from AXPWidgetsList format:', key);
877
- // return key as any;
878
- // }
879
- // }
880
- // // Search through all AXPWidgetsList categories to find matching widget
881
- // for (const category of Object.values(AXPWidgetsList)) {
882
- // if (typeof category === 'object') {
883
- // for (const [key, value] of Object.entries(category)) {
884
- // if (value === widgetString) {
885
- // console.log('Found matching widget:', key, 'for value:', value);
886
- // return key as any; // Return the AXPWidgetsList key (e.g., "DateTimeBox")
887
- // }
888
- // }
889
- // }
890
- // }
891
- // console.log('Widget not found in AXPWidgetsList, returning original string:', widgetString);
892
- // // If not found in AXPWidgetsList, return the original string as fallback
893
- // return widgetString as any;
894
- // }
895
- //#endregion
896
- //#region ---- Shared Data Service ----
897
- class AXCReportManagementDataService {
864
+ //#region ---- API Providers ----
865
+ class AXCReportCategoryApiProvider {
898
866
  constructor() {
899
867
  this.http = inject(HttpClient);
900
868
  this.configs = inject(AXP_ROOT_CONFIG_TOKEN);
901
869
  this.baseUrl = this.configs.baseUrl;
902
- // Cache for category data to avoid duplicate API calls
903
- this.categoryDataCache = new Map();
904
- this.rootCategoriesCache = null;
905
- this.pendingRequests = new Map();
906
- this.pendingRootCategoriesRequest = null;
907
870
  }
908
- //#region ---- Lazy Category/Report Fetching ----
909
- /**
910
- * Fetch root categories (no parent). Only root categories without reports and children.
911
- * Uses cache and pending requests to avoid duplicate API calls.
912
- */
913
- async getRootCategories() {
914
- // Check if already cached
915
- if (this.rootCategoriesCache !== null) {
916
- return this.rootCategoriesCache;
917
- }
918
- // Check if there's already a pending request
919
- if (this.pendingRootCategoriesRequest !== null) {
920
- return this.pendingRootCategoriesRequest;
921
- }
922
- // Create the request and cache it
923
- const requestPromise = (async () => {
924
- try {
925
- const url = `${this.baseUrl}/v1/global/report-management/category`;
871
+ async getList(parentId) {
872
+ try {
873
+ let url;
874
+ if (parentId) {
875
+ url = `${this.baseUrl}/v1/global/report-management/category/${parentId}`;
876
+ const response = await firstValueFrom(this.http.get(url));
877
+ const categoryData = response.items?.[0];
878
+ const filteredItems = categoryData?.folderItems ?? [];
879
+ return filteredItems.map((item) => this.mapApiCategoryToReportCategory(item));
880
+ }
881
+ else {
882
+ url = `${this.baseUrl}/v1/global/report-management/category`;
926
883
  const params = { Skip: 0, Take: 1000 };
927
884
  const response = await firstValueFrom(this.http.get(url, { params }));
928
885
  const all = response.items ?? [];
929
886
  const rootCategories = all.filter((i) => !i.reportCategoryParentId);
930
- // Cache the result
931
- this.rootCategoriesCache = rootCategories;
932
- return rootCategories;
933
- }
934
- finally {
935
- // Remove from pending requests after completion
936
- this.pendingRootCategoriesRequest = null;
937
- }
938
- })();
939
- this.pendingRootCategoriesRequest = requestPromise;
940
- return requestPromise;
941
- }
942
- /**
943
- * Fetch category data for a given parentId.
944
- * Returns the parent category with its FolderItems (children) and ReportDefinitionItems (reports).
945
- * Uses cache to avoid duplicate API calls.
946
- */
947
- async getCategoryData(parentId) {
948
- // Check if already cached
949
- if (this.categoryDataCache.has(parentId)) {
950
- return this.categoryDataCache.get(parentId);
951
- }
952
- // Check if there's already a pending request for this category
953
- if (this.pendingRequests.has(parentId)) {
954
- return this.pendingRequests.get(parentId);
955
- }
956
- // Create the request and cache it
957
- const requestPromise = (async () => {
958
- try {
959
- const url = `${this.baseUrl}/v1/global/report-management/category/${parentId}`;
960
- const response = await firstValueFrom(this.http.get(url));
961
- const categoryData = response.items?.[0];
962
- // Cache the result
963
- this.categoryDataCache.set(parentId, categoryData);
964
- return categoryData;
965
- }
966
- catch {
967
- const undefinedResult = undefined;
968
- this.categoryDataCache.set(parentId, undefinedResult);
969
- return undefinedResult;
970
- }
971
- finally {
972
- // Remove from pending requests after completion
973
- this.pendingRequests.delete(parentId);
974
- }
975
- })();
976
- this.pendingRequests.set(parentId, requestPromise);
977
- return requestPromise;
978
- }
979
- /**
980
- * Fetch both child categories and reports for a given parentId.
981
- * This method ensures only one API call is made and both results are returned.
982
- */
983
- async getCategoryChildrenAndReports(parentId) {
984
- const categoryData = await this.getCategoryData(parentId);
985
- return {
986
- categories: categoryData?.folderItems ?? [],
987
- reports: categoryData?.reportDefinitionItems ?? [],
988
- };
989
- }
990
- /**
991
- * Fetch child categories of a given parent.
992
- * Uses getCategoryData to get FolderItems (children) from the parent category.
993
- */
994
- async getChildCategories(parentId) {
995
- const categoryData = await this.getCategoryData(parentId);
996
- return categoryData?.folderItems ?? [];
997
- }
998
- /**
999
- * Fetch report definitions that belong to a specific category.
1000
- * Uses getCategoryData to get ReportDefinitionItems (reports) from the category.
1001
- */
1002
- async getCategoryReports(categoryId) {
1003
- const categoryData = await this.getCategoryData(categoryId);
1004
- return categoryData?.reportDefinitionItems ?? [];
1005
- }
1006
- /**
1007
- * Fetch a single category by id.
1008
- * First checks cache, then uses getCategoryData if not found in cache.
1009
- */
1010
- async getCategoryById(id) {
1011
- // First check if it's in cache (from previous getCategoryData calls)
1012
- if (this.categoryDataCache.has(id)) {
1013
- return this.categoryDataCache.get(id);
1014
- }
1015
- // Try to get from category data endpoint (which will cache it)
1016
- const categoryData = await this.getCategoryData(id);
1017
- if (categoryData) {
1018
- return categoryData;
1019
- }
1020
- // Fallback: search in root categories cache
1021
- if (this.rootCategoriesCache) {
1022
- const found = this.rootCategoriesCache.find((c) => c.id === id);
1023
- if (found) {
1024
- return found;
887
+ return rootCategories.map((item) => this.mapApiCategoryToReportCategory(item));
1025
888
  }
1026
889
  }
1027
- // Last resort: search in all categories (but this should rarely happen)
1028
- try {
1029
- const url = `${this.baseUrl}/v1/global/report-management/category`;
1030
- const params = { Skip: 0, Take: 1000 };
1031
- const response = await firstValueFrom(this.http.get(url, { params }));
1032
- const all = response.items ?? [];
1033
- return all.find((c) => c.id === id);
1034
- }
1035
- catch {
1036
- return undefined;
1037
- }
1038
- }
1039
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementDataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1040
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementDataService }); }
1041
- }
1042
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementDataService, decorators: [{
1043
- type: Injectable
1044
- }] });
1045
- //#endregion
1046
- //#region ---- API Providers ----
1047
- /**
1048
- * Category provider that uses the shared data service.
1049
- * Both providers use the same dataService instance which ensures proper caching.
1050
- */
1051
- class AXCReportCategoryApiProvider {
1052
- constructor() {
1053
- this.dataService = inject(AXCReportManagementDataService);
1054
- }
1055
- async getList(parentId) {
1056
- try {
1057
- // For root level, get root categories (each category includes folderItems in API response)
1058
- if (!parentId) {
1059
- const filteredItems = await this.dataService.getRootCategories();
1060
- // Each root category has folderItems in the API response, but we only return the root categories themselves
1061
- // The folderItems are preserved in the API response structure, similar to child state
1062
- return filteredItems.map((item) => this.mapApiCategoryToReportCategory(item));
1063
- }
1064
- // For child level, get categories from category data (which includes folderItems)
1065
- // This ensures we use the same API response that getList for definitions will use
1066
- // The folderItems structure is preserved, similar to root state
1067
- const categoryData = await this.dataService.getCategoryData(parentId);
1068
- const filteredItems = categoryData?.folderItems ?? [];
1069
- return filteredItems.map((item) => this.mapApiCategoryToReportCategory(item));
1070
- }
1071
890
  catch (error) {
1072
891
  console.error('Error fetching report categories:', error);
1073
892
  return [];
@@ -1075,9 +894,17 @@ class AXCReportCategoryApiProvider {
1075
894
  }
1076
895
  async getById(id) {
1077
896
  try {
1078
- const apiItem = await this.dataService.getCategoryById(id);
897
+ const url = `${this.baseUrl}/v1/global/report-management/category/${id}`;
898
+ const response = await firstValueFrom(this.http.get(url));
899
+ const apiItem = response.items?.[0];
1079
900
  if (!apiItem) {
1080
- return undefined;
901
+ // Fallback: search in all categories
902
+ const allUrl = `${this.baseUrl}/v1/global/report-management/category`;
903
+ const params = { Skip: 0, Take: 1000 };
904
+ const allResponse = await firstValueFrom(this.http.get(allUrl, { params }));
905
+ const all = allResponse.items ?? [];
906
+ const found = all.find((c) => c.id === id);
907
+ return found ? this.mapApiCategoryToReportCategory(found) : undefined;
1081
908
  }
1082
909
  return this.mapApiCategoryToReportCategory(apiItem);
1083
910
  }
@@ -1092,8 +919,8 @@ class AXCReportCategoryApiProvider {
1092
919
  title: apiItem.title,
1093
920
  description: apiItem.description || undefined,
1094
921
  parentId: apiItem.reportCategoryParentId || undefined,
1095
- hasChild: apiItem.folderCount > 0, // folderItems = folders
1096
- hasReport: apiItem.itemCount > 0, // reportDefinitionItems = files
922
+ childrenCount: apiItem.folderCount ?? 0,
923
+ itemsCount: apiItem.itemCount ?? 0,
1097
924
  };
1098
925
  }
1099
926
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportCategoryApiProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
@@ -1102,23 +929,31 @@ class AXCReportCategoryApiProvider {
1102
929
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportCategoryApiProvider, decorators: [{
1103
930
  type: Injectable
1104
931
  }] });
1105
- /**
1106
- * Definition provider that uses the shared data service.
1107
- * Both providers use the same dataService instance which ensures proper caching.
1108
- */
1109
932
  class AXCReportDefinitionApiProvider {
1110
933
  constructor() {
1111
- this.dataService = inject(AXCReportManagementDataService);
1112
934
  this.http = inject(HttpClient);
935
+ this.configs = inject(AXP_ROOT_CONFIG_TOKEN);
936
+ this.baseUrl = this.configs.baseUrl;
1113
937
  }
1114
938
  async getList(categoryId) {
1115
939
  try {
1116
- // Use getCategoryData which is cached and shared with getCategories
1117
- // This ensures only one API call is made when both getCategories and getReportsByCategoryId are called
1118
- const categoryData = await this.dataService.getCategoryData(categoryId);
940
+ const url = `${this.baseUrl}/v1/global/report-management/category/${categoryId}`;
941
+ const response = await firstValueFrom(this.http.get(url));
942
+ const categoryData = response.items?.[0];
1119
943
  const defs = categoryData?.reportDefinitionItems ?? [];
1120
- const reportDefinitions = defs.map((item) => this.mapApiReportDefinitionItemToReportDefinition(item));
1121
- return reportDefinitions;
944
+ // Fetch full report definitions for each item to get layouts and parameterGroups
945
+ const fullDefinitions = await Promise.all(defs.map(async (item) => {
946
+ try {
947
+ const reportUrl = `${this.baseUrl}/v1/global/report-management/report/${item.id}`;
948
+ const reportResponse = await firstValueFrom(this.http.get(reportUrl));
949
+ return this.mapApiReportDefinitionToReportDefinition(reportResponse);
950
+ }
951
+ catch {
952
+ // Fallback to item mapping if full fetch fails
953
+ return this.mapApiReportDefinitionItemToReportDefinition(item);
954
+ }
955
+ }));
956
+ return fullDefinitions;
1122
957
  }
1123
958
  catch (error) {
1124
959
  console.error('Error fetching report definitions:', error);
@@ -1127,8 +962,7 @@ class AXCReportDefinitionApiProvider {
1127
962
  }
1128
963
  async getById(id) {
1129
964
  try {
1130
- // Make API call to get full report definition with layouts
1131
- const url = `${this.dataService['baseUrl']}/v1/global/report-management/report/${id}`;
965
+ const url = `${this.baseUrl}/v1/global/report-management/report/${id}`;
1132
966
  const response = await firstValueFrom(this.http.get(url));
1133
967
  return this.mapApiReportDefinitionToReportDefinition(response);
1134
968
  }
@@ -1143,13 +977,13 @@ class AXCReportDefinitionApiProvider {
1143
977
  title: apiItem.title,
1144
978
  description: apiItem.description || undefined,
1145
979
  categoryIds: apiItem.categoryIds,
1146
- parameterGroups: [], // These would need to be fetched separately if needed
1147
- layouts: [], // These would need to be fetched separately if needed
1148
- defaultLayoutId: '', // This would need to be set based on the first layout
980
+ parameterGroups: [],
981
+ layouts: [],
982
+ defaultLayoutId: '',
1149
983
  };
1150
984
  }
1151
985
  mapApiReportDefinitionToReportDefinition(apiResponse) {
1152
- let res = {
986
+ return {
1153
987
  id: apiResponse.id,
1154
988
  title: apiResponse.title,
1155
989
  description: apiResponse.description || undefined,
@@ -1178,7 +1012,6 @@ class AXCReportDefinitionApiProvider {
1178
1012
  })),
1179
1013
  defaultLayoutId: apiResponse.defaultLayoutId,
1180
1014
  };
1181
- return res;
1182
1015
  }
1183
1016
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportDefinitionApiProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1184
1017
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportDefinitionApiProvider }); }
@@ -1187,13 +1020,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
1187
1020
  type: Injectable
1188
1021
  }] });
1189
1022
  //#endregion
1190
- //#endregion
1191
1023
  //#region ---- Provider Exports ----
1192
- /**
1193
- * Both providers use the same dataService instance (which is a singleton),
1194
- * ensuring they share the same cache and only one API call is made when both
1195
- * getCategories and getReportsByCategoryId are called for the same categoryId.
1196
- */
1197
1024
  const AXC_REPORT_CATEGORY_API_PROVIDER = {
1198
1025
  provide: AXP_REPORT_CATEGORY_PROVIDER,
1199
1026
  useClass: AXCReportCategoryApiProvider,
@@ -1209,14 +1036,13 @@ class AXCReportManagementApiModule {
1209
1036
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementApiModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1210
1037
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementApiModule, imports: [AXPRuntimeModule] }); }
1211
1038
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCReportManagementApiModule, providers: [
1212
- AXCReportManagementDataService,
1213
1039
  AXC_REPORT_CATEGORY_API_PROVIDER,
1214
1040
  AXC_REPORT_DEFINITION_API_PROVIDER,
1215
1041
  provideCommandSetups([
1216
1042
  {
1217
1043
  key: 'ReportManagement.Report:Execute',
1218
- command: () => import('./acorex-connectivity-api-execute.command-BwXw_Kn7.mjs').then((c) => c.AXCReportExecuteCommand),
1219
- },
1044
+ command: () => import('./acorex-connectivity-api-execute.command-CQt_HF1B.mjs').then((c) => c.AXCReportExecuteCommand),
1045
+ }
1220
1046
  ]),
1221
1047
  ], imports: [AXPRuntimeModule] }); }
1222
1048
  }
@@ -1227,14 +1053,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
1227
1053
  exports: [],
1228
1054
  declarations: [],
1229
1055
  providers: [
1230
- AXCReportManagementDataService,
1231
1056
  AXC_REPORT_CATEGORY_API_PROVIDER,
1232
1057
  AXC_REPORT_DEFINITION_API_PROVIDER,
1233
1058
  provideCommandSetups([
1234
1059
  {
1235
1060
  key: 'ReportManagement.Report:Execute',
1236
- command: () => import('./acorex-connectivity-api-execute.command-BwXw_Kn7.mjs').then((c) => c.AXCReportExecuteCommand),
1237
- },
1061
+ command: () => import('./acorex-connectivity-api-execute.command-CQt_HF1B.mjs').then((c) => c.AXCReportExecuteCommand),
1062
+ }
1238
1063
  ]),
1239
1064
  ],
1240
1065
  }]
@@ -1609,9 +1434,92 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImpo
1609
1434
  type: Injectable
1610
1435
  }], ctorParameters: () => [] });
1611
1436
 
1437
+ //#region ---- Imports ----
1438
+ //#endregion
1439
+ //#region ---- API Providers ----
1440
+ class AXCSystemInsightReportCategoryApiProvider {
1441
+ constructor() {
1442
+ this.http = inject(HttpClient);
1443
+ }
1444
+ async getList(parentId) {
1445
+ try {
1446
+ // Call API to get report categories
1447
+ const params = {};
1448
+ if (parentId) {
1449
+ params.parentId = parentId;
1450
+ }
1451
+ const response = await firstValueFrom(this.http.get('/api/system-insight/report-categories', { params }));
1452
+ return response;
1453
+ }
1454
+ catch (error) {
1455
+ console.error('Failed to fetch system insight report categories from API:', error);
1456
+ return [];
1457
+ }
1458
+ }
1459
+ async getById(id) {
1460
+ try {
1461
+ const response = await firstValueFrom(this.http.get(`/api/system-insight/report-categories/${id}`));
1462
+ return response;
1463
+ }
1464
+ catch (error) {
1465
+ console.error(`Failed to fetch system insight report category ${id} from API:`, error);
1466
+ return undefined;
1467
+ }
1468
+ }
1469
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCSystemInsightReportCategoryApiProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1470
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCSystemInsightReportCategoryApiProvider }); }
1471
+ }
1472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCSystemInsightReportCategoryApiProvider, decorators: [{
1473
+ type: Injectable
1474
+ }] });
1475
+ class AXCSystemInsightReportDefinitionApiProvider {
1476
+ constructor() {
1477
+ this.http = inject(HttpClient);
1478
+ }
1479
+ async getList(categoryId) {
1480
+ try {
1481
+ const response = await firstValueFrom(this.http.get(`/api/system-insight/report-definitions`, {
1482
+ params: { categoryId }
1483
+ }));
1484
+ return response;
1485
+ }
1486
+ catch (error) {
1487
+ console.error(`Failed to fetch system insight report definitions for category ${categoryId} from API:`, error);
1488
+ return [];
1489
+ }
1490
+ }
1491
+ async getById(id) {
1492
+ try {
1493
+ const response = await firstValueFrom(this.http.get(`/api/system-insight/report-definitions/${id}`));
1494
+ return response;
1495
+ }
1496
+ catch (error) {
1497
+ console.error(`Failed to fetch system insight report definition ${id} from API:`, error);
1498
+ return undefined;
1499
+ }
1500
+ }
1501
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCSystemInsightReportDefinitionApiProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1502
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCSystemInsightReportDefinitionApiProvider }); }
1503
+ }
1504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.12", ngImport: i0, type: AXCSystemInsightReportDefinitionApiProvider, decorators: [{
1505
+ type: Injectable
1506
+ }] });
1507
+ //#endregion
1508
+ //#region ---- Provider Exports ----
1509
+ const AXC_SYSTEM_INSIGHT_REPORT_CATEGORY_API_PROVIDER = {
1510
+ provide: AXP_REPORT_CATEGORY_PROVIDER,
1511
+ useClass: AXCSystemInsightReportCategoryApiProvider,
1512
+ multi: true,
1513
+ };
1514
+ const AXC_SYSTEM_INSIGHT_REPORT_DEFINITION_API_PROVIDER = {
1515
+ provide: AXP_REPORT_DEFINITION_PROVIDER,
1516
+ useClass: AXCSystemInsightReportDefinitionApiProvider,
1517
+ multi: true,
1518
+ };
1519
+
1612
1520
  /**
1613
1521
  * Generated bundle index. Do not edit.
1614
1522
  */
1615
1523
 
1616
- export { APIGoogleStrategy, AXCAPIOidcStrategy, AXCApiEntityStorageService, AXCApiModule, AXCApiUserAvatarProvider, AXCReportCategoryApiProvider, AXCReportDefinitionApiProvider, AXCReportManagementApiModule, AXCReportManagementDataService, AXC_REPORT_CATEGORY_API_PROVIDER, AXC_REPORT_DEFINITION_API_PROVIDER, AXMConfigurationService, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcTenantLoader };
1524
+ export { APIGoogleStrategy, AXCAPIOidcStrategy, AXCApiEntityStorageService, AXCApiModule, AXCApiUserAvatarProvider, AXCReportCategoryApiProvider, AXCReportDefinitionApiProvider, AXCReportManagementApiModule, AXCSystemInsightReportCategoryApiProvider, AXCSystemInsightReportDefinitionApiProvider, AXC_REPORT_CATEGORY_API_PROVIDER, AXC_REPORT_DEFINITION_API_PROVIDER, AXC_SYSTEM_INSIGHT_REPORT_CATEGORY_API_PROVIDER, AXC_SYSTEM_INSIGHT_REPORT_DEFINITION_API_PROVIDER, AXMConfigurationService, AXMOidcApplicationLoader, AXMOidcFeatureLoader, AXMOidcPermissionLoader, AXMOidcTenantLoader };
1617
1525
  //# sourceMappingURL=acorex-connectivity-api.mjs.map