@carlonicora/nextjs-jsonapi 1.0.3 → 1.0.4

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 (261) hide show
  1. package/package.json +2 -1
  2. package/src/atoms/index.ts +1 -0
  3. package/src/atoms/recentPagesAtom.ts +10 -0
  4. package/src/client/context/JsonApiContext.ts +61 -0
  5. package/src/client/context/JsonApiProvider.tsx +27 -0
  6. package/src/client/context/index.ts +2 -0
  7. package/src/client/hooks/index.ts +3 -0
  8. package/src/client/hooks/useJsonApiGet.ts +188 -0
  9. package/src/client/hooks/useJsonApiMutation.ts +193 -0
  10. package/src/client/hooks/useRehydration.ts +47 -0
  11. package/src/client/index.ts +11 -0
  12. package/src/client/request.ts +97 -0
  13. package/src/client/token.ts +10 -0
  14. package/src/components/containers/PageContainer.tsx +15 -0
  15. package/src/components/containers/ReactMarkdownContainer.tsx +119 -0
  16. package/src/components/containers/TabsContainer.tsx +93 -0
  17. package/src/components/containers/index.ts +3 -0
  18. package/src/components/contents/AttributeElement.tsx +20 -0
  19. package/src/components/contents/index.ts +1 -0
  20. package/src/components/details/AllowedUsersDetails.tsx +23 -0
  21. package/src/components/details/index.ts +1 -0
  22. package/src/components/editors/BlockNoteDiffInlineContent.tsx +152 -0
  23. package/src/components/editors/BlockNoteEditor.tsx +404 -0
  24. package/src/components/editors/BlockNoteEditorContainer.tsx +13 -0
  25. package/src/components/editors/BlockNoteEditorFormattingToolbar.tsx +38 -0
  26. package/src/components/editors/index.ts +1 -0
  27. package/src/components/errors/ErrorDetails.tsx +41 -0
  28. package/src/components/errors/errorToast.ts +9 -0
  29. package/src/components/errors/index.ts +2 -0
  30. package/src/components/forms/CommonAssociationForm.tsx +162 -0
  31. package/src/components/forms/CommonDeleter.tsx +94 -0
  32. package/src/components/forms/CommonEditorButtons.tsx +30 -0
  33. package/src/components/forms/CommonEditorHeader.tsx +35 -0
  34. package/src/components/forms/CommonEditorTrigger.tsx +26 -0
  35. package/src/components/forms/DatePickerPopover.tsx +219 -0
  36. package/src/components/forms/DateRangeSelector.tsx +110 -0
  37. package/src/components/forms/FileUploader.tsx +324 -0
  38. package/src/components/forms/FormCheckbox.tsx +66 -0
  39. package/src/components/forms/FormContainerGeneric.tsx +39 -0
  40. package/src/components/forms/FormDate.tsx +247 -0
  41. package/src/components/forms/FormDateTime.tsx +231 -0
  42. package/src/components/forms/FormInput.tsx +110 -0
  43. package/src/components/forms/FormPassword.tsx +54 -0
  44. package/src/components/forms/FormPlaceAutocomplete.tsx +286 -0
  45. package/src/components/forms/FormSelect.tsx +72 -0
  46. package/src/components/forms/FormSlider.tsx +51 -0
  47. package/src/components/forms/FormSwitch.tsx +25 -0
  48. package/src/components/forms/FormTextarea.tsx +44 -0
  49. package/src/components/forms/MultiFileUploader.tsx +107 -0
  50. package/src/components/forms/PasswordInput.tsx +47 -0
  51. package/src/components/forms/index.ts +21 -0
  52. package/src/components/index.ts +11 -0
  53. package/src/components/navigations/Breadcrumb.tsx +83 -0
  54. package/src/components/navigations/ContentTitle.tsx +39 -0
  55. package/src/components/navigations/Header.tsx +27 -0
  56. package/src/components/navigations/ModeToggleSwitch.tsx +25 -0
  57. package/src/components/navigations/PageSection.tsx +64 -0
  58. package/src/components/navigations/RecentPagesNavigator.tsx +52 -0
  59. package/src/components/navigations/index.ts +6 -0
  60. package/src/components/pages/PageContainerContentDetails.tsx +76 -0
  61. package/src/components/pages/PageContentContainer.tsx +31 -0
  62. package/src/components/pages/index.ts +2 -0
  63. package/src/components/tables/ContentListTable.tsx +165 -0
  64. package/src/components/tables/ContentTableSearch.tsx +105 -0
  65. package/src/components/tables/cells/cell.component.tsx +18 -0
  66. package/src/components/tables/cells/cell.date.tsx +16 -0
  67. package/src/components/tables/cells/cell.id.tsx +27 -0
  68. package/src/components/tables/cells/cell.link.tsx +18 -0
  69. package/src/components/tables/cells/cell.text.tsx +12 -0
  70. package/src/components/tables/cells/cell.url.tsx +13 -0
  71. package/src/components/tables/cells/index.ts +5 -0
  72. package/src/components/tables/index.ts +3 -0
  73. package/src/contexts/SharedContext.tsx +35 -0
  74. package/src/contexts/index.ts +2 -0
  75. package/src/core/abstracts/AbstractApiData.ts +138 -0
  76. package/src/core/abstracts/AbstractService.ts +263 -0
  77. package/src/core/abstracts/index.ts +2 -0
  78. package/src/core/endpoint/EndpointCreator.ts +97 -0
  79. package/src/core/endpoint/index.ts +1 -0
  80. package/src/core/factories/JsonApiDataFactory.ts +12 -0
  81. package/src/core/factories/RehydrationFactory.ts +30 -0
  82. package/src/core/factories/index.ts +2 -0
  83. package/src/core/fields/FieldSelector.ts +15 -0
  84. package/src/core/fields/index.ts +1 -0
  85. package/src/core/index.ts +20 -0
  86. package/src/core/interfaces/ApiData.ts +8 -0
  87. package/src/core/interfaces/ApiDataInterface.ts +15 -0
  88. package/src/core/interfaces/ApiRequestDataTypeInterface.ts +14 -0
  89. package/src/core/interfaces/ApiResponseInterface.ts +17 -0
  90. package/src/core/interfaces/JsonApiHydratedDataInterface.ts +5 -0
  91. package/src/core/interfaces/index.ts +5 -0
  92. package/src/core/registry/DataClassRegistry.ts +51 -0
  93. package/src/core/registry/ModuleRegistrar.ts +43 -0
  94. package/src/core/registry/ModuleRegistry.ts +64 -0
  95. package/src/core/registry/index.ts +3 -0
  96. package/src/core/utils/index.ts +2 -0
  97. package/src/core/utils/rehydrate.ts +24 -0
  98. package/src/core/utils/translateResponse.ts +125 -0
  99. package/src/features/auth/auth.module.ts +9 -0
  100. package/src/features/auth/config.ts +57 -0
  101. package/src/features/auth/data/auth.interface.ts +31 -0
  102. package/src/features/auth/data/auth.service.ts +159 -0
  103. package/src/features/auth/data/auth.ts +54 -0
  104. package/src/features/auth/data/index.ts +3 -0
  105. package/src/features/auth/index.ts +3 -0
  106. package/src/features/company/company.module.ts +10 -0
  107. package/src/features/company/data/company.fields.ts +6 -0
  108. package/src/features/company/data/company.interface.ts +28 -0
  109. package/src/features/company/data/company.service.ts +73 -0
  110. package/src/features/company/data/company.ts +104 -0
  111. package/src/features/company/data/index.ts +4 -0
  112. package/src/features/company/index.ts +2 -0
  113. package/src/features/content/content.module.ts +20 -0
  114. package/src/features/content/data/content.fields.ts +13 -0
  115. package/src/features/content/data/content.interface.ts +23 -0
  116. package/src/features/content/data/content.service.ts +75 -0
  117. package/src/features/content/data/content.ts +85 -0
  118. package/src/features/content/data/index.ts +4 -0
  119. package/src/features/content/index.ts +2 -0
  120. package/src/features/feature/components/forms/FormFeatures.tsx +149 -0
  121. package/src/features/feature/components/index.ts +1 -0
  122. package/src/features/feature/data/feature.interface.ts +9 -0
  123. package/src/features/feature/data/feature.service.ts +19 -0
  124. package/src/features/feature/data/feature.ts +33 -0
  125. package/src/features/feature/data/index.ts +3 -0
  126. package/src/features/feature/feature.module.ts +10 -0
  127. package/src/features/feature/index.ts +3 -0
  128. package/src/features/index.ts +12 -0
  129. package/src/features/module/data/index.ts +2 -0
  130. package/src/features/module/data/module.interface.ts +12 -0
  131. package/src/features/module/data/module.ts +42 -0
  132. package/src/features/module/index.ts +2 -0
  133. package/src/features/module/module.module.ts +10 -0
  134. package/src/features/notification/data/index.ts +4 -0
  135. package/src/features/notification/data/notification.fields.ts +8 -0
  136. package/src/features/notification/data/notification.interface.ts +14 -0
  137. package/src/features/notification/data/notification.service.ts +34 -0
  138. package/src/features/notification/data/notification.ts +51 -0
  139. package/src/features/notification/index.ts +2 -0
  140. package/src/features/notification/notification.module.ts +10 -0
  141. package/src/features/push/data/index.ts +3 -0
  142. package/src/features/push/data/push.interface.ts +8 -0
  143. package/src/features/push/data/push.service.ts +17 -0
  144. package/src/features/push/data/push.ts +18 -0
  145. package/src/features/push/index.ts +2 -0
  146. package/src/features/push/push.module.ts +10 -0
  147. package/src/features/role/data/index.ts +4 -0
  148. package/src/features/role/data/role.fields.ts +8 -0
  149. package/src/features/role/data/role.interface.ts +16 -0
  150. package/src/features/role/data/role.service.ts +117 -0
  151. package/src/features/role/data/role.ts +62 -0
  152. package/src/features/role/index.ts +2 -0
  153. package/src/features/role/role.module.ts +10 -0
  154. package/src/features/s3/data/index.ts +3 -0
  155. package/src/features/s3/data/s3.interface.ts +11 -0
  156. package/src/features/s3/data/s3.service.ts +30 -0
  157. package/src/features/s3/data/s3.ts +60 -0
  158. package/src/features/s3/index.ts +2 -0
  159. package/src/features/s3/s3.module.ts +10 -0
  160. package/src/features/search/index.ts +1 -0
  161. package/src/features/search/interfaces/index.ts +1 -0
  162. package/src/features/search/interfaces/search.result.interface.ts +3 -0
  163. package/src/features/user/author.module.ts +10 -0
  164. package/src/features/user/components/index.ts +2 -0
  165. package/src/features/user/components/lists/ContributorsList.tsx +41 -0
  166. package/src/features/user/components/lists/index.ts +1 -0
  167. package/src/features/user/components/widgets/UserAvatar.tsx +86 -0
  168. package/src/features/user/components/widgets/index.ts +1 -0
  169. package/src/features/user/contexts/CurrentUserContext.tsx +156 -0
  170. package/src/features/user/contexts/index.ts +1 -0
  171. package/src/features/user/data/index.ts +4 -0
  172. package/src/features/user/data/user.fields.ts +8 -0
  173. package/src/features/user/data/user.interface.ts +41 -0
  174. package/src/features/user/data/user.service.ts +246 -0
  175. package/src/features/user/data/user.ts +162 -0
  176. package/src/features/user/index.ts +4 -0
  177. package/src/features/user/user.module.ts +21 -0
  178. package/src/hooks/TableGeneratorRegistry.ts +53 -0
  179. package/src/hooks/index.ts +33 -0
  180. package/src/hooks/types.ts +35 -0
  181. package/src/hooks/url.rewriter.ts +22 -0
  182. package/src/hooks/useCustomD3Graph.tsx +705 -0
  183. package/src/hooks/useDataListRetriever.ts +349 -0
  184. package/src/hooks/useDebounce.ts +33 -0
  185. package/src/hooks/usePageUrlGenerator.ts +50 -0
  186. package/src/hooks/useTableGenerator.ts +16 -0
  187. package/src/i18n/config.ts +73 -0
  188. package/src/i18n/index.ts +18 -0
  189. package/src/index.ts +16 -0
  190. package/src/interfaces/breadcrumb.item.data.interface.ts +4 -0
  191. package/src/interfaces/d3.link.interface.ts +7 -0
  192. package/src/interfaces/d3.node.interface.ts +12 -0
  193. package/src/interfaces/index.ts +3 -0
  194. package/src/permissions/check.ts +127 -0
  195. package/src/permissions/index.ts +2 -0
  196. package/src/permissions/types.ts +109 -0
  197. package/src/roles/config.ts +46 -0
  198. package/src/roles/index.ts +1 -0
  199. package/src/server/cache.ts +28 -0
  200. package/src/server/index.ts +3 -0
  201. package/src/server/request.ts +113 -0
  202. package/src/server/token.ts +10 -0
  203. package/src/shadcnui/custom/kanban.tsx +1001 -0
  204. package/src/shadcnui/custom/link.tsx +18 -0
  205. package/src/shadcnui/custom/multi-select.tsx +382 -0
  206. package/src/shadcnui/index.ts +49 -0
  207. package/src/shadcnui/ui/accordion.tsx +52 -0
  208. package/src/shadcnui/ui/alert-dialog.tsx +141 -0
  209. package/src/shadcnui/ui/alert.tsx +43 -0
  210. package/src/shadcnui/ui/avatar.tsx +50 -0
  211. package/src/shadcnui/ui/badge.tsx +40 -0
  212. package/src/shadcnui/ui/breadcrumb.tsx +115 -0
  213. package/src/shadcnui/ui/button.tsx +51 -0
  214. package/src/shadcnui/ui/calendar.tsx +73 -0
  215. package/src/shadcnui/ui/card.tsx +43 -0
  216. package/src/shadcnui/ui/carousel.tsx +225 -0
  217. package/src/shadcnui/ui/chart.tsx +320 -0
  218. package/src/shadcnui/ui/checkbox.tsx +29 -0
  219. package/src/shadcnui/ui/collapsible.tsx +11 -0
  220. package/src/shadcnui/ui/command.tsx +155 -0
  221. package/src/shadcnui/ui/context-menu.tsx +179 -0
  222. package/src/shadcnui/ui/dialog.tsx +96 -0
  223. package/src/shadcnui/ui/drawer.tsx +89 -0
  224. package/src/shadcnui/ui/dropdown-menu.tsx +205 -0
  225. package/src/shadcnui/ui/form.tsx +138 -0
  226. package/src/shadcnui/ui/hover-card.tsx +29 -0
  227. package/src/shadcnui/ui/input.tsx +21 -0
  228. package/src/shadcnui/ui/label.tsx +26 -0
  229. package/src/shadcnui/ui/navigation-menu.tsx +168 -0
  230. package/src/shadcnui/ui/popover.tsx +33 -0
  231. package/src/shadcnui/ui/progress.tsx +25 -0
  232. package/src/shadcnui/ui/radio-group.tsx +37 -0
  233. package/src/shadcnui/ui/resizable.tsx +47 -0
  234. package/src/shadcnui/ui/scroll-area.tsx +40 -0
  235. package/src/shadcnui/ui/select.tsx +164 -0
  236. package/src/shadcnui/ui/separator.tsx +28 -0
  237. package/src/shadcnui/ui/sheet.tsx +139 -0
  238. package/src/shadcnui/ui/sidebar.tsx +677 -0
  239. package/src/shadcnui/ui/skeleton.tsx +13 -0
  240. package/src/shadcnui/ui/slider.tsx +25 -0
  241. package/src/shadcnui/ui/sonner.tsx +25 -0
  242. package/src/shadcnui/ui/switch.tsx +31 -0
  243. package/src/shadcnui/ui/table.tsx +120 -0
  244. package/src/shadcnui/ui/tabs.tsx +55 -0
  245. package/src/shadcnui/ui/textarea.tsx +24 -0
  246. package/src/shadcnui/ui/toggle.tsx +39 -0
  247. package/src/shadcnui/ui/tooltip.tsx +61 -0
  248. package/src/unified/JsonApiRequest.ts +325 -0
  249. package/src/unified/index.ts +1 -0
  250. package/src/utils/blocknote-diff.util.ts +815 -0
  251. package/src/utils/blocknote-word-diff-renderer.util.ts +413 -0
  252. package/src/utils/cn.ts +6 -0
  253. package/src/utils/compose-refs.ts +61 -0
  254. package/src/utils/date-formatter.ts +53 -0
  255. package/src/utils/exists.ts +7 -0
  256. package/src/utils/index.ts +15 -0
  257. package/src/utils/schemas/entity.object.schema.ts +8 -0
  258. package/src/utils/schemas/index.ts +2 -0
  259. package/src/utils/schemas/user.object.schema.ts +9 -0
  260. package/src/utils/table-options.ts +67 -0
  261. package/src/utils/use-mobile.tsx +21 -0
