@cccteam/ccc-lib 0.0.15 → 0.0.16

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 (221) hide show
  1. package/README.md +38 -13
  2. package/fesm2022/cccteam-ccc-lib-src-auth-authentication-guard.mjs +36 -0
  3. package/fesm2022/cccteam-ccc-lib-src-auth-authentication-guard.mjs.map +1 -0
  4. package/fesm2022/cccteam-ccc-lib-src-auth-authorization-guard.mjs +25 -0
  5. package/fesm2022/cccteam-ccc-lib-src-auth-authorization-guard.mjs.map +1 -0
  6. package/fesm2022/cccteam-ccc-lib-src-auth-forms.mjs +83 -0
  7. package/fesm2022/cccteam-ccc-lib-src-auth-forms.mjs.map +1 -0
  8. package/fesm2022/cccteam-ccc-lib-src-auth-has-permission.mjs +44 -0
  9. package/fesm2022/cccteam-ccc-lib-src-auth-has-permission.mjs.map +1 -0
  10. package/fesm2022/cccteam-ccc-lib-src-auth-service.mjs +82 -0
  11. package/fesm2022/cccteam-ccc-lib-src-auth-service.mjs.map +1 -0
  12. package/fesm2022/cccteam-ccc-lib-src-ccc-camel-case-to-title.mjs +33 -0
  13. package/fesm2022/cccteam-ccc-lib-src-ccc-camel-case-to-title.mjs.map +1 -0
  14. package/fesm2022/cccteam-ccc-lib-src-ccc-grid.mjs +256 -0
  15. package/fesm2022/cccteam-ccc-lib-src-ccc-grid.mjs.map +1 -0
  16. package/fesm2022/cccteam-ccc-lib-src-ccc-resource.mjs +3129 -0
  17. package/fesm2022/cccteam-ccc-lib-src-ccc-resource.mjs.map +1 -0
  18. package/fesm2022/cccteam-ccc-lib-src-forms.mjs +79 -0
  19. package/fesm2022/cccteam-ccc-lib-src-forms.mjs.map +1 -0
  20. package/fesm2022/cccteam-ccc-lib-src-internal-types.mjs +6 -0
  21. package/fesm2022/cccteam-ccc-lib-src-internal-types.mjs.map +1 -0
  22. package/fesm2022/cccteam-ccc-lib-src-types.mjs +431 -0
  23. package/fesm2022/cccteam-ccc-lib-src-types.mjs.map +1 -0
  24. package/fesm2022/cccteam-ccc-lib-src-ui-alert.mjs +48 -0
  25. package/fesm2022/cccteam-ccc-lib-src-ui-alert.mjs.map +1 -0
  26. package/fesm2022/cccteam-ccc-lib-src-ui-core-service.mjs +41 -0
  27. package/fesm2022/cccteam-ccc-lib-src-ui-core-service.mjs.map +1 -0
  28. package/fesm2022/cccteam-ccc-lib-src-ui-idle-service.mjs +157 -0
  29. package/fesm2022/cccteam-ccc-lib-src-ui-idle-service.mjs.map +1 -0
  30. package/fesm2022/cccteam-ccc-lib-src-ui-interceptor.mjs +50 -0
  31. package/fesm2022/cccteam-ccc-lib-src-ui-interceptor.mjs.map +1 -0
  32. package/fesm2022/cccteam-ccc-lib-src-ui-notification-service.mjs +63 -0
  33. package/fesm2022/cccteam-ccc-lib-src-ui-notification-service.mjs.map +1 -0
  34. package/fesm2022/cccteam-ccc-lib-src-ui-sidenav.mjs +60 -0
  35. package/fesm2022/cccteam-ccc-lib-src-ui-sidenav.mjs.map +1 -0
  36. package/fesm2022/cccteam-ccc-lib-src-util-request-options.mjs +19 -0
  37. package/fesm2022/cccteam-ccc-lib-src-util-request-options.mjs.map +1 -0
  38. package/fesm2022/cccteam-ccc-lib.mjs +4444 -0
  39. package/fesm2022/cccteam-ccc-lib.mjs.map +1 -0
  40. package/package.json +88 -5
  41. package/types/cccteam-ccc-lib-src-auth-authentication-guard.d.ts +6 -0
  42. package/types/cccteam-ccc-lib-src-auth-authorization-guard.d.ts +6 -0
  43. package/types/cccteam-ccc-lib-src-auth-forms.d.ts +28 -0
  44. package/types/cccteam-ccc-lib-src-auth-has-permission.d.ts +15 -0
  45. package/types/cccteam-ccc-lib-src-auth-service.d.ts +38 -0
  46. package/types/cccteam-ccc-lib-src-ccc-camel-case-to-title.d.ts +10 -0
  47. package/types/cccteam-ccc-lib-src-ccc-grid.d.ts +35 -0
  48. package/types/cccteam-ccc-lib-src-ccc-resource.d.ts +674 -0
  49. package/types/cccteam-ccc-lib-src-forms.d.ts +27 -0
  50. package/types/cccteam-ccc-lib-src-types.d.ts +934 -0
  51. package/types/cccteam-ccc-lib-src-ui-alert.d.ts +16 -0
  52. package/types/cccteam-ccc-lib-src-ui-core-service.d.ts +20 -0
  53. package/types/cccteam-ccc-lib-src-ui-idle-service.d.ts +49 -0
  54. package/types/cccteam-ccc-lib-src-ui-interceptor.d.ts +16 -0
  55. package/types/cccteam-ccc-lib-src-ui-notification-service.d.ts +33 -0
  56. package/types/cccteam-ccc-lib-src-ui-sidenav.d.ts +33 -0
  57. package/types/cccteam-ccc-lib-src-util-request-options.d.ts +12 -0
  58. package/types/cccteam-ccc-lib.d.ts +1877 -0
  59. package/eslint.config.js +0 -32
  60. package/ng-package.json +0 -11
  61. package/src/auth-authentication-guard/authentication.guard.ts +0 -40
  62. package/src/auth-authentication-guard/index.ts +0 -1
  63. package/src/auth-authentication-guard/ng-package.json +0 -6
  64. package/src/auth-authorization-guard/authorization.guard.ts +0 -17
  65. package/src/auth-authorization-guard/index.ts +0 -1
  66. package/src/auth-authorization-guard/ng-package.json +0 -6
  67. package/src/auth-forms/ccc-field/ccc-field.component.html +0 -1
  68. package/src/auth-forms/ccc-field/ccc-field.component.scss +0 -0
  69. package/src/auth-forms/ccc-field/ccc-field.component.spec.ts +0 -22
  70. package/src/auth-forms/ccc-field/ccc-field.component.ts +0 -74
  71. package/src/auth-forms/form-helpers.ts +0 -39
  72. package/src/auth-forms/index.ts +0 -3
  73. package/src/auth-forms/ng-package.json +0 -6
  74. package/src/auth-has-permission/has-permission.directive.ts +0 -34
  75. package/src/auth-has-permission/index.ts +0 -1
  76. package/src/auth-has-permission/ng-package.json +0 -6
  77. package/src/auth-service/auth.service.ts +0 -92
  78. package/src/auth-service/index.ts +0 -1
  79. package/src/auth-service/ng-package.json +0 -6
  80. package/src/ccc-camel-case-to-title/camel-case-to-title.pipe.ts +0 -23
  81. package/src/ccc-camel-case-to-title/index.ts +0 -1
  82. package/src/ccc-camel-case-to-title/ng-package.json +0 -6
  83. package/src/ccc-grid/ccc-grid.component.ts +0 -155
  84. package/src/ccc-grid/index.ts +0 -3
  85. package/src/ccc-grid/ng-package.json +0 -6
  86. package/src/ccc-grid/table-button/table-button.component.html +0 -16
  87. package/src/ccc-grid/table-button/table-button.component.scss +0 -5
  88. package/src/ccc-grid/table-button/table-button.component.spec.ts +0 -22
  89. package/src/ccc-grid/table-button/table-button.component.ts +0 -49
  90. package/src/ccc-resource/can-deactivate.guard.ts +0 -41
  91. package/src/ccc-resource/compound-resource/compound-resource.component.html +0 -57
  92. package/src/ccc-resource/compound-resource/compound-resource.component.scss +0 -86
  93. package/src/ccc-resource/compound-resource/compound-resource.component.spec.ts +0 -22
  94. package/src/ccc-resource/compound-resource/compound-resource.component.ts +0 -158
  95. package/src/ccc-resource/concat-fns.ts +0 -162
  96. package/src/ccc-resource/empty-readonly-field/empty-readonly-field.component.html +0 -12
  97. package/src/ccc-resource/empty-readonly-field/empty-readonly-field.component.scss +0 -0
  98. package/src/ccc-resource/empty-readonly-field/empty-readonly-field.component.spec.ts +0 -23
  99. package/src/ccc-resource/empty-readonly-field/empty-readonly-field.component.ts +0 -17
  100. package/src/ccc-resource/form-state.service.ts +0 -24
  101. package/src/ccc-resource/format-fns.ts +0 -49
  102. package/src/ccc-resource/gui-constants.ts +0 -88
  103. package/src/ccc-resource/index.ts +0 -23
  104. package/src/ccc-resource/leave-page-confirmation-modal/leave-page-confirmation-modal.component.html +0 -8
  105. package/src/ccc-resource/leave-page-confirmation-modal/leave-page-confirmation-modal.component.scss +0 -0
  106. package/src/ccc-resource/leave-page-confirmation-modal/leave-page-confirmation-modal.component.spec.ts +0 -22
  107. package/src/ccc-resource/leave-page-confirmation-modal/leave-page-confirmation-modal.component.ts +0 -12
  108. package/src/ccc-resource/ng-package.json +0 -6
  109. package/src/ccc-resource/operation-types.ts +0 -19
  110. package/src/ccc-resource/padding-element/padding-element.component.html +0 -1
  111. package/src/ccc-resource/padding-element/padding-element.component.scss +0 -3
  112. package/src/ccc-resource/padding-element/padding-element.component.spec.ts +0 -22
  113. package/src/ccc-resource/padding-element/padding-element.component.ts +0 -20
  114. package/src/ccc-resource/resource-array-view/resource-array-view.component.html +0 -81
  115. package/src/ccc-resource/resource-array-view/resource-array-view.component.scss +0 -21
  116. package/src/ccc-resource/resource-array-view/resource-array-view.component.spec.ts +0 -22
  117. package/src/ccc-resource/resource-array-view/resource-array-view.component.ts +0 -143
  118. package/src/ccc-resource/resource-base/resource-base.component.spec.ts +0 -22
  119. package/src/ccc-resource/resource-base/resource-base.component.ts +0 -11
  120. package/src/ccc-resource/resource-cache.service.ts +0 -232
  121. package/src/ccc-resource/resource-create/resource-create.component.html +0 -31
  122. package/src/ccc-resource/resource-create/resource-create.component.scss +0 -130
  123. package/src/ccc-resource/resource-create/resource-create.component.spec.ts +0 -22
  124. package/src/ccc-resource/resource-create/resource-create.component.ts +0 -303
  125. package/src/ccc-resource/resource-field/base-field.directive.ts +0 -102
  126. package/src/ccc-resource/resource-field/fields/boolean-field/boolean-field.component.html +0 -16
  127. package/src/ccc-resource/resource-field/fields/boolean-field/boolean-field.component.scss +0 -0
  128. package/src/ccc-resource/resource-field/fields/boolean-field/boolean-field.component.spec.ts +0 -22
  129. package/src/ccc-resource/resource-field/fields/boolean-field/boolean-field.component.ts +0 -15
  130. package/src/ccc-resource/resource-field/fields/computed-field/computed-field.component.html +0 -13
  131. package/src/ccc-resource/resource-field/fields/computed-field/computed-field.component.scss +0 -0
  132. package/src/ccc-resource/resource-field/fields/computed-field/computed-field.component.spec.ts +0 -23
  133. package/src/ccc-resource/resource-field/fields/computed-field/computed-field.component.ts +0 -50
  134. package/src/ccc-resource/resource-field/fields/date-field/date-field.component.html +0 -22
  135. package/src/ccc-resource/resource-field/fields/date-field/date-field.component.scss +0 -0
  136. package/src/ccc-resource/resource-field/fields/date-field/date-field.component.spec.ts +0 -22
  137. package/src/ccc-resource/resource-field/fields/date-field/date-field.component.ts +0 -14
  138. package/src/ccc-resource/resource-field/fields/enumerated-field/enumerated-field.component.html +0 -71
  139. package/src/ccc-resource/resource-field/fields/enumerated-field/enumerated-field.component.scss +0 -9
  140. package/src/ccc-resource/resource-field/fields/enumerated-field/enumerated-field.component.spec.ts +0 -22
  141. package/src/ccc-resource/resource-field/fields/enumerated-field/enumerated-field.component.ts +0 -207
  142. package/src/ccc-resource/resource-field/fields/nullboolean-field/nullboolean-field.component.html +0 -38
  143. package/src/ccc-resource/resource-field/fields/nullboolean-field/nullboolean-field.component.scss +0 -3
  144. package/src/ccc-resource/resource-field/fields/nullboolean-field/nullboolean-field.component.spec.ts +0 -22
  145. package/src/ccc-resource/resource-field/fields/nullboolean-field/nullboolean-field.component.ts +0 -87
  146. package/src/ccc-resource/resource-field/fields/number-field/number-field.component.html +0 -23
  147. package/src/ccc-resource/resource-field/fields/number-field/number-field.component.scss +0 -6
  148. package/src/ccc-resource/resource-field/fields/number-field/number-field.component.spec.ts +0 -22
  149. package/src/ccc-resource/resource-field/fields/number-field/number-field.component.ts +0 -14
  150. package/src/ccc-resource/resource-field/fields/text-field/text-field.component.html +0 -29
  151. package/src/ccc-resource/resource-field/fields/text-field/text-field.component.scss +0 -6
  152. package/src/ccc-resource/resource-field/fields/text-field/text-field.component.spec.ts +0 -22
  153. package/src/ccc-resource/resource-field/fields/text-field/text-field.component.ts +0 -23
  154. package/src/ccc-resource/resource-field/resource-field.component.html +0 -112
  155. package/src/ccc-resource/resource-field/resource-field.component.scss +0 -7
  156. package/src/ccc-resource/resource-field/resource-field.component.spec.ts +0 -22
  157. package/src/ccc-resource/resource-field/resource-field.component.ts +0 -214
  158. package/src/ccc-resource/resource-layout/resource-layout.component.html +0 -73
  159. package/src/ccc-resource/resource-layout/resource-layout.component.scss +0 -26
  160. package/src/ccc-resource/resource-layout/resource-layout.component.spec.ts +0 -22
  161. package/src/ccc-resource/resource-layout/resource-layout.component.ts +0 -176
  162. package/src/ccc-resource/resource-list/ resource-list.component.spec.ts +0 -22
  163. package/src/ccc-resource/resource-list/resource-list.component.html +0 -27
  164. package/src/ccc-resource/resource-list/resource-list.component.scss +0 -67
  165. package/src/ccc-resource/resource-list/resource-list.component.ts +0 -376
  166. package/src/ccc-resource/resource-list-create/resource-list-create.component.html +0 -71
  167. package/src/ccc-resource/resource-list-create/resource-list-create.component.scss +0 -9
  168. package/src/ccc-resource/resource-list-create/resource-list-create.component.spec.ts +0 -22
  169. package/src/ccc-resource/resource-list-create/resource-list-create.component.ts +0 -103
  170. package/src/ccc-resource/resource-resolver/resource-resolver.component.html +0 -1
  171. package/src/ccc-resource/resource-resolver/resource-resolver.component.scss +0 -0
  172. package/src/ccc-resource/resource-resolver/resource-resolver.component.spec.ts +0 -22
  173. package/src/ccc-resource/resource-resolver/resource-resolver.component.ts +0 -69
  174. package/src/ccc-resource/resource-store.service.ts +0 -93
  175. package/src/ccc-resource/resource-view/resource-view.component.html +0 -133
  176. package/src/ccc-resource/resource-view/resource-view.component.scss +0 -150
  177. package/src/ccc-resource/resource-view/resource-view.component.spec.ts +0 -22
  178. package/src/ccc-resource/resource-view/resource-view.component.ts +0 -354
  179. package/src/ccc-resource/resources-helpers.ts +0 -262
  180. package/src/ccc-resource/utils/validator-utils.ts +0 -6
  181. package/src/index.ts +0 -44
  182. package/src/internal-types/ng-package.json +0 -6
  183. package/src/types/auth.actions.ts +0 -46
  184. package/src/types/configs.ts +0 -952
  185. package/src/types/constants.ts +0 -1
  186. package/src/types/core.actions.ts +0 -33
  187. package/src/types/index.ts +0 -9
  188. package/src/types/ng-package.json +0 -6
  189. package/src/types/notification-message.ts +0 -20
  190. package/src/types/permissions.ts +0 -17
  191. package/src/types/session-info.ts +0 -10
  192. package/src/types/tokens.ts +0 -20
  193. package/src/ui-alert/alert.component.html +0 -13
  194. package/src/ui-alert/alert.component.scss +0 -48
  195. package/src/ui-alert/alert.component.spec.ts +0 -22
  196. package/src/ui-alert/alert.component.ts +0 -35
  197. package/src/ui-alert/index.ts +0 -1
  198. package/src/ui-alert/ng-package.json +0 -6
  199. package/src/ui-core-service/index.ts +0 -1
  200. package/src/ui-core-service/ng-package.json +0 -6
  201. package/src/ui-core-service/ui-core.service.ts +0 -34
  202. package/src/ui-interceptor/api.interceptor.spec.ts +0 -16
  203. package/src/ui-interceptor/api.interceptor.ts +0 -45
  204. package/src/ui-interceptor/index.ts +0 -1
  205. package/src/ui-interceptor/ng-package.json +0 -6
  206. package/src/ui-notification-service/index.ts +0 -1
  207. package/src/ui-notification-service/ng-package.json +0 -6
  208. package/src/ui-notification-service/notification.service.ts +0 -59
  209. package/src/ui-sidenav/index.ts +0 -1
  210. package/src/ui-sidenav/ng-package.json +0 -6
  211. package/src/ui-sidenav/sidenav.component.html +0 -60
  212. package/src/ui-sidenav/sidenav.component.scss +0 -99
  213. package/src/ui-sidenav/sidenav.component.spec.ts +0 -22
  214. package/src/ui-sidenav/sidenav.component.ts +0 -64
  215. package/src/util-request-options/index.ts +0 -1
  216. package/src/util-request-options/ng-package.json +0 -6
  217. package/src/util-request-options/request-options.ts +0 -17
  218. package/tsconfig.lib.json +0 -13
  219. package/tsconfig.lib.prod.json +0 -11
  220. package/tsconfig.spec.json +0 -15
  221. /package/{src/internal-types/index.ts → types/cccteam-ccc-lib-src-internal-types.d.ts} +0 -0
