e30e75b5d4
Code Quality / Oxlint + Oxfmt (push) Waiting to run
Code Quality / Template Sync (push) Waiting to run
Code Quality / Build Changed Packages (push) Waiting to run
Code Quality / Test Changed Packages (push) Waiting to run
Deploy Expo Example / Deploy Production (push) Waiting to run
Deploy Ink Example / Deploy Production (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-stream, 3.12) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Waiting to run
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Waiting to run
Deploy Shadcn Registry / Deploy Production (push) Waiting to run
Template Metrics / LOC + Bundle Size (push) Waiting to run
Changesets / Create Version PR (push) Has been cancelled
262 lines
6.7 KiB
TypeScript
262 lines
6.7 KiB
TypeScript
"use client";
|
|
|
|
import "@assistant-ui/react-markdown/styles/dot.css";
|
|
|
|
import {
|
|
type CodeHeaderProps,
|
|
MarkdownTextPrimitive,
|
|
unstable_memoizeMarkdownComponents as memoizeMarkdownComponents,
|
|
useIsMarkdownCodeBlock,
|
|
} from "@assistant-ui/react-markdown";
|
|
import remarkGfm from "remark-gfm";
|
|
import { type FC, memo, useState } from "react";
|
|
import { CheckIcon, CopyIcon } from "lucide-react";
|
|
|
|
import { SyntaxHighlighter } from "@/components/assistant-ui/shiki-highlighter";
|
|
import { TooltipIconButton } from "@/components/assistant-ui/tooltip-icon-button";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const MarkdownTextImpl = () => {
|
|
return (
|
|
<MarkdownTextPrimitive
|
|
remarkPlugins={[remarkGfm]}
|
|
className="aui-md"
|
|
components={defaultComponents}
|
|
defer
|
|
/>
|
|
);
|
|
};
|
|
|
|
export const MarkdownText = memo(MarkdownTextImpl);
|
|
|
|
const CodeHeader: FC<CodeHeaderProps> = ({ language, code }) => {
|
|
const { isCopied, copyToClipboard } = useCopyToClipboard();
|
|
const onCopy = () => {
|
|
if (!code || isCopied) return;
|
|
copyToClipboard(code);
|
|
};
|
|
|
|
return (
|
|
<div className="aui-code-header-root border-border/50 bg-muted/50 mt-3 flex items-center justify-between rounded-t-xl border border-b-0 px-3.5 py-1.5 text-xs">
|
|
<span className="aui-code-header-language text-muted-foreground font-medium lowercase">
|
|
{language}
|
|
</span>
|
|
<TooltipIconButton tooltip="Copy" onClick={onCopy}>
|
|
{!isCopied && (
|
|
<CopyIcon className="animate-in zoom-in-75 fade-in duration-150" />
|
|
)}
|
|
{isCopied && (
|
|
<CheckIcon className="animate-in zoom-in-50 fade-in duration-200 ease-out" />
|
|
)}
|
|
</TooltipIconButton>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const useCopyToClipboard = ({
|
|
copiedDuration = 3000,
|
|
}: {
|
|
copiedDuration?: number;
|
|
} = {}) => {
|
|
const [isCopied, setIsCopied] = useState<boolean>(false);
|
|
|
|
const copyToClipboard = (value: string) => {
|
|
if (!value || typeof navigator === "undefined" || !navigator.clipboard) {
|
|
return;
|
|
}
|
|
|
|
navigator.clipboard.writeText(value).then(
|
|
() => {
|
|
setIsCopied(true);
|
|
setTimeout(() => setIsCopied(false), copiedDuration);
|
|
},
|
|
() => {},
|
|
);
|
|
};
|
|
|
|
return { isCopied, copyToClipboard };
|
|
};
|
|
|
|
const defaultComponents = memoizeMarkdownComponents({
|
|
SyntaxHighlighter,
|
|
h1: ({ className, ...props }) => (
|
|
<h1
|
|
className={cn(
|
|
"aui-md-h1 mt-5 mb-2 scroll-m-20 text-xl font-semibold first:mt-0 last:mb-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h2: ({ className, ...props }) => (
|
|
<h2
|
|
className={cn(
|
|
"aui-md-h2 mt-5 mb-2 scroll-m-20 text-lg font-semibold first:mt-0 last:mb-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h3: ({ className, ...props }) => (
|
|
<h3
|
|
className={cn(
|
|
"aui-md-h3 mt-4 mb-1.5 scroll-m-20 text-base font-semibold first:mt-0 last:mb-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h4: ({ className, ...props }) => (
|
|
<h4
|
|
className={cn(
|
|
"aui-md-h4 mt-3.5 mb-1 scroll-m-20 text-base font-medium first:mt-0 last:mb-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h5: ({ className, ...props }) => (
|
|
<h5
|
|
className={cn(
|
|
"aui-md-h5 mt-3 mb-1 text-sm font-semibold first:mt-0 last:mb-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
h6: ({ className, ...props }) => (
|
|
<h6
|
|
className={cn(
|
|
"aui-md-h6 mt-3 mb-1 text-sm font-medium first:mt-0 last:mb-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
p: ({ className, ...props }) => (
|
|
<p
|
|
className={cn(
|
|
"aui-md-p my-3 leading-relaxed first:mt-0 last:mb-0",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
a: ({ className, ...props }) => (
|
|
<a
|
|
className={cn(
|
|
"aui-md-a text-primary hover:text-primary/80 underline underline-offset-2",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
blockquote: ({ className, ...props }) => (
|
|
<blockquote
|
|
className={cn(
|
|
"aui-md-blockquote border-muted-foreground/30 text-muted-foreground my-3 border-s-2 ps-4",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
ul: ({ className, ...props }) => (
|
|
<ul
|
|
className={cn(
|
|
"aui-md-ul marker:text-muted-foreground my-3 ms-5 list-disc [&>li]:mt-1",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
ol: ({ className, ...props }) => (
|
|
<ol
|
|
className={cn(
|
|
"aui-md-ol marker:text-muted-foreground my-3 ms-5 list-decimal [&>li]:mt-1",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
hr: ({ className, ...props }) => (
|
|
<hr
|
|
className={cn("aui-md-hr border-muted-foreground/20 my-3", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
table: ({ className, ...props }) => (
|
|
<table
|
|
className={cn(
|
|
"aui-md-table my-3 w-full border-separate border-spacing-0 overflow-y-auto",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
th: ({ className, ...props }) => (
|
|
<th
|
|
className={cn(
|
|
"aui-md-th bg-muted px-3 py-1.5 text-start font-medium first:rounded-ss-lg last:rounded-se-lg [[align=center]]:text-center [[align=right]]:text-right",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
td: ({ className, ...props }) => (
|
|
<td
|
|
className={cn(
|
|
"aui-md-td border-muted-foreground/20 border-s border-b px-3 py-1.5 text-start last:border-e [[align=center]]:text-center [[align=right]]:text-right",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
tr: ({ className, ...props }) => (
|
|
<tr
|
|
className={cn(
|
|
"aui-md-tr m-0 border-b p-0 first:border-t [&:last-child>td:first-child]:rounded-es-lg [&:last-child>td:last-child]:rounded-ee-lg",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
li: ({ className, ...props }) => (
|
|
<li className={cn("aui-md-li leading-relaxed", className)} {...props} />
|
|
),
|
|
strong: ({ className, ...props }) => (
|
|
<strong
|
|
className={cn("aui-md-strong font-semibold", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
sup: ({ className, ...props }) => (
|
|
<sup
|
|
className={cn("aui-md-sup [&>a]:text-xs [&>a]:no-underline", className)}
|
|
{...props}
|
|
/>
|
|
),
|
|
pre: ({ className, ...props }) => (
|
|
<pre
|
|
className={cn(
|
|
"aui-md-pre border-border/50 bg-muted/30 overflow-x-auto rounded-t-none rounded-b-xl border border-t-0 p-3.5 text-[13px] leading-relaxed",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
),
|
|
code: function Code({ className, ...props }) {
|
|
const isCodeBlock = useIsMarkdownCodeBlock();
|
|
return (
|
|
<code
|
|
className={cn(
|
|
!isCodeBlock &&
|
|
"aui-md-inline-code bg-muted rounded-md px-1.5 py-0.5 font-mono text-[0.85em]",
|
|
className,
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
},
|
|
CodeHeader,
|
|
});
|