mirror of
https://github.com/logseq/logseq.git
synced 2026-05-25 05:04:24 +00:00
382 lines
8.5 KiB
TypeScript
382 lines
8.5 KiB
TypeScript
"use client";
|
|
|
|
import type { UIMessage } from "ai";
|
|
import type {
|
|
ComponentProps,
|
|
HTMLAttributes,
|
|
ReactElement,
|
|
ReactNode,
|
|
} from "react";
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
ButtonGroup,
|
|
ButtonGroupText,
|
|
} from "@/components/ui/button-group";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from "@/components/ui/tooltip";
|
|
import { cn } from "@/lib/utils";
|
|
import { ChevronLeftIcon, ChevronRightIcon } from "lucide-react";
|
|
import {
|
|
createContext,
|
|
memo,
|
|
useCallback,
|
|
useContext,
|
|
useEffect,
|
|
useMemo,
|
|
useState,
|
|
} from "react";
|
|
import { Streamdown } from "streamdown";
|
|
|
|
export type MessageProps = HTMLAttributes<HTMLDivElement> & {
|
|
from: UIMessage["role"];
|
|
};
|
|
|
|
export const Message = ({ className, from, ...props }: MessageProps) => (
|
|
<div
|
|
className={cn(
|
|
"group flex w-full max-w-4xl flex-col gap-2",
|
|
from === "user" ? "is-user ml-auto justify-end" : "is-assistant",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
|
|
export type MessageContentProps = HTMLAttributes<HTMLDivElement>;
|
|
|
|
export const MessageContent = ({
|
|
children,
|
|
className,
|
|
...props
|
|
}: MessageContentProps) => (
|
|
<div
|
|
className={cn(
|
|
"is-user:dark flex w-fit min-w-0 max-w-full flex-col gap-2 overflow-hidden text-sm",
|
|
"group-[.is-user]:ml-auto group-[.is-user]:rounded-lg group-[.is-user]:bg-secondary group-[.is-user]:px-4 group-[.is-user]:py-3 group-[.is-user]:text-foreground",
|
|
"group-[.is-assistant]:text-foreground",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
|
|
export type MessageActionsProps = ComponentProps<"div">;
|
|
|
|
export const MessageActions = ({
|
|
className,
|
|
children,
|
|
...props
|
|
}: MessageActionsProps) => (
|
|
<div className={cn("flex items-center gap-1", className)} {...props}>
|
|
{children}
|
|
</div>
|
|
);
|
|
|
|
export type MessageActionProps = ComponentProps<typeof Button> & {
|
|
tooltip?: string;
|
|
label?: string;
|
|
};
|
|
|
|
export const MessageAction = ({
|
|
tooltip,
|
|
children,
|
|
label,
|
|
variant = "ghost",
|
|
size = "icon-sm",
|
|
...props
|
|
}: MessageActionProps) => {
|
|
const button = (
|
|
<Button size={size} type="button" variant={variant} {...props}>
|
|
{children}
|
|
<span className="sr-only">{label || tooltip}</span>
|
|
</Button>
|
|
);
|
|
|
|
if (tooltip) {
|
|
return (
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>{button}</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p>{tooltip}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
);
|
|
}
|
|
|
|
return button;
|
|
};
|
|
|
|
interface MessageBranchContextType {
|
|
currentBranch: number;
|
|
totalBranches: number;
|
|
goToPrevious: () => void;
|
|
goToNext: () => void;
|
|
branches: ReactElement[];
|
|
setBranches: (branches: ReactElement[]) => void;
|
|
}
|
|
|
|
const MessageBranchContext = createContext<MessageBranchContextType | null>(
|
|
null
|
|
);
|
|
|
|
const useMessageBranch = () => {
|
|
const context = useContext(MessageBranchContext);
|
|
|
|
if (!context) {
|
|
throw new Error(
|
|
"MessageBranch components must be used within MessageBranch"
|
|
);
|
|
}
|
|
|
|
return context;
|
|
};
|
|
|
|
export type MessageBranchProps = HTMLAttributes<HTMLDivElement> & {
|
|
defaultBranch?: number;
|
|
onBranchChange?: (branchIndex: number) => void;
|
|
};
|
|
|
|
export const MessageBranch = ({
|
|
defaultBranch = 0,
|
|
onBranchChange,
|
|
className,
|
|
...props
|
|
}: MessageBranchProps) => {
|
|
const [currentBranch, setCurrentBranch] = useState(defaultBranch);
|
|
const [branches, setBranches] = useState<ReactElement[]>([]);
|
|
|
|
const handleBranchChange = useCallback(
|
|
(newBranch: number) => {
|
|
setCurrentBranch(newBranch);
|
|
onBranchChange?.(newBranch);
|
|
},
|
|
[onBranchChange]
|
|
);
|
|
|
|
const goToPrevious = useCallback(() => {
|
|
const newBranch =
|
|
currentBranch > 0 ? currentBranch - 1 : branches.length - 1;
|
|
handleBranchChange(newBranch);
|
|
}, [currentBranch, branches.length, handleBranchChange]);
|
|
|
|
const goToNext = useCallback(() => {
|
|
const newBranch =
|
|
currentBranch < branches.length - 1 ? currentBranch + 1 : 0;
|
|
handleBranchChange(newBranch);
|
|
}, [currentBranch, branches.length, handleBranchChange]);
|
|
|
|
const contextValue = useMemo<MessageBranchContextType>(
|
|
() => ({
|
|
branches,
|
|
currentBranch,
|
|
goToNext,
|
|
goToPrevious,
|
|
setBranches,
|
|
totalBranches: branches.length,
|
|
}),
|
|
[currentBranch, branches, goToNext, goToPrevious]
|
|
);
|
|
|
|
return (
|
|
<MessageBranchContext.Provider value={contextValue}>
|
|
<div className={cn("space-y-2", className)} {...props} />
|
|
</MessageBranchContext.Provider>
|
|
);
|
|
};
|
|
|
|
export type MessageBranchContentProps = HTMLAttributes<HTMLDivElement>;
|
|
|
|
export const MessageBranchContent = ({
|
|
children,
|
|
className,
|
|
...props
|
|
}: MessageBranchContentProps) => {
|
|
const { currentBranch, setBranches, branches } = useMessageBranch();
|
|
|
|
const childrenArray = useMemo(
|
|
() =>
|
|
(Array.isArray(children) ? children : [children]).filter(
|
|
Boolean
|
|
) as ReactElement[],
|
|
[children]
|
|
);
|
|
|
|
useEffect(() => {
|
|
setBranches(childrenArray);
|
|
}, [childrenArray, setBranches]);
|
|
|
|
if (branches.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className={cn("space-y-2", className)} {...props}>
|
|
{branches[currentBranch]}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export type MessageBranchSelectorProps = ComponentProps<typeof ButtonGroup>;
|
|
|
|
export const MessageBranchSelector = ({
|
|
className,
|
|
...props
|
|
}: MessageBranchSelectorProps) => (
|
|
<ButtonGroup className={cn("w-fit", className)} {...props} />
|
|
);
|
|
|
|
export type MessageBranchPreviousProps = ComponentProps<typeof Button>;
|
|
|
|
export const MessageBranchPrevious = ({
|
|
className,
|
|
...props
|
|
}: MessageBranchPreviousProps) => {
|
|
const { goToPrevious, totalBranches } = useMessageBranch();
|
|
|
|
return (
|
|
<Button
|
|
className={cn("size-7", className)}
|
|
disabled={totalBranches <= 1}
|
|
onClick={goToPrevious}
|
|
size="icon"
|
|
type="button"
|
|
variant="ghost"
|
|
{...props}
|
|
>
|
|
<ChevronLeftIcon className="size-3" />
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export type MessageBranchNextProps = ComponentProps<typeof Button>;
|
|
|
|
export const MessageBranchNext = ({
|
|
className,
|
|
...props
|
|
}: MessageBranchNextProps) => {
|
|
const { goToNext, totalBranches } = useMessageBranch();
|
|
|
|
return (
|
|
<Button
|
|
className={cn("size-7", className)}
|
|
disabled={totalBranches <= 1}
|
|
onClick={goToNext}
|
|
size="icon"
|
|
type="button"
|
|
variant="ghost"
|
|
{...props}
|
|
>
|
|
<ChevronRightIcon className="size-3" />
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export type MessageBranchPageProps = HTMLAttributes<HTMLSpanElement>;
|
|
|
|
export const MessageBranchPage = ({
|
|
className,
|
|
...props
|
|
}: MessageBranchPageProps) => {
|
|
const { currentBranch, totalBranches } = useMessageBranch();
|
|
|
|
return (
|
|
<ButtonGroupText
|
|
className={cn(
|
|
"border-none bg-transparent text-muted-foreground shadow-none",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{currentBranch + 1} of {totalBranches}
|
|
</ButtonGroupText>
|
|
);
|
|
};
|
|
|
|
export type MessageResponseProps = ComponentProps<"div">;
|
|
|
|
function extractText(children: ReactNode): string | null {
|
|
if (children == null || typeof children === "boolean") {
|
|
return "";
|
|
}
|
|
|
|
if (
|
|
typeof children === "string" ||
|
|
typeof children === "number" ||
|
|
typeof children === "bigint"
|
|
) {
|
|
return String(children);
|
|
}
|
|
|
|
if (Array.isArray(children)) {
|
|
let result = "";
|
|
for (const child of children) {
|
|
const part = extractText(child);
|
|
if (part === null) {
|
|
return null;
|
|
}
|
|
result += part;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
export const MessageResponse = memo(
|
|
({ className, children, ...props }: MessageResponseProps) => {
|
|
const text = extractText(children);
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"size-full break-words [&>*:first-child]:mt-0 [&>*:last-child]:mb-0",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{text !== null ? (
|
|
<Streamdown
|
|
className="space-y-3 whitespace-pre-wrap"
|
|
mode="streaming"
|
|
parseIncompleteMarkdown={true}
|
|
>
|
|
{text}
|
|
</Streamdown>
|
|
) : (
|
|
children
|
|
)}
|
|
</div>
|
|
);
|
|
},
|
|
(prevProps, nextProps) => prevProps.children === nextProps.children
|
|
);
|
|
|
|
MessageResponse.displayName = "MessageResponse";
|
|
|
|
export type MessageToolbarProps = ComponentProps<"div">;
|
|
|
|
export const MessageToolbar = ({
|
|
className,
|
|
children,
|
|
...props
|
|
}: MessageToolbarProps) => (
|
|
<div
|
|
className={cn(
|
|
"mt-4 flex w-full items-center justify-between gap-4",
|
|
className
|
|
)}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|