@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.
- package/package.json +2 -1
- package/src/atoms/index.ts +1 -0
- package/src/atoms/recentPagesAtom.ts +10 -0
- package/src/client/context/JsonApiContext.ts +61 -0
- package/src/client/context/JsonApiProvider.tsx +27 -0
- package/src/client/context/index.ts +2 -0
- package/src/client/hooks/index.ts +3 -0
- package/src/client/hooks/useJsonApiGet.ts +188 -0
- package/src/client/hooks/useJsonApiMutation.ts +193 -0
- package/src/client/hooks/useRehydration.ts +47 -0
- package/src/client/index.ts +11 -0
- package/src/client/request.ts +97 -0
- package/src/client/token.ts +10 -0
- package/src/components/containers/PageContainer.tsx +15 -0
- package/src/components/containers/ReactMarkdownContainer.tsx +119 -0
- package/src/components/containers/TabsContainer.tsx +93 -0
- package/src/components/containers/index.ts +3 -0
- package/src/components/contents/AttributeElement.tsx +20 -0
- package/src/components/contents/index.ts +1 -0
- package/src/components/details/AllowedUsersDetails.tsx +23 -0
- package/src/components/details/index.ts +1 -0
- package/src/components/editors/BlockNoteDiffInlineContent.tsx +152 -0
- package/src/components/editors/BlockNoteEditor.tsx +404 -0
- package/src/components/editors/BlockNoteEditorContainer.tsx +13 -0
- package/src/components/editors/BlockNoteEditorFormattingToolbar.tsx +38 -0
- package/src/components/editors/index.ts +1 -0
- package/src/components/errors/ErrorDetails.tsx +41 -0
- package/src/components/errors/errorToast.ts +9 -0
- package/src/components/errors/index.ts +2 -0
- package/src/components/forms/CommonAssociationForm.tsx +162 -0
- package/src/components/forms/CommonDeleter.tsx +94 -0
- package/src/components/forms/CommonEditorButtons.tsx +30 -0
- package/src/components/forms/CommonEditorHeader.tsx +35 -0
- package/src/components/forms/CommonEditorTrigger.tsx +26 -0
- package/src/components/forms/DatePickerPopover.tsx +219 -0
- package/src/components/forms/DateRangeSelector.tsx +110 -0
- package/src/components/forms/FileUploader.tsx +324 -0
- package/src/components/forms/FormCheckbox.tsx +66 -0
- package/src/components/forms/FormContainerGeneric.tsx +39 -0
- package/src/components/forms/FormDate.tsx +247 -0
- package/src/components/forms/FormDateTime.tsx +231 -0
- package/src/components/forms/FormInput.tsx +110 -0
- package/src/components/forms/FormPassword.tsx +54 -0
- package/src/components/forms/FormPlaceAutocomplete.tsx +286 -0
- package/src/components/forms/FormSelect.tsx +72 -0
- package/src/components/forms/FormSlider.tsx +51 -0
- package/src/components/forms/FormSwitch.tsx +25 -0
- package/src/components/forms/FormTextarea.tsx +44 -0
- package/src/components/forms/MultiFileUploader.tsx +107 -0
- package/src/components/forms/PasswordInput.tsx +47 -0
- package/src/components/forms/index.ts +21 -0
- package/src/components/index.ts +11 -0
- package/src/components/navigations/Breadcrumb.tsx +83 -0
- package/src/components/navigations/ContentTitle.tsx +39 -0
- package/src/components/navigations/Header.tsx +27 -0
- package/src/components/navigations/ModeToggleSwitch.tsx +25 -0
- package/src/components/navigations/PageSection.tsx +64 -0
- package/src/components/navigations/RecentPagesNavigator.tsx +52 -0
- package/src/components/navigations/index.ts +6 -0
- package/src/components/pages/PageContainerContentDetails.tsx +76 -0
- package/src/components/pages/PageContentContainer.tsx +31 -0
- package/src/components/pages/index.ts +2 -0
- package/src/components/tables/ContentListTable.tsx +165 -0
- package/src/components/tables/ContentTableSearch.tsx +105 -0
- package/src/components/tables/cells/cell.component.tsx +18 -0
- package/src/components/tables/cells/cell.date.tsx +16 -0
- package/src/components/tables/cells/cell.id.tsx +27 -0
- package/src/components/tables/cells/cell.link.tsx +18 -0
- package/src/components/tables/cells/cell.text.tsx +12 -0
- package/src/components/tables/cells/cell.url.tsx +13 -0
- package/src/components/tables/cells/index.ts +5 -0
- package/src/components/tables/index.ts +3 -0
- package/src/contexts/SharedContext.tsx +35 -0
- package/src/contexts/index.ts +2 -0
- package/src/core/abstracts/AbstractApiData.ts +138 -0
- package/src/core/abstracts/AbstractService.ts +263 -0
- package/src/core/abstracts/index.ts +2 -0
- package/src/core/endpoint/EndpointCreator.ts +97 -0
- package/src/core/endpoint/index.ts +1 -0
- package/src/core/factories/JsonApiDataFactory.ts +12 -0
- package/src/core/factories/RehydrationFactory.ts +30 -0
- package/src/core/factories/index.ts +2 -0
- package/src/core/fields/FieldSelector.ts +15 -0
- package/src/core/fields/index.ts +1 -0
- package/src/core/index.ts +20 -0
- package/src/core/interfaces/ApiData.ts +8 -0
- package/src/core/interfaces/ApiDataInterface.ts +15 -0
- package/src/core/interfaces/ApiRequestDataTypeInterface.ts +14 -0
- package/src/core/interfaces/ApiResponseInterface.ts +17 -0
- package/src/core/interfaces/JsonApiHydratedDataInterface.ts +5 -0
- package/src/core/interfaces/index.ts +5 -0
- package/src/core/registry/DataClassRegistry.ts +51 -0
- package/src/core/registry/ModuleRegistrar.ts +43 -0
- package/src/core/registry/ModuleRegistry.ts +64 -0
- package/src/core/registry/index.ts +3 -0
- package/src/core/utils/index.ts +2 -0
- package/src/core/utils/rehydrate.ts +24 -0
- package/src/core/utils/translateResponse.ts +125 -0
- package/src/features/auth/auth.module.ts +9 -0
- package/src/features/auth/config.ts +57 -0
- package/src/features/auth/data/auth.interface.ts +31 -0
- package/src/features/auth/data/auth.service.ts +159 -0
- package/src/features/auth/data/auth.ts +54 -0
- package/src/features/auth/data/index.ts +3 -0
- package/src/features/auth/index.ts +3 -0
- package/src/features/company/company.module.ts +10 -0
- package/src/features/company/data/company.fields.ts +6 -0
- package/src/features/company/data/company.interface.ts +28 -0
- package/src/features/company/data/company.service.ts +73 -0
- package/src/features/company/data/company.ts +104 -0
- package/src/features/company/data/index.ts +4 -0
- package/src/features/company/index.ts +2 -0
- package/src/features/content/content.module.ts +20 -0
- package/src/features/content/data/content.fields.ts +13 -0
- package/src/features/content/data/content.interface.ts +23 -0
- package/src/features/content/data/content.service.ts +75 -0
- package/src/features/content/data/content.ts +85 -0
- package/src/features/content/data/index.ts +4 -0
- package/src/features/content/index.ts +2 -0
- package/src/features/feature/components/forms/FormFeatures.tsx +149 -0
- package/src/features/feature/components/index.ts +1 -0
- package/src/features/feature/data/feature.interface.ts +9 -0
- package/src/features/feature/data/feature.service.ts +19 -0
- package/src/features/feature/data/feature.ts +33 -0
- package/src/features/feature/data/index.ts +3 -0
- package/src/features/feature/feature.module.ts +10 -0
- package/src/features/feature/index.ts +3 -0
- package/src/features/index.ts +12 -0
- package/src/features/module/data/index.ts +2 -0
- package/src/features/module/data/module.interface.ts +12 -0
- package/src/features/module/data/module.ts +42 -0
- package/src/features/module/index.ts +2 -0
- package/src/features/module/module.module.ts +10 -0
- package/src/features/notification/data/index.ts +4 -0
- package/src/features/notification/data/notification.fields.ts +8 -0
- package/src/features/notification/data/notification.interface.ts +14 -0
- package/src/features/notification/data/notification.service.ts +34 -0
- package/src/features/notification/data/notification.ts +51 -0
- package/src/features/notification/index.ts +2 -0
- package/src/features/notification/notification.module.ts +10 -0
- package/src/features/push/data/index.ts +3 -0
- package/src/features/push/data/push.interface.ts +8 -0
- package/src/features/push/data/push.service.ts +17 -0
- package/src/features/push/data/push.ts +18 -0
- package/src/features/push/index.ts +2 -0
- package/src/features/push/push.module.ts +10 -0
- package/src/features/role/data/index.ts +4 -0
- package/src/features/role/data/role.fields.ts +8 -0
- package/src/features/role/data/role.interface.ts +16 -0
- package/src/features/role/data/role.service.ts +117 -0
- package/src/features/role/data/role.ts +62 -0
- package/src/features/role/index.ts +2 -0
- package/src/features/role/role.module.ts +10 -0
- package/src/features/s3/data/index.ts +3 -0
- package/src/features/s3/data/s3.interface.ts +11 -0
- package/src/features/s3/data/s3.service.ts +30 -0
- package/src/features/s3/data/s3.ts +60 -0
- package/src/features/s3/index.ts +2 -0
- package/src/features/s3/s3.module.ts +10 -0
- package/src/features/search/index.ts +1 -0
- package/src/features/search/interfaces/index.ts +1 -0
- package/src/features/search/interfaces/search.result.interface.ts +3 -0
- package/src/features/user/author.module.ts +10 -0
- package/src/features/user/components/index.ts +2 -0
- package/src/features/user/components/lists/ContributorsList.tsx +41 -0
- package/src/features/user/components/lists/index.ts +1 -0
- package/src/features/user/components/widgets/UserAvatar.tsx +86 -0
- package/src/features/user/components/widgets/index.ts +1 -0
- package/src/features/user/contexts/CurrentUserContext.tsx +156 -0
- package/src/features/user/contexts/index.ts +1 -0
- package/src/features/user/data/index.ts +4 -0
- package/src/features/user/data/user.fields.ts +8 -0
- package/src/features/user/data/user.interface.ts +41 -0
- package/src/features/user/data/user.service.ts +246 -0
- package/src/features/user/data/user.ts +162 -0
- package/src/features/user/index.ts +4 -0
- package/src/features/user/user.module.ts +21 -0
- package/src/hooks/TableGeneratorRegistry.ts +53 -0
- package/src/hooks/index.ts +33 -0
- package/src/hooks/types.ts +35 -0
- package/src/hooks/url.rewriter.ts +22 -0
- package/src/hooks/useCustomD3Graph.tsx +705 -0
- package/src/hooks/useDataListRetriever.ts +349 -0
- package/src/hooks/useDebounce.ts +33 -0
- package/src/hooks/usePageUrlGenerator.ts +50 -0
- package/src/hooks/useTableGenerator.ts +16 -0
- package/src/i18n/config.ts +73 -0
- package/src/i18n/index.ts +18 -0
- package/src/index.ts +16 -0
- package/src/interfaces/breadcrumb.item.data.interface.ts +4 -0
- package/src/interfaces/d3.link.interface.ts +7 -0
- package/src/interfaces/d3.node.interface.ts +12 -0
- package/src/interfaces/index.ts +3 -0
- package/src/permissions/check.ts +127 -0
- package/src/permissions/index.ts +2 -0
- package/src/permissions/types.ts +109 -0
- package/src/roles/config.ts +46 -0
- package/src/roles/index.ts +1 -0
- package/src/server/cache.ts +28 -0
- package/src/server/index.ts +3 -0
- package/src/server/request.ts +113 -0
- package/src/server/token.ts +10 -0
- package/src/shadcnui/custom/kanban.tsx +1001 -0
- package/src/shadcnui/custom/link.tsx +18 -0
- package/src/shadcnui/custom/multi-select.tsx +382 -0
- package/src/shadcnui/index.ts +49 -0
- package/src/shadcnui/ui/accordion.tsx +52 -0
- package/src/shadcnui/ui/alert-dialog.tsx +141 -0
- package/src/shadcnui/ui/alert.tsx +43 -0
- package/src/shadcnui/ui/avatar.tsx +50 -0
- package/src/shadcnui/ui/badge.tsx +40 -0
- package/src/shadcnui/ui/breadcrumb.tsx +115 -0
- package/src/shadcnui/ui/button.tsx +51 -0
- package/src/shadcnui/ui/calendar.tsx +73 -0
- package/src/shadcnui/ui/card.tsx +43 -0
- package/src/shadcnui/ui/carousel.tsx +225 -0
- package/src/shadcnui/ui/chart.tsx +320 -0
- package/src/shadcnui/ui/checkbox.tsx +29 -0
- package/src/shadcnui/ui/collapsible.tsx +11 -0
- package/src/shadcnui/ui/command.tsx +155 -0
- package/src/shadcnui/ui/context-menu.tsx +179 -0
- package/src/shadcnui/ui/dialog.tsx +96 -0
- package/src/shadcnui/ui/drawer.tsx +89 -0
- package/src/shadcnui/ui/dropdown-menu.tsx +205 -0
- package/src/shadcnui/ui/form.tsx +138 -0
- package/src/shadcnui/ui/hover-card.tsx +29 -0
- package/src/shadcnui/ui/input.tsx +21 -0
- package/src/shadcnui/ui/label.tsx +26 -0
- package/src/shadcnui/ui/navigation-menu.tsx +168 -0
- package/src/shadcnui/ui/popover.tsx +33 -0
- package/src/shadcnui/ui/progress.tsx +25 -0
- package/src/shadcnui/ui/radio-group.tsx +37 -0
- package/src/shadcnui/ui/resizable.tsx +47 -0
- package/src/shadcnui/ui/scroll-area.tsx +40 -0
- package/src/shadcnui/ui/select.tsx +164 -0
- package/src/shadcnui/ui/separator.tsx +28 -0
- package/src/shadcnui/ui/sheet.tsx +139 -0
- package/src/shadcnui/ui/sidebar.tsx +677 -0
- package/src/shadcnui/ui/skeleton.tsx +13 -0
- package/src/shadcnui/ui/slider.tsx +25 -0
- package/src/shadcnui/ui/sonner.tsx +25 -0
- package/src/shadcnui/ui/switch.tsx +31 -0
- package/src/shadcnui/ui/table.tsx +120 -0
- package/src/shadcnui/ui/tabs.tsx +55 -0
- package/src/shadcnui/ui/textarea.tsx +24 -0
- package/src/shadcnui/ui/toggle.tsx +39 -0
- package/src/shadcnui/ui/tooltip.tsx +61 -0
- package/src/unified/JsonApiRequest.ts +325 -0
- package/src/unified/index.ts +1 -0
- package/src/utils/blocknote-diff.util.ts +815 -0
- package/src/utils/blocknote-word-diff-renderer.util.ts +413 -0
- package/src/utils/cn.ts +6 -0
- package/src/utils/compose-refs.ts +61 -0
- package/src/utils/date-formatter.ts +53 -0
- package/src/utils/exists.ts +7 -0
- package/src/utils/index.ts +15 -0
- package/src/utils/schemas/entity.object.schema.ts +8 -0
- package/src/utils/schemas/index.ts +2 -0
- package/src/utils/schemas/user.object.schema.ts +9 -0
- package/src/utils/table-options.ts +67 -0
- package/src/utils/use-mobile.tsx +21 -0
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { AbstractApiData, JsonApiHydratedDataInterface, Modules } from "../../../core";
|
|
2
|
+
import { CompanyInterface } from "../../company";
|
|
3
|
+
import { ModuleInterface } from "../../module";
|
|
4
|
+
import { RoleInterface } from "../../role";
|
|
5
|
+
import { SearchResultInterface } from "../../search";
|
|
6
|
+
import { UserInput, UserInterface } from "./user.interface";
|
|
7
|
+
|
|
8
|
+
export class User extends AbstractApiData implements UserInterface, SearchResultInterface {
|
|
9
|
+
private _name?: string;
|
|
10
|
+
private _email?: string;
|
|
11
|
+
private _title?: string;
|
|
12
|
+
private _bio?: string;
|
|
13
|
+
private _avatar?: string;
|
|
14
|
+
private _avatarUrl?: string;
|
|
15
|
+
private _phone?: string;
|
|
16
|
+
private _rate?: number;
|
|
17
|
+
|
|
18
|
+
private _isActivated?: boolean;
|
|
19
|
+
private _isDeleted?: boolean;
|
|
20
|
+
private _lastLogin?: Date;
|
|
21
|
+
|
|
22
|
+
private _relevance?: number;
|
|
23
|
+
|
|
24
|
+
private _roles: RoleInterface[] = [];
|
|
25
|
+
private _company?: CompanyInterface;
|
|
26
|
+
private _modules: ModuleInterface[] = [];
|
|
27
|
+
|
|
28
|
+
get searchResult(): string {
|
|
29
|
+
return this._name ?? "";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
get name(): string {
|
|
33
|
+
return this._name ?? "";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
get email(): string {
|
|
37
|
+
return this._email ?? "";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
get title(): string {
|
|
41
|
+
return this._title ?? "";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
get bio(): string {
|
|
45
|
+
return this._bio ?? "";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
get avatar(): string | undefined {
|
|
49
|
+
return this._avatar;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
get avatarUrl(): string | undefined {
|
|
53
|
+
return this._avatarUrl;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
get phone(): string | undefined {
|
|
57
|
+
return this._phone;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
get rate(): number | undefined {
|
|
61
|
+
return this._rate;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
get relevance(): number | undefined {
|
|
65
|
+
return this._relevance;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
get isActivated(): boolean {
|
|
69
|
+
return this._isActivated ?? false;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
get isDeleted(): boolean {
|
|
73
|
+
return this._isDeleted ?? false;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
get lastLogin(): Date | undefined {
|
|
77
|
+
return this._lastLogin;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
get roles(): RoleInterface[] {
|
|
81
|
+
return this._roles;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
get company(): CompanyInterface | undefined {
|
|
85
|
+
return this._company;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
get modules(): ModuleInterface[] {
|
|
89
|
+
return this._modules;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
rehydrate(data: JsonApiHydratedDataInterface): this {
|
|
93
|
+
super.rehydrate(data);
|
|
94
|
+
|
|
95
|
+
this._name = data.jsonApi.attributes.name;
|
|
96
|
+
this._email = data.jsonApi.attributes.email;
|
|
97
|
+
this._title = data.jsonApi.attributes.title;
|
|
98
|
+
this._bio = data.jsonApi.attributes.bio;
|
|
99
|
+
this._phone = data.jsonApi.attributes.phone;
|
|
100
|
+
this._rate = data.jsonApi.attributes.rate;
|
|
101
|
+
|
|
102
|
+
this._avatar = data.jsonApi.attributes.avatar;
|
|
103
|
+
this._avatarUrl = data.jsonApi.attributes.avatarUrl;
|
|
104
|
+
|
|
105
|
+
this._isActivated = data.jsonApi.meta.isActive;
|
|
106
|
+
this._isDeleted = data.jsonApi.meta.isDeleted;
|
|
107
|
+
this._lastLogin = data.jsonApi.meta.lastLogin ? new Date(data.jsonApi.meta.lastLogin) : undefined;
|
|
108
|
+
|
|
109
|
+
this._relevance = data.jsonApi.meta.relevance;
|
|
110
|
+
|
|
111
|
+
this._roles = this._readIncluded(data, "roles", Modules.Role) as RoleInterface[];
|
|
112
|
+
this._company = this._readIncluded(data, "company", Modules.Company) as CompanyInterface;
|
|
113
|
+
this._modules = this._readIncluded(data, "modules", Modules.Module) as ModuleInterface[];
|
|
114
|
+
|
|
115
|
+
return this;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
createJsonApi(data: UserInput) {
|
|
119
|
+
const response: any = {
|
|
120
|
+
data: {
|
|
121
|
+
type: Modules.User.name,
|
|
122
|
+
id: data.id,
|
|
123
|
+
attributes: {
|
|
124
|
+
name: data.name,
|
|
125
|
+
},
|
|
126
|
+
meta: {},
|
|
127
|
+
relationships: {},
|
|
128
|
+
},
|
|
129
|
+
included: [],
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
if (data.email !== undefined) response.data.attributes.email = data.email;
|
|
133
|
+
if (data.title !== undefined) response.data.attributes.title = data.title;
|
|
134
|
+
if (data.bio !== undefined) response.data.attributes.bio = data.bio;
|
|
135
|
+
if (data.phone !== undefined) response.data.attributes.phone = data.phone;
|
|
136
|
+
if (data.password !== undefined) response.data.attributes.password = data.password;
|
|
137
|
+
if (data.sendInvitationEmail) response.data.attributes.sendInvitationEmail = true;
|
|
138
|
+
if (data.adminCreated) response.data.attributes.adminCreated = true;
|
|
139
|
+
if (data.avatar) response.data.attributes.avatar = data.avatar;
|
|
140
|
+
if (data.rate !== undefined) response.data.attributes.rate = data.rate;
|
|
141
|
+
|
|
142
|
+
if (data.roleIds) {
|
|
143
|
+
response.data.relationships.roles = {
|
|
144
|
+
data: data.roleIds.map((roleId) => ({
|
|
145
|
+
type: Modules.Role.name,
|
|
146
|
+
id: roleId,
|
|
147
|
+
})),
|
|
148
|
+
};
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
if (data.companyId) {
|
|
152
|
+
response.data.relationships.company = {
|
|
153
|
+
data: {
|
|
154
|
+
type: Modules.Company.name,
|
|
155
|
+
id: data.companyId,
|
|
156
|
+
},
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
return response;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { User } from "./data/user";
|
|
2
|
+
import { createJsonApiInclusion } from "../../core";
|
|
3
|
+
import { ModuleFactory } from "../../permissions";
|
|
4
|
+
|
|
5
|
+
export const UserModule = (factory: ModuleFactory) =>
|
|
6
|
+
factory({
|
|
7
|
+
pageUrl: "/users",
|
|
8
|
+
name: "users",
|
|
9
|
+
model: User,
|
|
10
|
+
moduleId: "04cfc677-0fd2-4f5e-adf4-2483a00c0277",
|
|
11
|
+
inclusions: {
|
|
12
|
+
lists: {
|
|
13
|
+
fields: [
|
|
14
|
+
createJsonApiInclusion("users", [`name`, `email`, `avatar`, `title`]),
|
|
15
|
+
createJsonApiInclusion("usertopics", [`level`]),
|
|
16
|
+
createJsonApiInclusion("userexpertises", [`level`]),
|
|
17
|
+
createJsonApiInclusion("topics", [`name`]),
|
|
18
|
+
],
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
});
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { UseTableStructureHook, UseTableStructureHookParams, UseTableStructureHookReturn } from "./types";
|
|
4
|
+
|
|
5
|
+
type TableGeneratorHook = UseTableStructureHook<any, any>;
|
|
6
|
+
|
|
7
|
+
export class TableGeneratorRegistry {
|
|
8
|
+
private static instance: TableGeneratorRegistry;
|
|
9
|
+
private registry = new Map<string, TableGeneratorHook>();
|
|
10
|
+
|
|
11
|
+
private constructor() {}
|
|
12
|
+
|
|
13
|
+
public static getInstance(): TableGeneratorRegistry {
|
|
14
|
+
if (!TableGeneratorRegistry.instance) {
|
|
15
|
+
TableGeneratorRegistry.instance = new TableGeneratorRegistry();
|
|
16
|
+
}
|
|
17
|
+
return TableGeneratorRegistry.instance;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
public register<T, U>(type: string, hook: UseTableStructureHook<T, U>): void {
|
|
21
|
+
if (!this.registry.has(type)) this.registry.set(type, hook as TableGeneratorHook);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
public get<T, U>(type: string, params: UseTableStructureHookParams<T, U>): UseTableStructureHookReturn<T> {
|
|
25
|
+
const hook = this.registry.get(type);
|
|
26
|
+
if (!hook) {
|
|
27
|
+
throw new Error(
|
|
28
|
+
`Table generator for type "${type}" is not registered. Available types: ${Array.from(this.registry.keys()).join(
|
|
29
|
+
", ",
|
|
30
|
+
)}`,
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
return hook(params);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
public isRegistered(type: string): boolean {
|
|
37
|
+
return this.registry.has(type);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
public getRegisteredTypes(): string[] {
|
|
41
|
+
return Array.from(this.registry.keys());
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
public unregister(type: string): boolean {
|
|
45
|
+
return this.registry.delete(type);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
public clear(): void {
|
|
49
|
+
this.registry.clear();
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export const tableGeneratorRegistry = TableGeneratorRegistry.getInstance();
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export { TableGeneratorRegistry, tableGeneratorRegistry } from "./TableGeneratorRegistry";
|
|
2
|
+
export type {
|
|
3
|
+
TableContent,
|
|
4
|
+
TableStructureGeneratorInterface,
|
|
5
|
+
UseTableStructureHook,
|
|
6
|
+
UseTableStructureHookParams,
|
|
7
|
+
UseTableStructureHookReturn,
|
|
8
|
+
} from "./types";
|
|
9
|
+
export { useUrlRewriter } from "./url.rewriter";
|
|
10
|
+
export { useDataListRetriever, type DataListRetriever } from "./useDataListRetriever";
|
|
11
|
+
export { useDebounce } from "./useDebounce";
|
|
12
|
+
export { usePageUrlGenerator } from "./usePageUrlGenerator";
|
|
13
|
+
export { registerTableGenerator, useTableGenerator } from "./useTableGenerator";
|
|
14
|
+
|
|
15
|
+
// I18n hooks and configuration
|
|
16
|
+
export {
|
|
17
|
+
configureI18n,
|
|
18
|
+
getI18nLink,
|
|
19
|
+
useI18nDateFnsLocale,
|
|
20
|
+
useI18nLocale,
|
|
21
|
+
useI18nRouter,
|
|
22
|
+
useI18nTranslations,
|
|
23
|
+
} from "../i18n";
|
|
24
|
+
export type {
|
|
25
|
+
I18nConfig,
|
|
26
|
+
I18nRouter,
|
|
27
|
+
LinkComponent,
|
|
28
|
+
UseDateFnsLocaleHook,
|
|
29
|
+
UseLocaleHook,
|
|
30
|
+
UseRouterHook,
|
|
31
|
+
UseTranslationsHook,
|
|
32
|
+
} from "../i18n";
|
|
33
|
+
export * from "./useCustomD3Graph";
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ColumnDef } from "@tanstack/react-table";
|
|
2
|
+
import { PageUrl } from "../permissions/types";
|
|
3
|
+
import { DataListRetriever } from "./useDataListRetriever";
|
|
4
|
+
|
|
5
|
+
export type TableContent<T> = {
|
|
6
|
+
jsonApiData: T;
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export interface TableStructureGeneratorInterface<T, U> {
|
|
11
|
+
generateTableStructure: (params: {
|
|
12
|
+
t: (key: string) => string;
|
|
13
|
+
generateUrl: (params: { page: string | PageUrl | string; id?: string }) => string;
|
|
14
|
+
data: T[];
|
|
15
|
+
fields: Array<U>;
|
|
16
|
+
checkedIds?: string[];
|
|
17
|
+
toggleId?: (id: string) => void;
|
|
18
|
+
}) => { data: TableContent<T>[]; columns: ColumnDef<TableContent<T>>[] };
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export type UseTableStructureHookParams<T, U> = {
|
|
22
|
+
data: T[];
|
|
23
|
+
fields: Array<U>;
|
|
24
|
+
checkedIds?: string[];
|
|
25
|
+
toggleId?: (id: string) => void;
|
|
26
|
+
dataRetriever?: DataListRetriever<T>;
|
|
27
|
+
context?: Record<string, any>;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export type UseTableStructureHookReturn<T> = {
|
|
31
|
+
data: TableContent<T>[];
|
|
32
|
+
columns: ColumnDef<TableContent<T>>[];
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export type UseTableStructureHook<T, U> = (params: UseTableStructureHookParams<T, U>) => UseTableStructureHookReturn<T>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { useLocale } from "next-intl";
|
|
4
|
+
import { useCallback } from "react";
|
|
5
|
+
import { ModuleWithPermissions } from "../permissions";
|
|
6
|
+
import { usePageUrlGenerator } from "./usePageUrlGenerator";
|
|
7
|
+
|
|
8
|
+
export function useUrlRewriter() {
|
|
9
|
+
const locale = useLocale();
|
|
10
|
+
const generateUrl = usePageUrlGenerator();
|
|
11
|
+
|
|
12
|
+
return useCallback(
|
|
13
|
+
(params: { page: ModuleWithPermissions | string; id?: string; childPage?: string }): void => {
|
|
14
|
+
window.history.replaceState(
|
|
15
|
+
null,
|
|
16
|
+
"",
|
|
17
|
+
generateUrl({ page: params.page, id: params.id, childPage: params.childPage, language: locale }),
|
|
18
|
+
);
|
|
19
|
+
},
|
|
20
|
+
[locale, generateUrl],
|
|
21
|
+
);
|
|
22
|
+
}
|