ikoncomponents 1.7.0 → 1.7.2
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/ikoncomponents/assistant-ui/Assistant.d.ts +28 -0
- package/dist/ikoncomponents/assistant-ui/Assistant.js +306 -0
- package/dist/ikoncomponents/assistant-ui/agent-dropdown.d.ts +24 -0
- package/dist/ikoncomponents/assistant-ui/agent-dropdown.js +16 -0
- package/dist/ikoncomponents/assistant-ui/agentTextChatTransport.d.ts +30 -0
- package/dist/ikoncomponents/assistant-ui/agentTextChatTransport.js +208 -0
- package/dist/ikoncomponents/assistant-ui/attachment.d.ts +4 -0
- package/dist/ikoncomponents/assistant-ui/attachment.js +93 -0
- package/dist/ikoncomponents/assistant-ui/markdown-text.d.ts +2 -0
- package/dist/ikoncomponents/assistant-ui/markdown-text.js +126 -0
- package/dist/ikoncomponents/assistant-ui/thread.d.ts +10 -0
- package/dist/ikoncomponents/assistant-ui/thread.js +115 -0
- package/dist/ikoncomponents/assistant-ui/tool-fallback.d.ts +2 -0
- package/dist/ikoncomponents/assistant-ui/tool-fallback.js +18 -0
- package/dist/ikoncomponents/assistant-ui/tooltip-icon-button.d.ts +7 -0
- package/dist/ikoncomponents/assistant-ui/tooltip-icon-button.js +23 -0
- package/dist/ikoncomponents/fileUpload/index.js +1 -1
- package/dist/ikoncomponents/fileUploadApi/index.js +1 -1
- package/dist/ikoncomponents/table/DataTable/index.d.ts +1 -1
- package/dist/ikoncomponents/table/DataTable/index.js +65 -6
- package/dist/ikoncomponents/table/index.d.ts +1 -1
- package/dist/ikoncomponents/table/index.js +153 -5
- package/dist/ikoncomponents/table/type.d.ts +21 -12
- package/dist/ikoncomponents/table/type.js +7 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/styles.css +309 -109
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/utils/api/file-upload copy/index.js +1 -1
- package/dist/utils/userType.d.ts +13 -0
- package/dist/utils/userType.js +1 -0
- package/package.json +4 -3
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { useEffect, useState } from "react";
|
|
4
|
+
import Image from "next/image";
|
|
5
|
+
import { XIcon, PlusIcon, FileText } from "lucide-react";
|
|
6
|
+
import { AttachmentPrimitive, ComposerPrimitive, MessagePrimitive, useAssistantState, useAssistantApi, } from "@assistant-ui/react";
|
|
7
|
+
import { useShallow } from "zustand/shallow";
|
|
8
|
+
import { Tooltip, TooltipContent, TooltipTrigger, } from "../../shadcn/tooltip";
|
|
9
|
+
import { Dialog, DialogTitle, DialogContent, DialogTrigger, } from "../../shadcn/dialog";
|
|
10
|
+
import { Avatar, AvatarImage, AvatarFallback } from "../../shadcn/avatar";
|
|
11
|
+
import { TooltipIconButton } from "./tooltip-icon-button";
|
|
12
|
+
import { cn } from "../../utils/cn";
|
|
13
|
+
const useFileSrc = (file) => {
|
|
14
|
+
const [src, setSrc] = useState(undefined);
|
|
15
|
+
useEffect(() => {
|
|
16
|
+
if (!file) {
|
|
17
|
+
setSrc(undefined);
|
|
18
|
+
return;
|
|
19
|
+
}
|
|
20
|
+
const objectUrl = URL.createObjectURL(file);
|
|
21
|
+
setSrc(objectUrl);
|
|
22
|
+
return () => {
|
|
23
|
+
URL.revokeObjectURL(objectUrl);
|
|
24
|
+
};
|
|
25
|
+
}, [file]);
|
|
26
|
+
return src;
|
|
27
|
+
};
|
|
28
|
+
const useAttachmentSrc = () => {
|
|
29
|
+
var _a;
|
|
30
|
+
const { file, src } = useAssistantState(useShallow(({ attachment }) => {
|
|
31
|
+
var _a, _b;
|
|
32
|
+
if (attachment.type !== "image")
|
|
33
|
+
return {};
|
|
34
|
+
if (attachment.file)
|
|
35
|
+
return { file: attachment.file };
|
|
36
|
+
const src = (_b = (_a = attachment.content) === null || _a === void 0 ? void 0 : _a.filter((c) => c.type === "image")[0]) === null || _b === void 0 ? void 0 : _b.image;
|
|
37
|
+
if (!src)
|
|
38
|
+
return {};
|
|
39
|
+
return { src };
|
|
40
|
+
}));
|
|
41
|
+
return (_a = useFileSrc(file)) !== null && _a !== void 0 ? _a : src;
|
|
42
|
+
};
|
|
43
|
+
const AttachmentPreview = ({ src }) => {
|
|
44
|
+
const [isLoaded, setIsLoaded] = useState(false);
|
|
45
|
+
return (_jsx(Image, { src: src, alt: "Image Preview", width: 1, height: 1, className: isLoaded
|
|
46
|
+
? "aui-attachment-preview-image-loaded block h-auto max-h-[80vh] w-auto max-w-full object-contain"
|
|
47
|
+
: "aui-attachment-preview-image-loading hidden", onLoadingComplete: () => setIsLoaded(true), priority: false }));
|
|
48
|
+
};
|
|
49
|
+
const AttachmentPreviewDialog = ({ children }) => {
|
|
50
|
+
const src = useAttachmentSrc();
|
|
51
|
+
if (!src)
|
|
52
|
+
return children;
|
|
53
|
+
return (_jsxs(Dialog, { children: [_jsx(DialogTrigger, { className: "aui-attachment-preview-trigger cursor-pointer transition-colors hover:bg-accent/50", asChild: true, children: children }), _jsxs(DialogContent, { className: "aui-attachment-preview-dialog-content p-2 sm:max-w-3xl [&>button]:rounded-full [&>button]:bg-foreground/60 [&>button]:p-1 [&>button]:opacity-100 [&>button]:ring-0! [&_svg]:text-background [&>button]:hover:[&_svg]:text-destructive", children: [_jsx(DialogTitle, { className: "aui-sr-only sr-only", children: "Image Attachment Preview" }), _jsx("div", { className: "aui-attachment-preview relative mx-auto flex max-h-[80dvh] w-full items-center justify-center overflow-hidden bg-background", children: _jsx(AttachmentPreview, { src: src }) })] })] }));
|
|
54
|
+
};
|
|
55
|
+
const AttachmentThumb = () => {
|
|
56
|
+
const isImage = useAssistantState(({ attachment }) => attachment.type === "image");
|
|
57
|
+
const src = useAttachmentSrc();
|
|
58
|
+
return (_jsxs(Avatar, { className: "aui-attachment-tile-avatar h-full w-full rounded-none", children: [_jsx(AvatarImage, { src: src, alt: "Attachment preview", className: "aui-attachment-tile-image object-cover" }), _jsx(AvatarFallback, { delayMs: isImage ? 200 : 0, children: _jsx(FileText, { className: "aui-attachment-tile-fallback-icon size-8 text-muted-foreground" }) })] }));
|
|
59
|
+
};
|
|
60
|
+
const AttachmentUI = () => {
|
|
61
|
+
const api = useAssistantApi();
|
|
62
|
+
const isComposer = api.attachment.source === "composer";
|
|
63
|
+
const isImage = useAssistantState(({ attachment }) => attachment.type === "image");
|
|
64
|
+
const typeLabel = useAssistantState(({ attachment }) => {
|
|
65
|
+
const type = attachment.type;
|
|
66
|
+
switch (type) {
|
|
67
|
+
case "image":
|
|
68
|
+
return "Image";
|
|
69
|
+
case "document":
|
|
70
|
+
return "Document";
|
|
71
|
+
case "file":
|
|
72
|
+
return "File";
|
|
73
|
+
default:
|
|
74
|
+
const _exhaustiveCheck = type;
|
|
75
|
+
throw new Error(`Unknown attachment type: ${_exhaustiveCheck}`);
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
return (_jsxs(Tooltip, { children: [_jsxs(AttachmentPrimitive.Root, { className: cn("aui-attachment-root relative", isImage &&
|
|
79
|
+
"aui-attachment-root-composer only:[&>#attachment-tile]:size-24"), children: [_jsx(AttachmentPreviewDialog, { children: _jsx(TooltipTrigger, { asChild: true, children: _jsx("div", { className: cn("aui-attachment-tile size-14 cursor-pointer overflow-hidden rounded-[14px] border bg-muted transition-opacity hover:opacity-75", isComposer &&
|
|
80
|
+
"aui-attachment-tile-composer border-foreground/20"), role: "button", id: "attachment-tile", "aria-label": `${typeLabel} attachment`, children: _jsx(AttachmentThumb, {}) }) }) }), isComposer && _jsx(AttachmentRemove, {})] }), _jsx(TooltipContent, { side: "top", children: _jsx(AttachmentPrimitive.Name, {}) })] }));
|
|
81
|
+
};
|
|
82
|
+
const AttachmentRemove = () => {
|
|
83
|
+
return (_jsx(AttachmentPrimitive.Remove, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Remove file", className: "aui-attachment-tile-remove absolute top-1.5 right-1.5 size-3.5 rounded-full bg-white text-muted-foreground opacity-100 shadow-sm hover:bg-white! [&_svg]:text-black hover:[&_svg]:text-destructive", side: "top", children: _jsx(XIcon, { className: "aui-attachment-remove-icon size-3 dark:stroke-[2.5px]" }) }) }));
|
|
84
|
+
};
|
|
85
|
+
export const UserMessageAttachments = () => {
|
|
86
|
+
return (_jsx("div", { className: "aui-user-message-attachments-end col-span-full col-start-1 row-start-1 flex w-full flex-row justify-end gap-2", children: _jsx(MessagePrimitive.Attachments, { components: { Attachment: AttachmentUI } }) }));
|
|
87
|
+
};
|
|
88
|
+
export const ComposerAttachments = () => {
|
|
89
|
+
return (_jsx("div", { className: "aui-composer-attachments mb-2 flex w-full flex-row items-center gap-2 overflow-x-auto px-1.5 pt-0.5 pb-1 empty:hidden", children: _jsx(ComposerPrimitive.Attachments, { components: { Attachment: AttachmentUI } }) }));
|
|
90
|
+
};
|
|
91
|
+
export const ComposerAddAttachment = () => {
|
|
92
|
+
return (_jsx(ComposerPrimitive.AddAttachment, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Add Attachment", side: "bottom", variant: "ghost", size: "icon", className: "aui-composer-add-attachment size-8.5 rounded-full p-1 font-semibold text-xs hover:bg-muted-foreground/15 dark:border-muted-foreground/15 dark:hover:bg-muted-foreground/30", "aria-label": "Add Attachment", children: _jsx(PlusIcon, { className: "aui-attachment-add-icon size-5 stroke-[1.5px]" }) }) }));
|
|
93
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
+
import "@assistant-ui/react-markdown";
|
|
15
|
+
import { MarkdownTextPrimitive, unstable_memoizeMarkdownComponents as memoizeMarkdownComponents, useIsMarkdownCodeBlock, } from "@assistant-ui/react-markdown";
|
|
16
|
+
import remarkGfm from "remark-gfm";
|
|
17
|
+
import { memo, useState } from "react";
|
|
18
|
+
import { CheckIcon, CopyIcon } from "lucide-react";
|
|
19
|
+
import { TooltipIconButton } from "../assistant-ui/tooltip-icon-button";
|
|
20
|
+
import { cn } from "../../utils/cn";
|
|
21
|
+
const MarkdownTextImpl = () => {
|
|
22
|
+
return (_jsx(MarkdownTextPrimitive, { remarkPlugins: [remarkGfm], className: "aui-md", components: defaultComponents }));
|
|
23
|
+
};
|
|
24
|
+
export const MarkdownText = memo(MarkdownTextImpl);
|
|
25
|
+
const CodeHeader = ({ language, code }) => {
|
|
26
|
+
const { isCopied, copyToClipboard } = useCopyToClipboard();
|
|
27
|
+
const onCopy = () => {
|
|
28
|
+
if (!code || isCopied)
|
|
29
|
+
return;
|
|
30
|
+
copyToClipboard(code);
|
|
31
|
+
};
|
|
32
|
+
return (_jsxs("div", { className: "aui-code-header-root mt-4 flex items-center justify-between gap-4 rounded-t-lg bg-muted-foreground/15 px-4 py-2 font-semibold text-foreground text-sm dark:bg-muted-foreground/20", children: [_jsx("span", { className: "aui-code-header-language lowercase [&>span]:text-xs", children: language }), _jsxs(TooltipIconButton, { tooltip: "Copy", onClick: onCopy, children: [!isCopied && _jsx(CopyIcon, {}), isCopied && _jsx(CheckIcon, {})] })] }));
|
|
33
|
+
};
|
|
34
|
+
const useCopyToClipboard = ({ copiedDuration = 3000, } = {}) => {
|
|
35
|
+
const [isCopied, setIsCopied] = useState(false);
|
|
36
|
+
const copyToClipboard = (value) => {
|
|
37
|
+
if (!value)
|
|
38
|
+
return;
|
|
39
|
+
navigator.clipboard.writeText(value).then(() => {
|
|
40
|
+
setIsCopied(true);
|
|
41
|
+
setTimeout(() => setIsCopied(false), copiedDuration);
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
return { isCopied, copyToClipboard };
|
|
45
|
+
};
|
|
46
|
+
const defaultComponents = memoizeMarkdownComponents({
|
|
47
|
+
h1: (_a) => {
|
|
48
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
49
|
+
return (_jsx("h1", Object.assign({ className: cn("aui-md-h1 mb-8 scroll-m-20 font-extrabold text-4xl tracking-tight last:mb-0", className) }, props)));
|
|
50
|
+
},
|
|
51
|
+
h2: (_a) => {
|
|
52
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
53
|
+
return (_jsx("h2", Object.assign({ className: cn("aui-md-h2 mt-8 mb-4 scroll-m-20 font-semibold text-3xl tracking-tight first:mt-0 last:mb-0", className) }, props)));
|
|
54
|
+
},
|
|
55
|
+
h3: (_a) => {
|
|
56
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
57
|
+
return (_jsx("h3", Object.assign({ className: cn("aui-md-h3 mt-6 mb-4 scroll-m-20 font-semibold text-2xl tracking-tight first:mt-0 last:mb-0", className) }, props)));
|
|
58
|
+
},
|
|
59
|
+
h4: (_a) => {
|
|
60
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
61
|
+
return (_jsx("h4", Object.assign({ className: cn("aui-md-h4 mt-6 mb-4 scroll-m-20 font-semibold text-xl tracking-tight first:mt-0 last:mb-0", className) }, props)));
|
|
62
|
+
},
|
|
63
|
+
h5: (_a) => {
|
|
64
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
65
|
+
return (_jsx("h5", Object.assign({ className: cn("aui-md-h5 my-4 font-semibold text-lg first:mt-0 last:mb-0", className) }, props)));
|
|
66
|
+
},
|
|
67
|
+
h6: (_a) => {
|
|
68
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
69
|
+
return (_jsx("h6", Object.assign({ className: cn("aui-md-h6 my-4 font-semibold first:mt-0 last:mb-0", className) }, props)));
|
|
70
|
+
},
|
|
71
|
+
p: (_a) => {
|
|
72
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
73
|
+
return (_jsx("p", Object.assign({ className: cn("aui-md-p mt-5 mb-5 leading-7 first:mt-0 last:mb-0", className) }, props)));
|
|
74
|
+
},
|
|
75
|
+
a: (_a) => {
|
|
76
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
77
|
+
return (_jsx("a", Object.assign({ className: cn("aui-md-a font-medium text-primary underline underline-offset-4", className) }, props)));
|
|
78
|
+
},
|
|
79
|
+
blockquote: (_a) => {
|
|
80
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
81
|
+
return (_jsx("blockquote", Object.assign({ className: cn("aui-md-blockquote border-l-2 pl-6 italic", className) }, props)));
|
|
82
|
+
},
|
|
83
|
+
ul: (_a) => {
|
|
84
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
85
|
+
return (_jsx("ul", Object.assign({ className: cn("aui-md-ul my-5 ml-6 list-disc [&>li]:mt-2", className) }, props)));
|
|
86
|
+
},
|
|
87
|
+
ol: (_a) => {
|
|
88
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
89
|
+
return (_jsx("ol", Object.assign({ className: cn("aui-md-ol my-5 ml-6 list-decimal [&>li]:mt-2", className) }, props)));
|
|
90
|
+
},
|
|
91
|
+
hr: (_a) => {
|
|
92
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
93
|
+
return (_jsx("hr", Object.assign({ className: cn("aui-md-hr my-5 border-b", className) }, props)));
|
|
94
|
+
},
|
|
95
|
+
table: (_a) => {
|
|
96
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
97
|
+
return (_jsx("table", Object.assign({ className: cn("aui-md-table my-5 w-full border-separate border-spacing-0 overflow-y-auto", className) }, props)));
|
|
98
|
+
},
|
|
99
|
+
th: (_a) => {
|
|
100
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
101
|
+
return (_jsx("th", Object.assign({ className: cn("aui-md-th bg-muted px-4 py-2 text-left font-bold first:rounded-tl-lg last:rounded-tr-lg [[align=center]]:text-center [[align=right]]:text-right", className) }, props)));
|
|
102
|
+
},
|
|
103
|
+
td: (_a) => {
|
|
104
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
105
|
+
return (_jsx("td", Object.assign({ className: cn("aui-md-td border-b border-l px-4 py-2 text-left last:border-r [[align=center]]:text-center [[align=right]]:text-right", className) }, props)));
|
|
106
|
+
},
|
|
107
|
+
tr: (_a) => {
|
|
108
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
109
|
+
return (_jsx("tr", Object.assign({ className: cn("aui-md-tr m-0 border-b p-0 first:border-t [&:last-child>td:first-child]:rounded-bl-lg [&:last-child>td:last-child]:rounded-br-lg", className) }, props)));
|
|
110
|
+
},
|
|
111
|
+
sup: (_a) => {
|
|
112
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
113
|
+
return (_jsx("sup", Object.assign({ className: cn("aui-md-sup [&>a]:text-xs [&>a]:no-underline", className) }, props)));
|
|
114
|
+
},
|
|
115
|
+
pre: (_a) => {
|
|
116
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
117
|
+
return (_jsx("pre", Object.assign({ className: cn("aui-md-pre overflow-x-auto rounded-t-none!rounded-b-lg bg-black p-4 text-white", className) }, props)));
|
|
118
|
+
},
|
|
119
|
+
code: function Code(_a) {
|
|
120
|
+
var { className } = _a, props = __rest(_a, ["className"]);
|
|
121
|
+
const isCodeBlock = useIsMarkdownCodeBlock();
|
|
122
|
+
return (_jsx("code", Object.assign({ className: cn(!isCodeBlock &&
|
|
123
|
+
"aui-md-inline-code rounded border bg-muted font-semibold", className) }, props)));
|
|
124
|
+
},
|
|
125
|
+
CodeHeader,
|
|
126
|
+
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type FC } from "react";
|
|
2
|
+
import { UserData } from "../../utils/userType";
|
|
3
|
+
import { Agent } from "./agent-dropdown";
|
|
4
|
+
export declare const Thread: FC<{
|
|
5
|
+
currentUserDetails: UserData;
|
|
6
|
+
agents?: Agent[];
|
|
7
|
+
initialAgentId?: string;
|
|
8
|
+
initialAgentName?: string;
|
|
9
|
+
onAgentChange?: (agent: Agent) => void;
|
|
10
|
+
}>;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
+
import { ArrowDownIcon, ArrowUpIcon, CheckIcon, ChevronLeftIcon, ChevronRightIcon, CopyIcon, PencilIcon, RefreshCwIcon, Square, } from "lucide-react";
|
|
15
|
+
import { ActionBarPrimitive, BranchPickerPrimitive, ComposerPrimitive, ErrorPrimitive, MessagePrimitive, ThreadPrimitive, } from "@assistant-ui/react";
|
|
16
|
+
import { useState } from "react";
|
|
17
|
+
import { LazyMotion, MotionConfig, domAnimation } from "motion/react";
|
|
18
|
+
import * as m from "motion/react-m";
|
|
19
|
+
import { Button } from "../../shadcn/button";
|
|
20
|
+
import { MarkdownText } from "../assistant-ui/markdown-text";
|
|
21
|
+
import { ToolFallback } from "../assistant-ui/tool-fallback";
|
|
22
|
+
import { TooltipIconButton } from "../assistant-ui/tooltip-icon-button";
|
|
23
|
+
import { ComposerAddAttachment, ComposerAttachments, UserMessageAttachments, } from "../assistant-ui/attachment";
|
|
24
|
+
import { cn } from "../../utils/cn";
|
|
25
|
+
import { AgentDropdown } from "./agent-dropdown";
|
|
26
|
+
export const Thread = ({ currentUserDetails, agents = [], initialAgentId = "default-agent", initialAgentName = "Default Agent", onAgentChange, }) => {
|
|
27
|
+
const [selectedAgent, setSelectedAgent] = useState(agents.find((a) => a.agentID === initialAgentId));
|
|
28
|
+
return (_jsx(LazyMotion, { features: domAnimation, children: _jsx(MotionConfig, { reducedMotion: "user", children: _jsx(ThreadPrimitive.Root, { className: "aui-root aui-thread-root @container flex h-full flex-col bg-background", style: {
|
|
29
|
+
["--thread-max-width"]: "44rem",
|
|
30
|
+
}, children: _jsxs(ThreadPrimitive.Viewport, { turnAnchor: "top", className: "aui-thread-viewport relative flex flex-1 flex-col overflow-x-auto overflow-y-scroll scroll-smooth px-4 pt-4", children: [_jsx(ThreadPrimitive.If, { empty: true, children: _jsx(ThreadWelcome, { currentUserDetails: currentUserDetails }) }), _jsx(ThreadPrimitive.Messages, { components: {
|
|
31
|
+
UserMessage,
|
|
32
|
+
EditComposer,
|
|
33
|
+
AssistantMessage,
|
|
34
|
+
} }), _jsxs(ThreadPrimitive.ViewportFooter, { className: "aui-thread-viewport-footer sticky bottom-0 mx-auto mt-4 flex w-full max-w-[var(--thread-max-width)] flex-col gap-4 overflow-visible rounded-t-3xl bg-background pb-4 md:pb-6", children: [_jsx(ThreadScrollToBottom, {}), _jsx(Composer, { agents: agents, selectedAgent: selectedAgent, onSelectAgent: (agent) => {
|
|
35
|
+
setSelectedAgent(agent);
|
|
36
|
+
onAgentChange === null || onAgentChange === void 0 ? void 0 : onAgentChange(agent);
|
|
37
|
+
} })] })] }) }) }) }));
|
|
38
|
+
};
|
|
39
|
+
const ThreadScrollToBottom = () => {
|
|
40
|
+
return (_jsx(ThreadPrimitive.ScrollToBottom, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Scroll to bottom", variant: "outline", className: "aui-thread-scroll-to-bottom absolute -top-12 z-10 self-center rounded-full p-4 disabled:invisible dark:bg-background dark:hover:bg-accent", children: _jsx(ArrowDownIcon, {}) }) }));
|
|
41
|
+
};
|
|
42
|
+
const ThreadWelcome = ({ currentUserDetails, }) => {
|
|
43
|
+
const now = new Date();
|
|
44
|
+
const hours = now.getHours();
|
|
45
|
+
let greeting = "";
|
|
46
|
+
if (hours >= 5 && hours < 12) {
|
|
47
|
+
greeting = "Good Morning";
|
|
48
|
+
}
|
|
49
|
+
else if (hours >= 12 && hours < 17) {
|
|
50
|
+
greeting = "Good Afternoon";
|
|
51
|
+
}
|
|
52
|
+
else if (hours >= 17 && hours < 21) {
|
|
53
|
+
greeting = "Good Evening";
|
|
54
|
+
}
|
|
55
|
+
else {
|
|
56
|
+
greeting = "Good Night";
|
|
57
|
+
}
|
|
58
|
+
console.log(greeting);
|
|
59
|
+
return (_jsxs("div", { className: "aui-thread-welcome-root mx-auto my-auto flex w-full max-w-[var(--thread-max-width)] flex-grow flex-col", children: [_jsx("div", { className: "aui-thread-welcome-center flex w-full flex-grow flex-col items-center justify-center", children: _jsxs("div", { className: "aui-thread-welcome-message flex size-full flex-col justify-center px-8", children: [_jsx(m.div, { initial: { opacity: 0, y: 10 }, animate: { opacity: 1, y: 0 }, exit: { opacity: 0, y: 10 }, className: "aui-thread-welcome-message-motion-1 text-2xl font-semibold", children: `${greeting} ${currentUserDetails.userName.split(" ")[0]}` }), _jsx(m.div, { initial: { opacity: 0, y: 10 }, animate: { opacity: 1, y: 0 }, exit: { opacity: 0, y: 10 }, transition: { delay: 0.1 }, className: "aui-thread-welcome-message-motion-2 text-2xl text-muted-foreground/65", children: "How can I help you today?" })] }) }), _jsx(ThreadSuggestions, {})] }));
|
|
60
|
+
};
|
|
61
|
+
const ThreadSuggestions = () => {
|
|
62
|
+
return (_jsx("div", { className: "aui-thread-welcome-suggestions grid w-full gap-2 pb-4 @md:grid-cols-2", children: [
|
|
63
|
+
{
|
|
64
|
+
title: "What's the weather",
|
|
65
|
+
label: "in San Francisco?",
|
|
66
|
+
action: "What's the weather in San Francisco?",
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
title: "Explain React hooks",
|
|
70
|
+
label: "like useState and useEffect",
|
|
71
|
+
action: "Explain React hooks like useState and useEffect",
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
title: "Write a SQL query",
|
|
75
|
+
label: "to find top customers",
|
|
76
|
+
action: "Write a SQL query to find top customers",
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
title: "Create a meal plan",
|
|
80
|
+
label: "for healthy weight loss",
|
|
81
|
+
action: "Create a meal plan for healthy weight loss",
|
|
82
|
+
},
|
|
83
|
+
].map((suggestedAction, index) => (_jsx(m.div, { initial: { opacity: 0, y: 20 }, animate: { opacity: 1, y: 0 }, exit: { opacity: 0, y: 20 }, transition: { delay: 0.05 * index }, className: "aui-thread-welcome-suggestion-display [&:nth-child(n+3)]:hidden @md:[&:nth-child(n+3)]:block", children: _jsx(ThreadPrimitive.Suggestion, { prompt: suggestedAction.action, send: true, asChild: true, children: _jsxs(Button, { variant: "ghost", className: "aui-thread-welcome-suggestion h-auto w-full flex-1 flex-wrap items-start justify-start gap-1 rounded-3xl border px-5 py-4 text-left text-sm @md:flex-col dark:hover:bg-accent/60", "aria-label": suggestedAction.action, children: [_jsx("span", { className: "aui-thread-welcome-suggestion-text-1 font-medium", children: suggestedAction.title }), _jsx("span", { className: "aui-thread-welcome-suggestion-text-2 text-muted-foreground", children: suggestedAction.label })] }) }) }, `suggested-action-${suggestedAction.title}-${index}`))) }));
|
|
84
|
+
};
|
|
85
|
+
const Composer = ({ agents = [], selectedAgent, onSelectAgent }) => {
|
|
86
|
+
return (_jsx(ComposerPrimitive.Root, { className: "aui-composer-root relative flex w-full flex-col", children: _jsxs(ComposerPrimitive.AttachmentDropzone, { className: "aui-composer-attachment-dropzone group/input-group flex w-full flex-col rounded-3xl border border-input bg-background px-1 pt-2 shadow-xs transition-[color,box-shadow] outline-none has-[textarea:focus-visible]:border-ring has-[textarea:focus-visible]:ring-[3px] has-[textarea:focus-visible]:ring-ring/50 data-[dragging=true]:border-dashed data-[dragging=true]:border-ring data-[dragging=true]:bg-accent/50 dark:bg-background", children: [_jsx(ComposerAttachments, {}), _jsx(ComposerPrimitive.Input, { placeholder: "Send a message...", className: "aui-composer-input mb-1 max-h-32 min-h-16 w-full resize-none bg-transparent px-3.5 pt-1.5 pb-3 text-base outline-none placeholder:text-muted-foreground focus-visible:ring-0", rows: 1, autoFocus: true, "aria-label": "Message input" }), _jsx(ComposerAction, { agents: agents, selectedAgent: selectedAgent, onSelectAgent: onSelectAgent })] }) }));
|
|
87
|
+
};
|
|
88
|
+
const ComposerAction = ({ agents = [], selectedAgent, onSelectAgent }) => {
|
|
89
|
+
return (_jsxs("div", { className: "aui-composer-action-wrapper relative mx-1 mt-2 mb-2 flex items-center justify-between", children: [_jsx(ComposerAddAttachment, {}), _jsxs("div", { className: "flex gap-3", children: [agents.length > 0 && (_jsx(AgentDropdown, { agents: agents, selectedAgent: selectedAgent, onSelectAgent: onSelectAgent !== null && onSelectAgent !== void 0 ? onSelectAgent : (() => { }), triggerClassName: "h-9 text-xs" })), _jsx(ThreadPrimitive.If, { running: false, children: _jsx(ComposerPrimitive.Send, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Send message", side: "bottom", type: "submit", variant: "default", size: "icon", className: "aui-composer-send size-[34px] rounded-full p-1", "aria-label": "Send message", children: _jsx(ArrowUpIcon, { className: "aui-composer-send-icon size-5" }) }) }) }), _jsx(ThreadPrimitive.If, { running: true, children: _jsx(ComposerPrimitive.Cancel, { asChild: true, children: _jsx(Button, { type: "button", variant: "default", size: "icon", className: "aui-composer-cancel size-[34px] rounded-full border border-muted-foreground/60 hover:bg-primary/75 dark:border-muted-foreground/90", "aria-label": "Stop generating", children: _jsx(Square, { className: "aui-composer-cancel-icon size-3.5 fill-white dark:fill-black" }) }) }) })] })] }));
|
|
90
|
+
};
|
|
91
|
+
const MessageError = () => {
|
|
92
|
+
return (_jsx(MessagePrimitive.Error, { children: _jsx(ErrorPrimitive.Root, { className: "aui-message-error-root mt-2 rounded-md border border-destructive bg-destructive/10 p-3 text-sm text-destructive dark:bg-destructive/5 dark:text-red-200", children: _jsx(ErrorPrimitive.Message, { className: "aui-message-error-message line-clamp-2" }) }) }));
|
|
93
|
+
};
|
|
94
|
+
const AssistantMessage = () => {
|
|
95
|
+
return (_jsxs(MessagePrimitive.Root, { className: "aui-assistant-message-root relative mx-auto w-full max-w-[var(--thread-max-width)] animate-in py-4 duration-150 ease-out fade-in slide-in-from-bottom-1", "data-role": "assistant", children: [_jsxs("div", { className: "aui-assistant-message-content mx-2 leading-7 break-words text-foreground", children: [_jsx(MessagePrimitive.Parts, { components: {
|
|
96
|
+
Text: MarkdownText,
|
|
97
|
+
tools: { Fallback: ToolFallback },
|
|
98
|
+
} }), _jsx(MessageError, {})] }), _jsxs("div", { className: "aui-assistant-message-footer mt-2 ml-2 flex", children: [_jsx(BranchPicker, {}), _jsx(AssistantActionBar, {})] })] }));
|
|
99
|
+
};
|
|
100
|
+
const AssistantActionBar = () => {
|
|
101
|
+
return (_jsxs(ActionBarPrimitive.Root, { hideWhenRunning: true, autohide: "not-last", autohideFloat: "single-branch", className: "aui-assistant-action-bar-root col-start-3 row-start-2 -ml-1 flex gap-1 text-muted-foreground data-floating:absolute data-floating:rounded-md data-floating:border data-floating:bg-background data-floating:p-1 data-floating:shadow-sm", children: [_jsx(ActionBarPrimitive.Copy, { asChild: true, children: _jsxs(TooltipIconButton, { tooltip: "Copy", children: [_jsx(MessagePrimitive.If, { copied: true, children: _jsx(CheckIcon, {}) }), _jsx(MessagePrimitive.If, { copied: false, children: _jsx(CopyIcon, {}) })] }) }), _jsx(ActionBarPrimitive.Reload, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Refresh", children: _jsx(RefreshCwIcon, {}) }) })] }));
|
|
102
|
+
};
|
|
103
|
+
const UserMessage = () => {
|
|
104
|
+
return (_jsxs(MessagePrimitive.Root, { className: "aui-user-message-root mx-auto grid w-full max-w-[var(--thread-max-width)] animate-in auto-rows-auto grid-cols-[minmax(72px,1fr)_auto] content-start gap-y-2 px-2 py-4 duration-150 ease-out fade-in slide-in-from-bottom-1 [&:where(>*)]:col-start-2", "data-role": "user", children: [_jsx(UserMessageAttachments, {}), _jsxs("div", { className: "aui-user-message-content-wrapper relative col-start-2 min-w-0", children: [_jsx("div", { className: "aui-user-message-content rounded-3xl bg-muted px-5 py-2.5 break-words text-foreground", children: _jsx(MessagePrimitive.Parts, {}) }), _jsx("div", { className: "aui-user-action-bar-wrapper absolute top-1/2 left-0 -translate-x-full -translate-y-1/2 pr-2", children: _jsx(UserActionBar, {}) })] }), _jsx(BranchPicker, { className: "aui-user-branch-picker col-span-full col-start-1 row-start-3 -mr-1 justify-end" })] }));
|
|
105
|
+
};
|
|
106
|
+
const UserActionBar = () => {
|
|
107
|
+
return (_jsx(ActionBarPrimitive.Root, { hideWhenRunning: true, autohide: "not-last", className: "aui-user-action-bar-root flex flex-col items-end", children: _jsx(ActionBarPrimitive.Edit, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Edit", className: "aui-user-action-edit p-4", children: _jsx(PencilIcon, {}) }) }) }));
|
|
108
|
+
};
|
|
109
|
+
const EditComposer = () => {
|
|
110
|
+
return (_jsx(MessagePrimitive.Root, { className: "aui-edit-composer-wrapper mx-auto flex w-full max-w-[var(--thread-max-width)] flex-col gap-4 px-2", children: _jsxs(ComposerPrimitive.Root, { className: "aui-edit-composer-root ml-auto flex w-full max-w-7/8 flex-col rounded-xl bg-muted", children: [_jsx(ComposerPrimitive.Input, { className: "aui-edit-composer-input flex min-h-[60px] w-full resize-none bg-transparent p-4 text-foreground outline-none", autoFocus: true }), _jsxs("div", { className: "aui-edit-composer-footer mx-3 mb-3 flex items-center justify-center gap-2 self-end", children: [_jsx(ComposerPrimitive.Cancel, { asChild: true, children: _jsx(Button, { variant: "ghost", size: "sm", "aria-label": "Cancel edit", children: "Cancel" }) }), _jsx(ComposerPrimitive.Send, { asChild: true, children: _jsx(Button, { size: "sm", "aria-label": "Update message", children: "Update" }) })] })] }) }));
|
|
111
|
+
};
|
|
112
|
+
const BranchPicker = (_a) => {
|
|
113
|
+
var { className } = _a, rest = __rest(_a, ["className"]);
|
|
114
|
+
return (_jsxs(BranchPickerPrimitive.Root, Object.assign({ hideWhenSingleBranch: true, className: cn("aui-branch-picker-root mr-2 -ml-2 inline-flex items-center text-xs text-muted-foreground", className) }, rest, { children: [_jsx(BranchPickerPrimitive.Previous, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Previous", children: _jsx(ChevronLeftIcon, {}) }) }), _jsxs("span", { className: "aui-branch-picker-state font-medium", children: [_jsx(BranchPickerPrimitive.Number, {}), " / ", _jsx(BranchPickerPrimitive.Count, {})] }), _jsx(BranchPickerPrimitive.Next, { asChild: true, children: _jsx(TooltipIconButton, { tooltip: "Next", children: _jsx(ChevronRightIcon, {}) }) })] })));
|
|
115
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { CheckIcon, ChevronDownIcon, ChevronUpIcon, XCircleIcon, } from "lucide-react";
|
|
4
|
+
import { useState } from "react";
|
|
5
|
+
import { Button } from "../../shadcn/button";
|
|
6
|
+
import { cn } from "../../utils/cn";
|
|
7
|
+
export const ToolFallback = ({ toolName, argsText, result, status, }) => {
|
|
8
|
+
const [isCollapsed, setIsCollapsed] = useState(true);
|
|
9
|
+
const isCancelled = (status === null || status === void 0 ? void 0 : status.type) === "incomplete" && status.reason === "cancelled";
|
|
10
|
+
const cancelledReason = isCancelled && status.error
|
|
11
|
+
? typeof status.error === "string"
|
|
12
|
+
? status.error
|
|
13
|
+
: JSON.stringify(status.error)
|
|
14
|
+
: null;
|
|
15
|
+
return (_jsxs("div", { className: cn("aui-tool-fallback-root mb-4 flex w-full flex-col gap-3 rounded-lg border py-3", isCancelled && "border-muted-foreground/30 bg-muted/30"), children: [_jsxs("div", { className: "aui-tool-fallback-header flex items-center gap-2 px-4", children: [isCancelled ? (_jsx(XCircleIcon, { className: "aui-tool-fallback-icon size-4 text-muted-foreground" })) : (_jsx(CheckIcon, { className: "aui-tool-fallback-icon size-4" })), _jsxs("p", { className: cn("aui-tool-fallback-title grow", isCancelled && "text-muted-foreground line-through"), children: [isCancelled ? "Cancelled tool: " : "Used tool: ", _jsx("b", { children: toolName })] }), _jsx(Button, { onClick: () => setIsCollapsed(!isCollapsed), children: isCollapsed ? _jsx(ChevronUpIcon, {}) : _jsx(ChevronDownIcon, {}) })] }), !isCollapsed && (_jsxs("div", { className: "aui-tool-fallback-content flex flex-col gap-2 border-t pt-2", children: [cancelledReason && (_jsxs("div", { className: "aui-tool-fallback-cancelled-root px-4", children: [_jsx("p", { className: "aui-tool-fallback-cancelled-header font-semibold text-muted-foreground", children: "Cancelled reason:" }), _jsx("p", { className: "aui-tool-fallback-cancelled-reason text-muted-foreground", children: cancelledReason })] })), _jsx("div", { className: cn("aui-tool-fallback-args-root px-4", isCancelled && "opacity-60"), children: _jsx("pre", { className: "aui-tool-fallback-args-value whitespace-pre-wrap", children: argsText }) }), !isCancelled && result !== undefined && (_jsxs("div", { className: "aui-tool-fallback-result-root border-t border-dashed px-4 pt-2", children: [_jsx("p", { className: "aui-tool-fallback-result-header font-semibold", children: "Result:" }), _jsx("pre", { className: "aui-tool-fallback-result-content whitespace-pre-wrap", children: typeof result === "string"
|
|
16
|
+
? result
|
|
17
|
+
: JSON.stringify(result, null, 2) })] }))] }))] }));
|
|
18
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ComponentPropsWithRef } from "react";
|
|
2
|
+
import { Button } from "../../shadcn/button";
|
|
3
|
+
export type TooltipIconButtonProps = ComponentPropsWithRef<typeof Button> & {
|
|
4
|
+
tooltip: string;
|
|
5
|
+
side?: "top" | "bottom" | "left" | "right";
|
|
6
|
+
};
|
|
7
|
+
export declare const TooltipIconButton: import("react").ForwardRefExoticComponent<Omit<TooltipIconButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
+
import { forwardRef } from "react";
|
|
15
|
+
import { Slottable } from "@radix-ui/react-slot";
|
|
16
|
+
import { Tooltip, TooltipContent, TooltipTrigger, } from "../../shadcn/tooltip";
|
|
17
|
+
import { Button } from "../../shadcn/button";
|
|
18
|
+
import { cn } from "../../utils/cn";
|
|
19
|
+
export const TooltipIconButton = forwardRef((_a, ref) => {
|
|
20
|
+
var { children, tooltip, side = "bottom", className } = _a, rest = __rest(_a, ["children", "tooltip", "side", "className"]);
|
|
21
|
+
return (_jsxs(Tooltip, { children: [_jsx(TooltipTrigger, { asChild: true, children: _jsxs(Button, Object.assign({ variant: "ghost", size: "icon" }, rest, { className: cn("aui-button-icon size-6 p-1", className), ref: ref, children: [_jsx(Slottable, { children: children }), _jsx("span", { className: "aui-sr-only sr-only", children: tooltip })] })) }), _jsx(TooltipContent, { side: side, children: tooltip })] }));
|
|
22
|
+
});
|
|
23
|
+
TooltipIconButton.displayName = "TooltipIconButton";
|
|
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
|
|
|
3
3
|
import { useState, useRef } from "react";
|
|
4
4
|
import { UploadCloud, FileUp, Upload, X } from "lucide-react";
|
|
5
5
|
import { v4 as uuidv4 } from "uuid";
|
|
6
|
-
import { Input } from "
|
|
6
|
+
import { Input } from "../../shadcn/input";
|
|
7
7
|
import { IconButtonWithTooltip } from "../buttons";
|
|
8
8
|
/* ----------------------------------------------------
|
|
9
9
|
SAFE Base64 Converter
|
|
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-run
|
|
|
3
3
|
import { useState, useRef, useImperativeHandle, forwardRef } from "react";
|
|
4
4
|
import { UploadCloud, FileUp, Upload } from "lucide-react";
|
|
5
5
|
import { v4 as uuidv4 } from "uuid";
|
|
6
|
-
import { Input } from "
|
|
6
|
+
import { Input } from "../../shadcn/input";
|
|
7
7
|
import { IconButtonWithTooltip } from "../buttons";
|
|
8
8
|
import { uploadFilePublic } from "../../utils/api/file-upload copy";
|
|
9
9
|
/* ----------------------------------------------------
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DataTableProps } from "../type";
|
|
2
|
-
export declare function DataTable<T>({ data, columns, keyExtractor, onRowClick }: DataTableProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare function DataTable<T>({ data, columns, keyExtractor, onRowClick, groupedColumns, onToggleGroup }: DataTableProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +1,68 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from "../../../shadcn/table";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
import React, { useState } from "react";
|
|
4
|
+
import { ChevronRight, ChevronDown, GripVertical } from "lucide-react";
|
|
5
|
+
import { Badge } from "../../../shadcn/badge";
|
|
6
|
+
export function DataTable({ data, columns, keyExtractor, onRowClick, groupedColumns = [], onToggleGroup }) {
|
|
7
|
+
const [expandedGroups, setExpandedGroups] = useState(new Set());
|
|
8
|
+
const toggleGroup = (groupId) => {
|
|
9
|
+
const next = new Set(expandedGroups);
|
|
10
|
+
if (next.has(groupId)) {
|
|
11
|
+
next.delete(groupId);
|
|
12
|
+
}
|
|
13
|
+
else {
|
|
14
|
+
next.add(groupId);
|
|
15
|
+
}
|
|
16
|
+
setExpandedGroups(next);
|
|
17
|
+
};
|
|
18
|
+
// Helper to get accessor key from column header string
|
|
19
|
+
const getAccessor = (headerStr) => {
|
|
20
|
+
const col = columns.find(c => (typeof c.header === 'string' ? c.header : '') === headerStr);
|
|
21
|
+
return col === null || col === void 0 ? void 0 : col.accessorKey;
|
|
22
|
+
};
|
|
23
|
+
// Group data recursively
|
|
24
|
+
const getGroupedData = (items, groupIndices) => {
|
|
25
|
+
if (groupIndices.length === 0)
|
|
26
|
+
return items;
|
|
27
|
+
const [currentGroupHeader, ...remainingGroups] = groupIndices;
|
|
28
|
+
const accessor = getAccessor(currentGroupHeader);
|
|
29
|
+
if (!accessor)
|
|
30
|
+
return items;
|
|
31
|
+
const groups = new Map();
|
|
32
|
+
items.forEach(item => {
|
|
33
|
+
var _a;
|
|
34
|
+
const val = (_a = item[accessor]) !== null && _a !== void 0 ? _a : "None";
|
|
35
|
+
if (!groups.has(val))
|
|
36
|
+
groups.set(val, []);
|
|
37
|
+
groups.get(val).push(item);
|
|
38
|
+
});
|
|
39
|
+
return Array.from(groups.entries()).map(([value, groupItems]) => ({
|
|
40
|
+
isGroup: true,
|
|
41
|
+
header: currentGroupHeader,
|
|
42
|
+
value,
|
|
43
|
+
id: `${currentGroupHeader}:${value}`,
|
|
44
|
+
children: getGroupedData(groupItems, remainingGroups),
|
|
45
|
+
count: groupItems.length
|
|
46
|
+
}));
|
|
47
|
+
};
|
|
48
|
+
const groupedData = getGroupedData(data, groupedColumns);
|
|
49
|
+
const renderRows = (items, level = 0) => {
|
|
50
|
+
return items.map((item, index) => {
|
|
51
|
+
if (item.isGroup) {
|
|
52
|
+
const isExpanded = expandedGroups.has(item.id);
|
|
53
|
+
return (_jsxs(React.Fragment, { children: [_jsx(TableRow, { className: "bg-muted/40 hover:bg-muted/60 cursor-pointer border-l-4 border-l-primary/50", onClick: () => toggleGroup(item.id), children: _jsx(TableCell, { colSpan: columns.length, className: "py-2", style: { paddingLeft: `${level * 24 + 12}px` }, children: _jsxs("div", { className: "flex items-center gap-2", children: [isExpanded ? _jsx(ChevronDown, { className: "w-4 h-4" }) : _jsx(ChevronRight, { className: "w-4 h-4" }), _jsxs("span", { className: "text-xs font-bold uppercase tracking-wider text-muted-foreground", children: [item.header, ":"] }), _jsx("span", { className: "font-semibold", children: String(item.value) }), _jsxs(Badge, { variant: "outline", className: "ml-2 text-[10px] py-0 h-4", children: [item.count, " items"] })] }) }) }), isExpanded && renderRows(item.children, level + 1)] }, item.id));
|
|
54
|
+
}
|
|
55
|
+
return (_jsx(TableRow, { onClick: () => onRowClick && onRowClick(item), className: `hover:bg-muted/50 transition-colors border-b border-border ${onRowClick ? "cursor-pointer" : ""}`, children: columns.map((col, colIndex) => (_jsx(TableCell, { className: colIndex === 0 ? "font-medium" : "", style: { paddingLeft: colIndex === 0 ? `${level * 24 + 16}px` : undefined }, children: col.cell
|
|
56
|
+
? col.cell(item)
|
|
57
|
+
: col.accessorKey
|
|
58
|
+
? String(item[col.accessorKey] || "N/A")
|
|
59
|
+
: null }, colIndex))) }, keyExtractor(item)));
|
|
60
|
+
});
|
|
61
|
+
};
|
|
62
|
+
return (_jsx("div", { className: "rounded-md border bg-background shadow-sm overflow-hidden", children: _jsxs(Table, { children: [_jsx(TableHeader, { children: _jsx(TableRow, { className: "bg-muted border-b border-border", children: columns.map((col, index) => {
|
|
63
|
+
const headerText = typeof col.header === "string" ? col.header : "";
|
|
64
|
+
return (_jsx(TableHead, { className: "font-semibold text-muted-foreground group relative", children: _jsxs("div", { className: "flex items-center gap-2", children: [headerText && (_jsx("div", { className: "cursor-grab active:cursor-grabbing p-1 hover:bg-background/50 rounded transition-colors", draggable: true, onDragStart: (e) => {
|
|
65
|
+
e.dataTransfer.setData("columnHeader", headerText);
|
|
66
|
+
}, children: _jsx(GripVertical, { className: "w-3 h-3 opacity-0 group-hover:opacity-100 transition-opacity" }) })), typeof col.header === "function" ? col.header() : col.header] }) }, index));
|
|
67
|
+
}) }) }), _jsx(TableBody, { children: data && data.length > 0 ? (renderRows(groupedData)) : (_jsx(TableRow, { children: _jsx(TableCell, { colSpan: columns.length, className: "h-24 text-center text-muted-foreground", children: "No records found." }) })) })] }) }));
|
|
9
68
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DataTableLayoutProps } from "./type";
|
|
2
|
-
export declare function DataTableLayout<T>({ data, columns,
|
|
2
|
+
export declare function DataTableLayout<T>({ data, columns, extraTools, }: DataTableLayoutProps<T>): import("react/jsx-runtime").JSX.Element;
|