@@ -0,0 +1,73 @@
1
+ import { AbstractService, EndpointCreator, HttpMethod, Modules, NextRef } from "../../../core";
2
+ import { CompanyInput, CompanyInterface } from "./company.interface";
3
+
4
+ export class CompanyService extends AbstractService {
5
+ static async findOne(params: { companyId: string }): Promise<CompanyInterface> {
6
+ return this.callApi<CompanyInterface>({
7
+ type: Modules.Company,
8
+ method: HttpMethod.GET,
9
+ endpoint: new EndpointCreator({ endpoint: Modules.Company, id: params.companyId }).generate(),
10
+ });
11
+ }
12
+
13
+ static async findMany(params: { search?: string; next?: NextRef }): Promise<CompanyInterface[]> {
14
+ const endpoint = new EndpointCreator({ endpoint: Modules.Company });
15
+
16
+ if (params.search) endpoint.addAdditionalParam("search", params.search);
17
+
18
+ return this.callApi<CompanyInterface[]>({
19
+ type: Modules.Company,
20
+ method: HttpMethod.GET,
21
+ endpoint: endpoint.generate(),
22
+ next: params.next,
23
+ });
24
+ }
25
+
26
+ static async delete(params: { companyId: string }): Promise<void> {
27
+ await this.callApi({
28
+ type: Modules.Company,
29
+ method: HttpMethod.DELETE,
30
+ endpoint: new EndpointCreator({ endpoint: Modules.Company, id: params.companyId }).generate(),
31
+ });
32
+ }
33
+
34
+ static async create(params: CompanyInput): Promise<CompanyInterface> {
35
+ return this.callApi({
36
+ type: Modules.Company,
37
+ method: HttpMethod.POST,
38
+ endpoint: new EndpointCreator({ endpoint: Modules.Company }).generate(),
39
+ input: params,
40
+ });
41
+ }
42
+
43
+ static async update(params: CompanyInput): Promise<CompanyInterface> {
44
+ return this.callApi({
45
+ type: Modules.Company,
46
+ method: HttpMethod.PUT,
47
+ endpoint: new EndpointCreator({ endpoint: Modules.Company, id: params.id }).generate(),
48
+ input: params,
49
+ });
50
+ }
51
+
52
+ static async updateConfigurations(params: CompanyInput): Promise<CompanyInterface> {
53
+ return this.callApi({
54
+ type: Modules.Company,
55
+ method: HttpMethod.PUT,
56
+ endpoint: new EndpointCreator({
57
+ endpoint: Modules.Company,
58
+ id: params.id,
59
+ childEndpoint: "configurations",
60
+ }).generate(),
61
+ input: params,
62
+ });
63
+ }
64
+
65
+ static async activateLicense(params: CompanyInput): Promise<CompanyInterface> {
66
+ return this.callApi({
67
+ type: Modules.Company,
68
+ method: HttpMethod.PUT,
69
+ endpoint: new EndpointCreator({ endpoint: Modules.Company, id: params.id, childEndpoint: "license" }).generate(),
70
+ input: params,
71
+ });
72
+ }
73
+ }
@@ -0,0 +1,104 @@
1
+ import { AbstractApiData, JsonApiHydratedDataInterface, Modules } from "../../../core";
2
+ import { FeatureInterface } from "../../feature";
3
+ import { ModuleInterface } from "../../module";
4
+ import { CompanyInput, CompanyInterface } from "./company.interface";
5
+
6
+ export class Company extends AbstractApiData implements CompanyInterface {
7
+ private _name?: string;
8
+ private _logo?: string;
9
+ private _logoUrl?: string;
10
+ private _configurations?: any;
11
+
12
+ private _licenseExpirationDate?: Date;
13
+
14
+ private _features?: FeatureInterface[];
15
+ private _modules?: ModuleInterface[];
16
+
17
+ get name(): string {
18
+ if (this._name === undefined) throw new Error("Name is not defined");
19
+ return this._name;
20
+ }
21
+
22
+ get logo(): string | undefined {
23
+ return this._logo;
24
+ }
25
+
26
+ get logoUrl(): string | undefined {
27
+ return this._logoUrl;
28
+ }
29
+
30
+ get licenseExpirationDate(): Date | undefined {
31
+ return this._licenseExpirationDate;
32
+ }
33
+
34
+ get features(): FeatureInterface[] {
35
+ return this._features ?? [];
36
+ }
37
+
38
+ get modules(): ModuleInterface[] {
39
+ return this._modules ?? [];
40
+ }
41
+
42
+ get configurations(): any | undefined {
43
+ return this._configurations;
44
+ }
45
+
46
+ rehydrate(data: JsonApiHydratedDataInterface): this {
47
+ super.rehydrate(data);
48
+
49
+ this._name = data.jsonApi.attributes.name;
50
+ this._configurations = data.jsonApi.attributes.configurations
51
+ ? JSON.parse(data.jsonApi.attributes.configurations)
52
+ : undefined;
53
+ this._logo = data.jsonApi.attributes.logo;
54
+ this._logoUrl = data.jsonApi.attributes.logoUrl;
55
+
56
+ this._licenseExpirationDate = data.jsonApi.attributes.licenseExpirationDate
57
+ ? new Date(data.jsonApi.attributes.licenseExpirationDate)
58
+ : undefined;
59
+
60
+ this._features = this._readIncluded<FeatureInterface>(data, "features", Modules.Feature) as FeatureInterface[];
61
+ this._modules = this._readIncluded<ModuleInterface>(data, "modules", Modules.Module) as ModuleInterface[];
62
+
63
+ return this;
64
+ }
65
+
66
+ createJsonApi(data: CompanyInput) {
67
+ const response: any = {
68
+ data: {
69
+ type: Modules.Company.name,
70
+ id: data.id,
71
+ attributes: {},
72
+ meta: {},
73
+ relationships: {},
74
+ },
75
+ included: [],
76
+ };
77
+
78
+ if (data.name) response.data.attributes.name = data.name;
79
+ if (data.configurations) response.data.attributes.configurations = JSON.stringify(data.configurations);
80
+ if (data.logo) response.data.attributes.logo = data.logo;
81
+ if (data.license) response.data.attributes.license = data.license;
82
+ if (data.privateKey) response.data.attributes.privateKey = data.privateKey;
83
+
84
+ if (data.featureIds && data.featureIds.length > 0) {
85
+ response.data.relationships.features = {
86
+ data: data.featureIds.map((featureId) => ({
87
+ type: Modules.Feature.name,
88
+ id: featureId,
89
+ })),
90
+ };
91
+ }
92
+
93
+ if (data.moduleIds && data.moduleIds.length > 0) {
94
+ response.data.relationships.modules = {
95
+ data: data.moduleIds.map((moduleId) => ({
96
+ type: Modules.Module.name,
97
+ id: moduleId,
98
+ })),
99
+ };
100
+ }
101
+
102
+ return response;
103
+ }
104
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./company";
2
+ export * from "./company.fields";
3
+ export * from "./company.interface";
4
+ export * from "./company.service";
@@ -0,0 +1,2 @@
1
+ export * from "./company.module";
2
+ export * from "./data";
@@ -0,0 +1,20 @@
1
+ import { createJsonApiInclusion } from "../../core";
2
+ import { ModuleFactory } from "../../permissions";
3
+ import { Content } from ".";
4
+
5
+ export const ContentModule = (factory: ModuleFactory) =>
6
+ factory({
7
+ pageUrl: "/contents",
8
+ name: "contents",
9
+ model: Content,
10
+ inclusions: {
11
+ lists: {
12
+ fields: [
13
+ createJsonApiInclusion("content", [`name`, `tldr`, `abstract`, `aiStatus`, `relevance`]),
14
+ createJsonApiInclusion("users", [`name`, `avatar`]),
15
+ createJsonApiInclusion("topics", [`name`]),
16
+ createJsonApiInclusion("expertises", [`name`]),
17
+ ],
18
+ },
19
+ },
20
+ });
@@ -0,0 +1,13 @@
1
+ export enum ContentFields {
2
+ contentId = "contentId",
3
+
4
+ name = "name",
5
+ relevance = "relevance",
6
+
7
+ authors = "authors",
8
+ topic = "topic",
9
+ expertise = "expertise",
10
+
11
+ createdAt = "createdAt",
12
+ updatedAt = "updatedAt",
13
+ }
@@ -0,0 +1,23 @@
1
+ import { ApiDataInterface } from "../../../core";
2
+ import { UserInterface } from "../../user";
3
+
4
+ export type ContentInput = {
5
+ id: string;
6
+ name?: string;
7
+
8
+ authorId: string;
9
+ editorIds?: string[];
10
+ };
11
+
12
+ export interface ContentInterface extends ApiDataInterface {
13
+ get contentType(): string | undefined;
14
+ get name(): string;
15
+ get abstract(): string | undefined;
16
+ get tldr(): string | undefined;
17
+ get aiStatus(): string;
18
+
19
+ get relevance(): number | undefined;
20
+
21
+ get author(): UserInterface;
22
+ get editors(): UserInterface[];
23
+ }
@@ -0,0 +1,75 @@
1
+ import { AbstractService, EndpointCreator, HttpMethod, Modules, NextRef, PreviousRef } from "../../../core";
2
+ import { ContentInterface } from "./content.interface";
3
+
4
+ export class ContentService extends AbstractService {
5
+ static async findMany(params: {
6
+ contentIds?: string[];
7
+ search?: string;
8
+ fetchAll?: boolean;
9
+ next?: NextRef;
10
+ prev?: PreviousRef;
11
+ }): Promise<ContentInterface[]> {
12
+ const endpoint = new EndpointCreator({ endpoint: Modules.Content });
13
+
14
+ if (params.contentIds) {
15
+ endpoint.addAdditionalParam("contentIds", params.contentIds.join(","));
16
+ endpoint.addAdditionalParam("fetchAll", "true");
17
+ } else {
18
+ if (params.fetchAll) endpoint.addAdditionalParam("fetchAll", "true");
19
+ if (params.search) endpoint.addAdditionalParam("search", params.search);
20
+ }
21
+ if (Modules.Content.inclusions?.lists?.fields) endpoint.limitToFields(Modules.Content.inclusions.lists.fields);
22
+ if (Modules.Content.inclusions?.lists?.types) endpoint.limitToType(Modules.Content.inclusions.lists.types);
23
+
24
+ return this.callApi({
25
+ type: Modules.Content,
26
+ method: HttpMethod.GET,
27
+ endpoint: endpoint.generate(),
28
+ next: params.next,
29
+ });
30
+ }
31
+
32
+ static async findRelevant(params: { id: string; next?: NextRef; prev?: PreviousRef }): Promise<ContentInterface[]> {
33
+ const endpoint: EndpointCreator = new EndpointCreator({
34
+ endpoint: Modules.Content,
35
+ id: params.id,
36
+ childEndpoint: "relevance",
37
+ });
38
+
39
+ if (Modules.Content.inclusions?.lists?.fields) endpoint.limitToFields(Modules.Content.inclusions.lists.fields);
40
+ if (Modules.Content.inclusions?.lists?.types) endpoint.limitToType(Modules.Content.inclusions.lists.types);
41
+
42
+ return this.callApi<ContentInterface[]>({
43
+ type: Modules.Content,
44
+ method: HttpMethod.GET,
45
+ endpoint: endpoint.generate(),
46
+ next: params.next,
47
+ });
48
+ }
49
+
50
+ static async findManyByAuthor(params: {
51
+ userId: string;
52
+ search?: string;
53
+ fetchAll?: boolean;
54
+ next?: NextRef;
55
+ prev?: PreviousRef;
56
+ }): Promise<ContentInterface[]> {
57
+ const endpoint = new EndpointCreator({
58
+ endpoint: Modules.Author,
59
+ id: params.userId,
60
+ childEndpoint: Modules.Content,
61
+ });
62
+
63
+ if (params.fetchAll) endpoint.addAdditionalParam("fetchAll", "true");
64
+ if (params.search) endpoint.addAdditionalParam("search", params.search);
65
+ if (Modules.Content.inclusions?.lists?.fields) endpoint.limitToFields(Modules.Content.inclusions.lists.fields);
66
+ if (Modules.Content.inclusions?.lists?.types) endpoint.limitToType(Modules.Content.inclusions.lists.types);
67
+
68
+ return this.callApi({
69
+ type: Modules.Content,
70
+ method: HttpMethod.GET,
71
+ endpoint: endpoint.generate(),
72
+ next: params.next,
73
+ });
74
+ }
75
+ }
@@ -0,0 +1,85 @@
1
+ import { AbstractApiData, JsonApiHydratedDataInterface, Modules } from "../../../core";
2
+ import { SearchResultInterface } from "../../search/interfaces/search.result.interface";
3
+ import { UserInterface } from "../../user";
4
+ import { ContentInput, ContentInterface } from "./content.interface";
5
+
6
+ export class Content extends AbstractApiData implements ContentInterface, SearchResultInterface {
7
+ private _contentType?: string;
8
+
9
+ private _name?: string;
10
+ private _abstract?: string;
11
+ private _tldr?: string;
12
+ private _aiStatus?: string;
13
+ private _relevance?: number;
14
+
15
+ private _author?: UserInterface;
16
+ private _editors?: UserInterface[];
17
+
18
+ get searchResult(): string {
19
+ return this._name ?? "";
20
+ }
21
+
22
+ get contentType(): string | undefined {
23
+ return this._contentType;
24
+ }
25
+
26
+ get name(): string {
27
+ if (this._name === undefined) throw new Error("JsonApi error: content name is missing");
28
+ return this._name;
29
+ }
30
+
31
+ get abstract(): string | undefined {
32
+ return this._abstract;
33
+ }
34
+
35
+ get tldr(): string | undefined {
36
+ return this._tldr;
37
+ }
38
+
39
+ get aiStatus(): string {
40
+ return this._aiStatus ?? "";
41
+ }
42
+
43
+ get relevance(): number | undefined {
44
+ return this._relevance;
45
+ }
46
+
47
+ get author(): UserInterface {
48
+ if (this._author === undefined) throw new Error("JsonApi error: document author is missing");
49
+ return this._author;
50
+ }
51
+
52
+ get editors(): UserInterface[] {
53
+ return this._editors ?? [];
54
+ }
55
+
56
+ rehydrate(data: JsonApiHydratedDataInterface): this {
57
+ super.rehydrate(data);
58
+
59
+ this._contentType = data.jsonApi.meta.contentType;
60
+
61
+ this._name = data.jsonApi.attributes.name;
62
+ this._abstract = data.jsonApi.attributes.abstract;
63
+ this._tldr = data.jsonApi.attributes.tldr;
64
+ this._aiStatus = data.jsonApi.meta.aiStatus;
65
+ this._relevance = data.jsonApi.meta.relevance;
66
+
67
+ this._author = this._readIncluded(data, "author", Modules.User) as UserInterface;
68
+ this._editors = this._readIncluded(data, "editors", Modules.User) as UserInterface[];
69
+
70
+ return this;
71
+ }
72
+
73
+ protected addContentInput(response: any, data: ContentInput) {
74
+ if (data.name) response.data.attributes.name = data.name;
75
+
76
+ if (data.authorId) {
77
+ response.data.relationships.author = {
78
+ data: {
79
+ type: Modules.User.name,
80
+ id: data.authorId,
81
+ },
82
+ };
83
+ }
84
+ }
85
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./content";
2
+ export * from "./content.fields";
3
+ export * from "./content.interface";
4
+ export * from "./content.service";
@@ -0,0 +1,2 @@
1
+ export * from "./content.module";
2
+ export * from "./data";
@@ -0,0 +1,149 @@
1
+ // "use client";
2
+
3
+ // import { FeatureInterface, ModuleInterface } from "@carlonicora/nextjs-jsonapi/features";
4
+ // import {
5
+ // Accordion,
6
+ // AccordionContent,
7
+ // AccordionItem,
8
+ // AccordionTrigger,
9
+ // Checkbox,
10
+ // FormLabel,
11
+ // FormMessage,
12
+ // } from "@carlonicora/nextjs-jsonapi/shadcnui";
13
+
14
+ // type FormFeaturesProps = {
15
+ // form: any;
16
+ // name?: string;
17
+ // features: FeatureInterface[];
18
+ // featureField?: string;
19
+ // moduleField?: string;
20
+ // };
21
+
22
+ // export function FormFeatures({
23
+ // form,
24
+ // name,
25
+ // features,
26
+ // featureField = "featureIds",
27
+ // moduleField = "moduleIds",
28
+ // }: FormFeaturesProps) {
29
+ // const selectedFeatures: string[] = form.watch(featureField);
30
+ // const selectedModules: string[] = form.watch(moduleField);
31
+
32
+ // const toggleFeature = (feature: FeatureInterface, checked: boolean) => {
33
+ // let newFeatureIds = [...selectedFeatures];
34
+ // let newModuleIds = [...selectedModules];
35
+
36
+ // if (checked) {
37
+ // if (!newFeatureIds.includes(feature.id)) {
38
+ // newFeatureIds.push(feature.id);
39
+ // }
40
+ // feature.modules.forEach((module) => {
41
+ // if (!newModuleIds.includes(module.id)) {
42
+ // newModuleIds.push(module.id);
43
+ // }
44
+ // });
45
+ // } else {
46
+ // newFeatureIds = newFeatureIds.filter((id) => id !== feature.id);
47
+ // feature.modules.forEach((module) => {
48
+ // newModuleIds = newModuleIds.filter((id) => id !== module.id);
49
+ // });
50
+ // }
51
+ // form.setValue(featureField, newFeatureIds);
52
+ // form.setValue(moduleField, newModuleIds);
53
+ // };
54
+
55
+ // const toggleModule = (feature: FeatureInterface, module: ModuleInterface, checked: boolean) => {
56
+ // const modulesForFeature = feature.modules.map((m) => m.id);
57
+ // let newModuleIds = [...selectedModules];
58
+
59
+ // if (checked) {
60
+ // if (!selectedFeatures.includes(feature.id)) {
61
+ // newModuleIds = newModuleIds.filter((id) => !modulesForFeature.includes(id));
62
+ // newModuleIds.push(module.id);
63
+ // form.setValue(featureField, [...selectedFeatures, feature.id]);
64
+ // } else {
65
+ // if (!newModuleIds.includes(module.id)) {
66
+ // newModuleIds.push(module.id);
67
+ // }
68
+ // }
69
+ // } else {
70
+ // newModuleIds = newModuleIds.filter((id) => id !== module.id);
71
+ // const remaining = feature.modules.filter((m) => newModuleIds.includes(m.id));
72
+ // if (remaining.length === 0) {
73
+ // form.setValue(
74
+ // featureField,
75
+ // selectedFeatures.filter((id) => id !== feature.id),
76
+ // );
77
+ // }
78
+ // }
79
+ // form.setValue(moduleField, newModuleIds);
80
+ // };
81
+
82
+ // const isFeatureChecked = (feature: FeatureInterface) =>
83
+ // selectedFeatures.includes(feature.id) || feature.modules.every((module) => selectedModules.includes(module.id));
84
+
85
+ // return (
86
+ // <div className="flex w-full flex-col">
87
+ // {name && <h2 className="mb-5 font-semibold">{name}</h2>}
88
+ // {features.map((feature) => (
89
+ // <Accordion
90
+ // key={feature.id}
91
+ // type="single"
92
+ // collapsible
93
+ // // className={`w-full p-0 ${feature.modules.filter((module) => !module.isCore).length === 0 ? "border-t" : ""}`}
94
+ // className={`w-full p-0`}
95
+ // >
96
+ // <AccordionItem value={feature.id} className="p-0">
97
+ // <div
98
+ // className={`flex items-center justify-between p-0 ${feature.modules.filter((module) => !module.isCore).length === 0 ? "py-4" : ""}`}
99
+ // >
100
+ // <div className="flex items-center" onClick={(e) => e.stopPropagation()}>
101
+ // <Checkbox
102
+ // id={feature.id}
103
+ // checked={isFeatureChecked(feature)}
104
+ // onCheckedChange={(val) => {
105
+ // toggleFeature(feature, val === true);
106
+ // }}
107
+ // />
108
+ // <FormLabel htmlFor={feature.id} className="ml-3 cursor-pointer font-normal">
109
+ // {feature.name}
110
+ // </FormLabel>
111
+ // </div>
112
+ // {feature.modules.filter((module) => !module.isCore).length > 0 && (
113
+ // <AccordionTrigger asChild>
114
+ // <div className="w-full"></div>
115
+ // </AccordionTrigger>
116
+ // )}
117
+ // </div>
118
+ // {feature.modules.filter((module) => !module.isCore).length > 0 && (
119
+ // <AccordionContent className="pl-6">
120
+ // {feature.modules
121
+ // .filter((module) => !module.isCore)
122
+ // .sort((a: ModuleInterface, b: ModuleInterface) => a.name.localeCompare(b.name))
123
+ // .map((module: ModuleInterface) => (
124
+ // <div
125
+ // key={module.id}
126
+ // className="flex items-center border-t py-2"
127
+ // onClick={(e) => e.stopPropagation()}
128
+ // >
129
+ // <Checkbox
130
+ // id={module.id}
131
+ // checked={selectedModules.includes(module.id)}
132
+ // onCheckedChange={(val) => {
133
+ // toggleModule(feature, module, val === true);
134
+ // }}
135
+ // />
136
+ // <FormLabel htmlFor={module.id} className="ml-3 cursor-pointer font-normal">
137
+ // {module.name}
138
+ // </FormLabel>
139
+ // </div>
140
+ // ))}
141
+ // </AccordionContent>
142
+ // )}
143
+ // </AccordionItem>
144
+ // </Accordion>
145
+ // ))}
146
+ // <FormMessage />
147
+ // </div>
148
+ // );
149
+ // }
@@ -0,0 +1 @@
1
+ // export * from "./forms/FormFeatures";
@@ -0,0 +1,9 @@
1
+ import { ApiDataInterface } from "../../../core";
2
+ import { ModuleInterface } from "../../module";
3
+
4
+ export interface FeatureInterface extends ApiDataInterface {
5
+ get name(): string;
6
+ get isProduction(): boolean;
7
+
8
+ get modules(): ModuleInterface[];
9
+ }
@@ -0,0 +1,19 @@
1
+ import { AbstractService, EndpointCreator, HttpMethod, Modules, NextRef } from "../../../core";
2
+ import { FeatureInterface } from "./feature.interface";
3
+
4
+ export class FeatureService extends AbstractService {
5
+ static async findMany(params: { companyId?: string; search?: string; next?: NextRef }): Promise<FeatureInterface[]> {
6
+ const endpoint = new EndpointCreator({ endpoint: Modules.Feature });
7
+
8
+ if (params.companyId) endpoint.endpoint(Modules.Company).id(params.companyId).childEndpoint(Modules.Feature);
9
+
10
+ if (params.search) endpoint.addAdditionalParam("search", params.search);
11
+
12
+ return this.callApi<FeatureInterface[]>({
13
+ type: Modules.Feature,
14
+ method: HttpMethod.GET,
15
+ endpoint: endpoint.generate(),
16
+ next: params.next,
17
+ });
18
+ }
19
+ }
@@ -0,0 +1,33 @@
1
+ import { AbstractApiData, JsonApiHydratedDataInterface, Modules } from "../../../core";
2
+ import { ModuleInterface } from "../../module";
3
+ import { FeatureInterface } from "./feature.interface";
4
+
5
+ export class Feature extends AbstractApiData implements FeatureInterface {
6
+ private _name?: string;
7
+ private _isProduction?: boolean;
8
+
9
+ private _modules: ModuleInterface[] = [];
10
+
11
+ get name(): string {
12
+ return this._name ?? "";
13
+ }
14
+
15
+ get isProduction(): boolean {
16
+ return this._isProduction == true ? true : false;
17
+ }
18
+
19
+ get modules(): ModuleInterface[] {
20
+ return this._modules;
21
+ }
22
+
23
+ rehydrate(data: JsonApiHydratedDataInterface): this {
24
+ super.rehydrate(data);
25
+
26
+ this._name = data.jsonApi.attributes.name;
27
+ this._isProduction = data.jsonApi.attributes.isProduction ?? false;
28
+
29
+ this._modules = this._readIncluded(data, `modules`, Modules.Module) as ModuleInterface[];
30
+
31
+ return this;
32
+ }
33
+ }
@@ -0,0 +1,3 @@
1
+ export * from "./feature";
2
+ export * from "./feature.interface";
3
+ export * from "./feature.service";
@@ -0,0 +1,10 @@
1
+ import { ModuleFactory } from "../../permissions";
2
+ import { Feature } from "./data/feature";
3
+
4
+ export const FeatureModule = (factory: ModuleFactory) =>
5
+ factory({
6
+ pageUrl: "/features",
7
+ name: "features",
8
+ model: Feature,
9
+ moduleId: "025fdd23-2803-4360-9fd9-eaa3612c2e23",
10
+ });
@@ -0,0 +1,3 @@
1
+ // export * from "./components";
2
+ export * from "./data";
3
+ export * from "./feature.module";
@@ -0,0 +1,12 @@
1
+ // S3 feature exports
2
+ export * from "./auth";
3
+ export * from "./company";
4
+ export * from "./content";
5
+ export * from "./feature";
6
+ export * from "./module";
7
+ export * from "./notification";
8
+ export * from "./push";
9
+ export * from "./role";
10
+ export * from "./s3";
11
+ export * from "./search";
12
+ export * from "./user";
@@ -0,0 +1,2 @@
1
+ export * from "./module";
2
+ export * from "./module.interface";