@@ -1,232 +0,0 @@
1
- import { HttpClient, HttpParams } from '@angular/common/http';
2
- import { inject, Injectable, Injector, ResourceRef, signal, Signal, untracked } from '@angular/core';
3
- import { rxResource } from '@angular/core/rxjs-interop';
4
- import { Router } from '@angular/router';
5
- import type { FieldSort, RecordData, Resource } from '@cccteam/ccc-lib/src/internal-types';
6
- import { AlertLevel, API_URL } from '@cccteam/ccc-lib/src/internal-types';
7
- import { CreateNotificationMessage } from '@cccteam/ccc-lib/src/types';
8
- import { NotificationService } from '@cccteam/ccc-lib/src/ui-notification-service';
9
- import { catchError, Observable, of, tap } from 'rxjs';
10
- import { Operation } from './operation-types';
11
-
12
- @Injectable()
13
- export class ResourceCacheService {
14
- cache = new Map<string, ResourceRef<RecordData[] | RecordData>>();
15
- http = inject(HttpClient);
16
- notifications = inject(NotificationService);
17
- injector = inject(Injector);
18
- router = inject(Router);
19
- apiUrl = inject(API_URL);
20
-
21
- registerView(route: Signal<string>, resource: Signal<Resource>, uuid: Signal<string>): ResourceRef<RecordData> {
22
- const cacheKey = this.createCacheKey(resource(), 'view', uuid(), []);
23
- if (this.cache.has(cacheKey)) {
24
- return this.cache.get(cacheKey) as ResourceRef<RecordData>;
25
- }
26
-
27
- return untracked(() => {
28
- const resourceRef = rxResource({
29
- injector: this.injector,
30
- params: () => ({
31
- route: route(),
32
- uuid: uuid(),
33
- }),
34
- stream: ({ params }) => {
35
- if (!params.route || !params.uuid || uuid() === 'undefined') return of({} as RecordData);
36
- return this.http.get<RecordData>(this.routes.resource(this.apiUrl, String(params.route), uuid() || ''));
37
- },
38
- }) as ResourceRef<RecordData>;
39
-
40
- this.cache.set(cacheKey, resourceRef);
41
- return resourceRef;
42
- });
43
- }
44
-
45
- registerList(
46
- route: Signal<string>,
47
- resource: Signal<Resource>,
48
- filter: Signal<string> = signal(''),
49
- columns: Signal<string[]> = signal([]),
50
- searchTokens: Signal<string> = signal(''),
51
- sorts: Signal<FieldSort[]> = signal([]),
52
- defaultEmpty = false,
53
- ): ResourceRef<RecordData[]> {
54
- const cacheKey = this.createCacheKey(resource(), 'list', filter(), columns());
55
- if (this.cache.has(cacheKey)) {
56
- const resourceRef = this.cache.get(cacheKey) as ResourceRef<RecordData[]>;
57
- return resourceRef as ResourceRef<RecordData[]>;
58
- }
59
-
60
- return untracked(() => {
61
- const resourceRef = rxResource({
62
- defaultValue: [] as RecordData[],
63
- injector: this.injector,
64
- params: () => ({
65
- route: route(),
66
- filter: filter(),
67
- columns: columns(),
68
- searchTokens: searchTokens(),
69
- sorts: sorts(),
70
- }),
71
- stream: ({ params }) => {
72
- if (!params.route) return of([] as RecordData[]);
73
- if (defaultEmpty && (!params.searchTokens || params.searchTokens.trim() === '')) {
74
- return of([] as RecordData[]);
75
- }
76
- return this.list<RecordData>(
77
- String(params.route),
78
- params.filter,
79
- params.columns,
80
- params.searchTokens,
81
- params.sorts,
82
- );
83
- },
84
- }) as ResourceRef<RecordData[]>;
85
- this.cache.set(cacheKey, resourceRef);
86
- return resourceRef;
87
- });
88
- }
89
-
90
- createCacheKey(resource: Resource, type: 'view' | 'list', params: string, columns: string[] = []): string {
91
- const normalizedColumns = columns.map((col) => col || '').sort((a, b) => a.localeCompare(b));
92
- return `${resource}:${type}:${JSON.stringify(params)}:${JSON.stringify(normalizedColumns)}`;
93
- }
94
-
95
- /**
96
- *
97
- * @param resource
98
- * @returns void
99
- * @description This method tries to update the resource by exact name in the cache by calling the reload method on it.
100
- */
101
- updateResourceInCache(resource: Resource, type: 'view' | 'list'): void {
102
- this.cache.forEach((resourceRef, key) => {
103
- const [cachedResource, cachedType] = key.split(':');
104
- if (cachedResource === resource && cachedType === type) {
105
- resourceRef.reload();
106
- }
107
- });
108
- }
109
-
110
- /**
111
- *
112
- * @param resource
113
- * @returns void
114
- * @description This method tries to update any resource that includes the resource name in the cache by calling the reload method on it.
115
- * For example, updating ResourceTest will update both ResourceTest and ResourceTestRelatedResourceFoobar.
116
- */
117
- updateResourceGroupInCache(resource: Resource): void {
118
- this.cache.forEach((resourceRef, key) => {
119
- const [cachedResource] = key.split(':');
120
- if (cachedResource?.includes(resource)) {
121
- resourceRef.reload();
122
- }
123
- });
124
- }
125
-
126
- routes = {
127
- resources: (rootUrl: string, resources: string): string => `${rootUrl}/${resources}`,
128
- resource: (rootUrl: string, resources: string, uuid: string): string => `${rootUrl}/${resources}/${uuid}`,
129
- method: (rootUrl: string, method: string): string => `${rootUrl}/${method}`,
130
- };
131
-
132
- makePatches(operations: Operation[], route: string, resource: Resource): Observable<Record<string, unknown>> {
133
- return this.patchMultiple(String(route), operations).pipe(
134
- tap(() => {
135
- this.notifications.addGlobalNotification({
136
- message: `${resource} updated successfully`,
137
- level: AlertLevel.SUCCESS,
138
- duration: 5000,
139
- link: '',
140
- } satisfies CreateNotificationMessage);
141
- }),
142
- catchError((error) => {
143
- this.notifications.addGlobalNotification({
144
- message: `${resource} failed to update: ${error}`,
145
- level: AlertLevel.ERROR,
146
- duration: 5000,
147
- link: '',
148
- } satisfies CreateNotificationMessage);
149
- return of({});
150
- }),
151
- );
152
- }
153
-
154
- createPatch(operation: Operation, route: string, resource: Resource): Observable<Record<string, unknown>> {
155
- return this.patchMultiple(String(route), [operation]).pipe(
156
- tap(() => {
157
- this.notifications.addGlobalNotification({
158
- message: `${resource} created successfully`,
159
- level: AlertLevel.SUCCESS,
160
- duration: 5000,
161
- link: '',
162
- } satisfies CreateNotificationMessage);
163
- }),
164
- catchError((error) => {
165
- this.notifications.addGlobalNotification({
166
- message: `${resource} failed to create: ${error}`,
167
- level: AlertLevel.ERROR,
168
- duration: 5000,
169
- link: '',
170
- } satisfies CreateNotificationMessage);
171
- return of({});
172
- }),
173
- );
174
- }
175
-
176
- private patchMultiple(resourceRoute: string, data: Operation[]): Observable<Record<string, unknown>> {
177
- return this.http.patch<Record<string, unknown>>(this.routes.resources(this.apiUrl, resourceRoute), data);
178
- }
179
-
180
- private list<T>(
181
- resourceRoute: string,
182
- filter?: string,
183
- columns?: string[],
184
- searchTokens?: string,
185
- sort?: FieldSort[],
186
- ): Observable<T[]> {
187
- const paramsObj: Record<string, string> = {};
188
- if (filter && filter.trim() !== '') paramsObj['filter'] = filter;
189
- if (columns && columns.length > 0) paramsObj['columns'] = columns.join(',');
190
- if (searchTokens && searchTokens.trim() !== '') paramsObj['SearchTokens'] = searchTokens;
191
- if (sort && sort.length > 0) {
192
- paramsObj['sort'] = sort.map((s) => `${s.field}:${s.direction}`).join(',');
193
- }
194
- const params = new HttpParams({ fromObject: paramsObj });
195
- return this.http.get<T[]>(this.routes.resources(this.apiUrl, resourceRoute), { params });
196
- }
197
-
198
- // rpcCall<T>(rpcConfig: RPCConfig, body: T): Observable<T> {
199
- // const methodData = methodMeta(rpcConfig.method);
200
- // if (!methodData) {
201
- // console.error('Method not found in methodMap:', rpcConfig.method);
202
- // return of({} as T);
203
- // }
204
-
205
- // return this.http.post<T>(this.routes.method(this.apiUrl, methodData.route), body).pipe(
206
- // tap(() => {
207
- // this.notifications.addGlobalNotification({
208
- // message: rpcConfig.successMessage ? rpcConfig.successMessage : `${rpcConfig.method} called successfully`,
209
- // level: AlertLevel.SUCCESS,
210
- // duration: 5000,
211
- // link: '',
212
- // } satisfies CreateNotificationMessage);
213
- // if (rpcConfig.afterMethodRedirect) {
214
- // if (typeof rpcConfig.afterMethodRedirect === 'string') {
215
- // this.router.navigate([rpcConfig.afterMethodRedirect]);
216
- // } else {
217
- // this.router.navigate(rpcConfig.afterMethodRedirect);
218
- // }
219
- // }
220
- // }),
221
- // catchError((error) => {
222
- // this.notifications.addGlobalNotification({
223
- // message: error,
224
- // level: AlertLevel.ERROR,
225
- // duration: 5000,
226
- // link: '',
227
- // } satisfies CreateNotificationMessage);
228
- // return of();
229
- // }),
230
- // );
231
- // }
232
- }
@@ -1,31 +0,0 @@
1
- <div class="page-container">
2
- <div class="header-container">
3
- <div class="title" [class.indent]="indentTitle()">
4
- <h1>{{ config().title }}</h1>
5
- </div>
6
-
7
- <div class="state-buttons">
8
- @if (!form().valid && submitted()) {
9
- <div class="invalid message">Please complete or fix required fields.</div>
10
- }
11
- <button mat-raised-button color="primary" (click)="cancelForm()">Cancel</button>
12
- <button mat-raised-button color="accent" (click)="saveForm()" [disabled]="form().pristine">Save</button>
13
- </div>
14
- </div>
15
-
16
- <div class="resource-container">
17
- <form [formGroup]="form()">
18
- <div class="resource row">
19
- @for (element of config().elements; track element) {
20
- <ccc-resource-layout-template
21
- [element]="element"
22
- [meta]="store.resourceMeta()"
23
- [fieldClass]="config().fieldClass"
24
- [relatedData]="parentData()"
25
- editMode="edit"
26
- [form]="form()"></ccc-resource-layout-template>
27
- }
28
- </div>
29
- </form>
30
- </div>
31
- </div>
@@ -1,130 +0,0 @@
1
- .container {
2
- border: 1px solid #8e8e8e;
3
- border-radius: 5px;
4
- position: relative;
5
- margin-bottom: 20px;
6
- padding-top: 10px;
7
- }
8
-
9
- .label {
10
- position: absolute;
11
- top: -15px;
12
- left: 20px;
13
- height: 20px;
14
- background-color: #ffffff;
15
- margin: 0px 10px 0px 10px;
16
- padding: 0px 10px 0px 10px;
17
- text-align: center;
18
- z-index: 10;
19
- font-weight: 500;
20
- font:
21
- 18px 'Roboto',
22
- sans-serif;
23
- }
24
-
25
- .page-container {
26
- position: relative;
27
- }
28
-
29
- .header-container {
30
- margin: 20px 20px 0px 20px;
31
- display: flex;
32
- flex-direction: row;
33
- top: 0;
34
- z-index: 11;
35
- background: transparent;
36
- }
37
-
38
- .title {
39
- display: flex;
40
- align-items: center;
41
- flex-shrink: 0;
42
- }
43
-
44
- .indent {
45
- padding-left: 20px;
46
- }
47
-
48
- .message {
49
- margin-top: auto;
50
- margin-bottom: auto;
51
- }
52
-
53
- .state-buttons {
54
- display: flex;
55
- flex-direction: row;
56
- margin-top: auto;
57
- margin-bottom: auto;
58
- justify-content: right;
59
- flex-grow: 1;
60
- gap: 20px;
61
- }
62
-
63
- .mode-text {
64
- margin-top: auto;
65
- margin-bottom: auto;
66
- }
67
-
68
- .resource {
69
- margin: 10px;
70
- }
71
- .section h2 {
72
- font-size: 1.5em;
73
- border-bottom: 2px solid #ccc;
74
- padding-bottom: 8px;
75
-
76
- margin-bottom: 100px;
77
- }
78
- .section {
79
- margin-top: 15px;
80
- }
81
-
82
- .divider {
83
- margin: 16px 0;
84
- }
85
-
86
- .section-elements {
87
- display: flex;
88
- flex-wrap: wrap;
89
- }
90
-
91
- .mat-input-element:disabled[readonly] {
92
- color: currentColor;
93
- }
94
-
95
- .unsaved {
96
- color: #f44336;
97
- }
98
-
99
- .edit-button {
100
- margin-top: auto;
101
- margin-bottom: auto;
102
- padding-left: 10px;
103
- }
104
-
105
- .button-text {
106
- display: flex;
107
- flex-direction: row;
108
- align-items: center;
109
-
110
- .edit {
111
- color: #003b49;
112
- }
113
-
114
- .mat-icon {
115
- margin-right: 8px;
116
- }
117
- }
118
-
119
- .shaded {
120
- background-color: #e9e9e9;
121
- }
122
-
123
- .rounded {
124
- border-radius: 8px;
125
- }
126
-
127
- .dotted-outline {
128
- border: 1px dotted #ccc;
129
- padding: 8px;
130
- }
@@ -1,22 +0,0 @@
1
- import { ComponentFixture, TestBed } from '@angular/core/testing';
2
-
3
- import { ResourceCreateComponent } from './resource-create.component';
4
-
5
- xdescribe('ResourceCreateComponent', () => {
6
- let component: ResourceCreateComponent;
7
- let fixture: ComponentFixture<ResourceCreateComponent>;
8
-
9
- beforeEach(async () => {
10
- await TestBed.configureTestingModule({
11
- imports: [ResourceCreateComponent],
12
- }).compileComponents();
13
-
14
- fixture = TestBed.createComponent(ResourceCreateComponent);
15
- component = fixture.componentInstance;
16
- fixture.detectChanges();
17
- });
18
-
19
- it('should create', () => {
20
- expect(component).toBeTruthy();
21
- });
22
- });