@carlonicora/nextjs-jsonapi 0.0.1 → 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/dist/BlockNoteEditor-VFWG6LXI.js.map +1 -1
- package/dist/JsonApiRequest-ZZLSP26T.js.map +1 -1
- package/dist/atoms/index.js.map +1 -1
- package/dist/chunk-2K3Q24UF.js.map +1 -1
- package/dist/chunk-3FBCC4G3.js.map +1 -1
- package/dist/chunk-4HCRAOS5.js.map +1 -1
- package/dist/chunk-6GKHCVF6.js.map +1 -1
- package/dist/chunk-7QVYU63E.js.map +1 -1
- package/dist/chunk-A5DDIABK.js.map +1 -1
- package/dist/chunk-AWONBQQP.js.map +1 -1
- package/dist/chunk-CXQOWQSY.js.map +1 -1
- package/dist/chunk-DO2HLAZO.js.map +1 -1
- package/dist/chunk-EFJEWLRL.js.map +1 -1
- package/dist/chunk-FY4SXJGU.js.map +1 -1
- package/dist/chunk-H6FMOA6B.js.map +1 -1
- package/dist/chunk-I2REI7OA.js.map +1 -1
- package/dist/chunk-IBS6NI7D.js.map +1 -1
- package/dist/chunk-J4Q36PMP.js.map +1 -1
- package/dist/chunk-JC3WJK65.js.map +1 -1
- package/dist/chunk-LXKSUWAV.js.map +1 -1
- package/dist/chunk-RAF7PNLG.js.map +1 -1
- package/dist/chunk-RUR22SVM.js.map +1 -1
- package/dist/chunk-TEGF6ZWG.js.map +1 -1
- package/dist/chunk-TMVHSY3Y.js.map +1 -1
- package/dist/chunk-V2JJPI7N.js.map +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/components/index.js.map +1 -1
- package/dist/contexts/index.js.map +1 -1
- package/dist/core/index.js.map +1 -1
- package/dist/features/index.js.map +1 -1
- package/dist/hooks/index.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/interfaces/index.js.map +1 -1
- package/dist/permissions/index.js.map +1 -1
- package/dist/request-QFS7NEIE.js.map +1 -1
- package/dist/request-ZYY6RI5X.js.map +1 -1
- package/dist/roles/index.js.map +1 -1
- package/dist/server/index.js.map +1 -1
- package/dist/shadcnui/index.js.map +1 -1
- package/dist/token-MJMC26ON.js.map +1 -1
- package/dist/token-UYE7CV6X.js.map +1 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +6 -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,76 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { ReactNode, useEffect, useRef, useState } from "react";
|
|
4
|
+
import { useUrlRewriter } from "../../hooks/url.rewriter";
|
|
5
|
+
import { ModuleWithPermissions } from "../../permissions";
|
|
6
|
+
import { Tabs, TabsContent, TabsList, TabsTrigger } from "../../shadcnui";
|
|
7
|
+
|
|
8
|
+
export type PageContainerItems = {
|
|
9
|
+
title: string;
|
|
10
|
+
content: ReactNode;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
type PageContainerContentDetailsProps = {
|
|
14
|
+
items: PageContainerItems[];
|
|
15
|
+
section?: string;
|
|
16
|
+
module: ModuleWithPermissions;
|
|
17
|
+
id: string;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export function PageContainerContentDetails({ items, section, module, id }: PageContainerContentDetailsProps) {
|
|
21
|
+
const rewriteUrl = useUrlRewriter();
|
|
22
|
+
const [isScrolled, setIsScrolled] = useState<boolean>(false);
|
|
23
|
+
const sentinelRef = useRef<HTMLDivElement>(null);
|
|
24
|
+
|
|
25
|
+
// Use IntersectionObserver to detect when content scrolls past the TabsList
|
|
26
|
+
useEffect(() => {
|
|
27
|
+
const sentinel = sentinelRef.current;
|
|
28
|
+
if (!sentinel) return;
|
|
29
|
+
|
|
30
|
+
const observer = new IntersectionObserver(
|
|
31
|
+
([entry]) => {
|
|
32
|
+
// When sentinel is not visible (scrolled past), show border
|
|
33
|
+
setIsScrolled(!entry.isIntersecting);
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
threshold: 0,
|
|
37
|
+
rootMargin: "0px",
|
|
38
|
+
},
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
observer.observe(sentinel);
|
|
42
|
+
|
|
43
|
+
return () => {
|
|
44
|
+
observer.disconnect();
|
|
45
|
+
};
|
|
46
|
+
}, []);
|
|
47
|
+
|
|
48
|
+
return (
|
|
49
|
+
<Tabs
|
|
50
|
+
defaultValue={section || items[0].title}
|
|
51
|
+
onValueChange={(a) => rewriteUrl({ page: module, id: id, childPage: a })}
|
|
52
|
+
>
|
|
53
|
+
{/* Sentinel element - invisible, used to detect scroll position */}
|
|
54
|
+
<div ref={sentinelRef} className="h-0" />
|
|
55
|
+
|
|
56
|
+
{/* Sticky TabsList with conditional border */}
|
|
57
|
+
<div className={`bg-background sticky top-0 z-10 mb-2 pb-2 transition-shadow ${isScrolled ? "border-b" : ""}`}>
|
|
58
|
+
<TabsList>
|
|
59
|
+
{items.map((item) => (
|
|
60
|
+
<TabsTrigger key={item.title} value={item.title}>
|
|
61
|
+
{item.title}
|
|
62
|
+
</TabsTrigger>
|
|
63
|
+
))}
|
|
64
|
+
</TabsList>
|
|
65
|
+
</div>
|
|
66
|
+
|
|
67
|
+
<div className="pr-4">
|
|
68
|
+
{items.map((item) => (
|
|
69
|
+
<TabsContent key={item.title} value={item.title}>
|
|
70
|
+
{item.content}
|
|
71
|
+
</TabsContent>
|
|
72
|
+
))}
|
|
73
|
+
</div>
|
|
74
|
+
</Tabs>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { ReactNode } from "react";
|
|
4
|
+
import { ResizableHandle, ResizablePanel, ResizablePanelGroup } from "../../shadcnui";
|
|
5
|
+
|
|
6
|
+
type PageContentContainerProps = {
|
|
7
|
+
details: ReactNode;
|
|
8
|
+
footer?: ReactNode;
|
|
9
|
+
content?: ReactNode;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export function PageContentContainer({ details, footer, content }: PageContentContainerProps) {
|
|
13
|
+
return (
|
|
14
|
+
<div className="flex h-[calc(100vh-(--spacing(16)))] w-full">
|
|
15
|
+
<ResizablePanelGroup direction="horizontal" className="items-stretch" autoSaveId="page-content-layout">
|
|
16
|
+
<ResizablePanel id="left-panel" defaultSize={32} minSize={20} maxSize={40}>
|
|
17
|
+
<div className="@container flex h-full flex-col pr-4">
|
|
18
|
+
<div className="flex-1 overflow-y-auto">{details}</div>
|
|
19
|
+
|
|
20
|
+
{/* Sticky footer - always visible at bottom */}
|
|
21
|
+
{footer && <div className="flex flex-col gap-y-2 pt-2 pb-2">{footer}</div>}
|
|
22
|
+
</div>
|
|
23
|
+
</ResizablePanel>
|
|
24
|
+
<ResizableHandle withHandle />
|
|
25
|
+
<ResizablePanel id="right-panel" className="pl-4">
|
|
26
|
+
<div className="h-full overflow-y-auto">{content}</div>
|
|
27
|
+
</ResizablePanel>
|
|
28
|
+
</ResizablePanelGroup>
|
|
29
|
+
</div>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { flexRender, getCoreRowModel, useReactTable } from "@tanstack/react-table";
|
|
4
|
+
|
|
5
|
+
import { CaretLeftIcon, CaretRightIcon } from "@radix-ui/react-icons";
|
|
6
|
+
import { ReactNode, memo, useMemo } from "react";
|
|
7
|
+
import { DataListRetriever, useTableGenerator } from "../../hooks";
|
|
8
|
+
import { ModuleWithPermissions } from "../../permissions";
|
|
9
|
+
import { Button, Table, TableBody, TableCell, TableFooter, TableHead, TableHeader, TableRow } from "../../shadcnui";
|
|
10
|
+
import { ContentTableSearch } from "./ContentTableSearch";
|
|
11
|
+
|
|
12
|
+
const EMPTY_ARRAY: any[] = [];
|
|
13
|
+
|
|
14
|
+
export type GenerateTableStructureParams = {
|
|
15
|
+
data: any[];
|
|
16
|
+
toggleValueToFormIdsId: (id: string, name: string) => void;
|
|
17
|
+
isSelected: (id: string) => boolean;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
type ContentListTableProps = {
|
|
21
|
+
title?: string;
|
|
22
|
+
data: DataListRetriever<any>;
|
|
23
|
+
tableGenerator?: never;
|
|
24
|
+
tableGeneratorType: ModuleWithPermissions;
|
|
25
|
+
fields: any[];
|
|
26
|
+
checkedIds?: string[];
|
|
27
|
+
toggleId?: (id: string) => void;
|
|
28
|
+
functions?: ReactNode;
|
|
29
|
+
filters?: ReactNode;
|
|
30
|
+
allowSearch?: boolean;
|
|
31
|
+
context?: Record<string, any>;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export const ContentListTable = memo(function ContentListTable(props: ContentListTableProps) {
|
|
35
|
+
const { data, fields, checkedIds, toggleId, allowSearch, filters } = props;
|
|
36
|
+
|
|
37
|
+
const { data: tableData, columns: tableColumns } = useTableGenerator(props.tableGeneratorType, {
|
|
38
|
+
data: data?.data ?? EMPTY_ARRAY,
|
|
39
|
+
fields: fields,
|
|
40
|
+
checkedIds: checkedIds,
|
|
41
|
+
toggleId: toggleId,
|
|
42
|
+
dataRetriever: data,
|
|
43
|
+
context: props.context,
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
const columnVisibility = useMemo(
|
|
47
|
+
() =>
|
|
48
|
+
fields.reduce(
|
|
49
|
+
(acc, columnId) => {
|
|
50
|
+
acc[columnId] = true;
|
|
51
|
+
return acc;
|
|
52
|
+
},
|
|
53
|
+
{} as Record<string, boolean>,
|
|
54
|
+
),
|
|
55
|
+
[fields],
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
const table = useReactTable({
|
|
59
|
+
data: tableData,
|
|
60
|
+
columns: tableColumns,
|
|
61
|
+
getCoreRowModel: getCoreRowModel(),
|
|
62
|
+
initialState: {
|
|
63
|
+
columnVisibility,
|
|
64
|
+
},
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
// if (!data.isLoaded || !data.data) {
|
|
68
|
+
// return <ContentListTableLoader />;
|
|
69
|
+
// }
|
|
70
|
+
|
|
71
|
+
const rowModel = tableData ? table.getRowModel() : null;
|
|
72
|
+
const showFooter = !!(props.functions || data.next || data.previous);
|
|
73
|
+
|
|
74
|
+
return (
|
|
75
|
+
<div className="flex w-full flex-col">
|
|
76
|
+
<div className="overflow-hidden rounded-md border">
|
|
77
|
+
<Table>
|
|
78
|
+
<TableHeader className="bg-muted font-semibold">
|
|
79
|
+
{props.title && (
|
|
80
|
+
<TableRow>
|
|
81
|
+
<TableHead className="bg-card text-primary p-4 text-left font-bold" colSpan={tableColumns.length}>
|
|
82
|
+
<div className="flex w-full items-center justify-between gap-x-2">
|
|
83
|
+
<div className="w-full">{props.title}</div>
|
|
84
|
+
{(props.functions || props.filters || allowSearch) && (
|
|
85
|
+
<>
|
|
86
|
+
{props.functions}
|
|
87
|
+
{props.filters}
|
|
88
|
+
<ContentTableSearch data={data} />
|
|
89
|
+
</>
|
|
90
|
+
)}
|
|
91
|
+
</div>
|
|
92
|
+
</TableHead>
|
|
93
|
+
</TableRow>
|
|
94
|
+
)}
|
|
95
|
+
{table.getHeaderGroups().map((headerGroup) => (
|
|
96
|
+
<TableRow key={headerGroup.id}>
|
|
97
|
+
{headerGroup.headers.map((header) => {
|
|
98
|
+
return (
|
|
99
|
+
<TableHead key={header.id}>
|
|
100
|
+
{header.isPlaceholder ? null : flexRender(header.column.columnDef.header, header.getContext())}
|
|
101
|
+
</TableHead>
|
|
102
|
+
);
|
|
103
|
+
})}
|
|
104
|
+
</TableRow>
|
|
105
|
+
))}
|
|
106
|
+
</TableHeader>
|
|
107
|
+
<TableBody>
|
|
108
|
+
{rowModel && rowModel.rows?.length ? (
|
|
109
|
+
rowModel.rows.map((row) => (
|
|
110
|
+
<TableRow key={row.id}>
|
|
111
|
+
{row.getVisibleCells().map((cell) => (
|
|
112
|
+
<TableCell key={cell.id}>{flexRender(cell.column.columnDef.cell, cell.getContext())}</TableCell>
|
|
113
|
+
))}
|
|
114
|
+
</TableRow>
|
|
115
|
+
))
|
|
116
|
+
) : (
|
|
117
|
+
<TableRow>
|
|
118
|
+
<TableCell colSpan={tableColumns.length} className="h-24 text-center">
|
|
119
|
+
No results.
|
|
120
|
+
</TableCell>
|
|
121
|
+
</TableRow>
|
|
122
|
+
)}
|
|
123
|
+
</TableBody>
|
|
124
|
+
{showFooter && (
|
|
125
|
+
<TableFooter>
|
|
126
|
+
<TableRow>
|
|
127
|
+
<TableCell colSpan={tableColumns.length} className="bg-card py-4 text-right">
|
|
128
|
+
<div className="flex items-center justify-end space-x-2">
|
|
129
|
+
<Button
|
|
130
|
+
variant="outline"
|
|
131
|
+
size="sm"
|
|
132
|
+
onClick={(e) => {
|
|
133
|
+
e.preventDefault();
|
|
134
|
+
data.previous?.(true);
|
|
135
|
+
}}
|
|
136
|
+
disabled={!data.previous}
|
|
137
|
+
>
|
|
138
|
+
<CaretLeftIcon className="h-4 w-4" />
|
|
139
|
+
</Button>
|
|
140
|
+
{data.pageInfo && (
|
|
141
|
+
<span className="text-muted-foreground text-xs">
|
|
142
|
+
{data.pageInfo.startItem}-{data.pageInfo.endItem}
|
|
143
|
+
</span>
|
|
144
|
+
)}
|
|
145
|
+
<Button
|
|
146
|
+
variant="outline"
|
|
147
|
+
size="sm"
|
|
148
|
+
onClick={(e) => {
|
|
149
|
+
e.preventDefault();
|
|
150
|
+
data.next?.(true);
|
|
151
|
+
}}
|
|
152
|
+
disabled={!data.next}
|
|
153
|
+
>
|
|
154
|
+
<CaretRightIcon className="h-4 w-4" />
|
|
155
|
+
</Button>
|
|
156
|
+
</div>
|
|
157
|
+
</TableCell>
|
|
158
|
+
</TableRow>
|
|
159
|
+
</TableFooter>
|
|
160
|
+
)}
|
|
161
|
+
</Table>
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
);
|
|
165
|
+
});
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { RefreshCw, Search, X } from "lucide-react";
|
|
4
|
+
import { useTranslations } from "next-intl";
|
|
5
|
+
import { useCallback, useEffect, useRef, useState } from "react";
|
|
6
|
+
import { DataListRetriever, useDebounce } from "../../hooks";
|
|
7
|
+
import { Input } from "../../shadcnui";
|
|
8
|
+
|
|
9
|
+
type ContentTableSearchProps = {
|
|
10
|
+
data: DataListRetriever<any>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export function ContentTableSearch({ data }: ContentTableSearchProps) {
|
|
14
|
+
const t = useTranslations();
|
|
15
|
+
const searchTermRef = useRef<string>("");
|
|
16
|
+
const inputRef = useRef<HTMLInputElement>(null);
|
|
17
|
+
const [searchTerm, setSearchTerm] = useState<string>("");
|
|
18
|
+
const [isFocused, setIsFocused] = useState<boolean>(false);
|
|
19
|
+
const [isSearching, setIsSearching] = useState<boolean>(false);
|
|
20
|
+
|
|
21
|
+
const isExpanded = isFocused || searchTerm.length > 0;
|
|
22
|
+
|
|
23
|
+
const search = useCallback(
|
|
24
|
+
async (searchedTerm: string) => {
|
|
25
|
+
try {
|
|
26
|
+
if (searchedTerm === searchTermRef.current) return;
|
|
27
|
+
searchTermRef.current = searchedTerm;
|
|
28
|
+
|
|
29
|
+
await data.search(searchedTerm);
|
|
30
|
+
} finally {
|
|
31
|
+
setIsSearching(false);
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
[searchTermRef, data],
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
const updateSearchTerm = useDebounce(search, 500);
|
|
38
|
+
|
|
39
|
+
useEffect(() => {
|
|
40
|
+
setIsSearching(true);
|
|
41
|
+
updateSearchTerm(searchTerm);
|
|
42
|
+
}, [updateSearchTerm, searchTerm]);
|
|
43
|
+
|
|
44
|
+
const handleSearchIconClick = () => {
|
|
45
|
+
if (!isExpanded) {
|
|
46
|
+
setIsFocused(true);
|
|
47
|
+
// Small delay to ensure the input is rendered before focusing
|
|
48
|
+
setTimeout(() => inputRef.current?.focus(), 50);
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const handleBlur = () => {
|
|
53
|
+
// Auto-collapse only if search is empty
|
|
54
|
+
if (searchTerm.length === 0) {
|
|
55
|
+
setIsFocused(false);
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
const handleClear = () => {
|
|
60
|
+
setSearchTerm("");
|
|
61
|
+
search("");
|
|
62
|
+
setIsFocused(false);
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
return (
|
|
66
|
+
<div
|
|
67
|
+
className={`relative flex h-6 items-center text-xs font-normal transition-all duration-300 ease-in-out ${
|
|
68
|
+
isExpanded ? "w-64" : "w-6"
|
|
69
|
+
}`}
|
|
70
|
+
>
|
|
71
|
+
<Search
|
|
72
|
+
className={`absolute top-1 left-1 h-4 w-4 transition-colors ${
|
|
73
|
+
isExpanded ? "text-muted-foreground" : "text-muted-foreground hover:text-foreground cursor-pointer"
|
|
74
|
+
}`}
|
|
75
|
+
onClick={handleSearchIconClick}
|
|
76
|
+
/>
|
|
77
|
+
{isExpanded && (
|
|
78
|
+
<Input
|
|
79
|
+
ref={inputRef}
|
|
80
|
+
onKeyDown={(e) => {
|
|
81
|
+
if (e.key === "Escape") {
|
|
82
|
+
handleClear();
|
|
83
|
+
}
|
|
84
|
+
}}
|
|
85
|
+
onFocus={() => setIsFocused(true)}
|
|
86
|
+
onBlur={handleBlur}
|
|
87
|
+
placeholder={t(`generic.search.placeholder_global`)}
|
|
88
|
+
type="text"
|
|
89
|
+
className="border-border/50 focus-visible:border-border h-10 w-full pr-8 pl-8 text-xs shadow-none focus-visible:ring-0"
|
|
90
|
+
onChange={(e) => setSearchTerm(e.target.value)}
|
|
91
|
+
value={searchTerm}
|
|
92
|
+
/>
|
|
93
|
+
)}
|
|
94
|
+
{isExpanded && isSearching && (
|
|
95
|
+
<RefreshCw className="text-muted-foreground absolute top-1 right-1 h-4 w-4 animate-spin" />
|
|
96
|
+
)}
|
|
97
|
+
{isExpanded && !isSearching && searchTermRef.current && (
|
|
98
|
+
<X
|
|
99
|
+
className="text-muted-foreground hover:text-foreground absolute top-1 right-1 h-4 w-4 cursor-pointer"
|
|
100
|
+
onClick={handleClear}
|
|
101
|
+
/>
|
|
102
|
+
)}
|
|
103
|
+
</div>
|
|
104
|
+
);
|
|
105
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ColumnDef } from "@tanstack/react-table";
|
|
2
|
+
import React from "react";
|
|
3
|
+
|
|
4
|
+
export const cellComponent = (params: {
|
|
5
|
+
id: string;
|
|
6
|
+
name: string;
|
|
7
|
+
title: string;
|
|
8
|
+
component: React.ReactNode;
|
|
9
|
+
}): ColumnDef<any> => {
|
|
10
|
+
return {
|
|
11
|
+
id: params.name,
|
|
12
|
+
accessorKey: params.name,
|
|
13
|
+
header: params.title,
|
|
14
|
+
cell: ({ row }) => params.component,
|
|
15
|
+
enableSorting: false,
|
|
16
|
+
enableHiding: false,
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ColumnDef } from "@tanstack/react-table";
|
|
2
|
+
|
|
3
|
+
export const cellDate = (params: { name: string; title: string }): ColumnDef<any> => {
|
|
4
|
+
return {
|
|
5
|
+
id: params.name,
|
|
6
|
+
accessorKey: params.name,
|
|
7
|
+
header: params.title,
|
|
8
|
+
cell: ({ row }) => (
|
|
9
|
+
<span className="text-muted-foreground text-xs">
|
|
10
|
+
{row.getValue<Date>(params.name).toLocaleDateString("en", { dateStyle: "medium" })}
|
|
11
|
+
</span>
|
|
12
|
+
),
|
|
13
|
+
enableSorting: false,
|
|
14
|
+
enableHiding: false,
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ColumnDef } from "@tanstack/react-table";
|
|
2
|
+
import { Checkbox } from "../../../shadcnui";
|
|
3
|
+
|
|
4
|
+
export const cellId = (params: {
|
|
5
|
+
name: string;
|
|
6
|
+
checkedIds?: string[];
|
|
7
|
+
toggleId?: (id: string) => void;
|
|
8
|
+
}): ColumnDef<any> => {
|
|
9
|
+
return {
|
|
10
|
+
id: params.name,
|
|
11
|
+
accessorKey: params.name,
|
|
12
|
+
header: "",
|
|
13
|
+
cell: ({ row }) =>
|
|
14
|
+
params.toggleId ? (
|
|
15
|
+
<Checkbox
|
|
16
|
+
checked={params.checkedIds?.includes(row.getValue(params.name)) || false}
|
|
17
|
+
onCheckedChange={(value) => {
|
|
18
|
+
row.toggleSelected(!!value);
|
|
19
|
+
params.toggleId?.(row.getValue(params.name));
|
|
20
|
+
}}
|
|
21
|
+
aria-label="Select row"
|
|
22
|
+
/>
|
|
23
|
+
) : null,
|
|
24
|
+
enableSorting: false,
|
|
25
|
+
enableHiding: true,
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ColumnDef } from "@tanstack/react-table";
|
|
2
|
+
import { Link } from "../../../shadcnui";
|
|
3
|
+
|
|
4
|
+
export const cellLink = <T,>(params: {
|
|
5
|
+
id: string;
|
|
6
|
+
name: string;
|
|
7
|
+
title: string;
|
|
8
|
+
generateUrl: (id: string) => string;
|
|
9
|
+
}): ColumnDef<T> => {
|
|
10
|
+
return {
|
|
11
|
+
id: params.name,
|
|
12
|
+
accessorKey: params.name,
|
|
13
|
+
header: params.title,
|
|
14
|
+
cell: ({ row }) => <Link href={params.generateUrl(row.getValue(params.id))}>{row.getValue(params.name)}</Link>,
|
|
15
|
+
enableSorting: false,
|
|
16
|
+
enableHiding: false,
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ColumnDef } from "@tanstack/react-table";
|
|
2
|
+
|
|
3
|
+
export const cellText = (params: { id: string; name: string; title: string }): ColumnDef<any> => {
|
|
4
|
+
return {
|
|
5
|
+
id: params.name,
|
|
6
|
+
accessorKey: params.name,
|
|
7
|
+
header: params.title,
|
|
8
|
+
cell: ({ row }) => row.getValue(params.name),
|
|
9
|
+
enableSorting: false,
|
|
10
|
+
enableHiding: false,
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ColumnDef } from "@tanstack/react-table";
|
|
2
|
+
import { Link } from "../../../shadcnui";
|
|
3
|
+
|
|
4
|
+
export const cellUrl = (params: { name: string; title: string }): ColumnDef<any> => {
|
|
5
|
+
return {
|
|
6
|
+
id: params.name,
|
|
7
|
+
accessorKey: params.name,
|
|
8
|
+
header: params.title,
|
|
9
|
+
cell: ({ row }) => <Link href={row.getValue(params.name)}>{row.getValue(params.name)}</Link>,
|
|
10
|
+
enableSorting: false,
|
|
11
|
+
enableHiding: false,
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { createContext, ReactNode, useContext } from "react";
|
|
2
|
+
import { BreadcrumbItemData } from "../interfaces";
|
|
3
|
+
|
|
4
|
+
const SharedContext = createContext<{
|
|
5
|
+
breadcrumbs: BreadcrumbItemData[];
|
|
6
|
+
title: {
|
|
7
|
+
type: string | string[];
|
|
8
|
+
element?: string;
|
|
9
|
+
functions?: ReactNode;
|
|
10
|
+
};
|
|
11
|
+
} | null>(null);
|
|
12
|
+
|
|
13
|
+
interface SharedProviderProps {
|
|
14
|
+
children: ReactNode;
|
|
15
|
+
value: {
|
|
16
|
+
breadcrumbs: BreadcrumbItemData[];
|
|
17
|
+
title: {
|
|
18
|
+
type: string;
|
|
19
|
+
element?: string;
|
|
20
|
+
functions?: ReactNode;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export const SharedProvider = ({ children, value }: SharedProviderProps) => {
|
|
26
|
+
return <SharedContext.Provider value={value}>{children}</SharedContext.Provider>;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export const useSharedContext = () => {
|
|
30
|
+
const context = useContext(SharedContext);
|
|
31
|
+
if (!context) {
|
|
32
|
+
throw new Error("useSharedContext must be used within a SharedProvider");
|
|
33
|
+
}
|
|
34
|
+
return context;
|
|
35
|
+
};
|