mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-19 04:14:46 +08:00
Same fix as message-list-item: project URLs and regular links in artifact file preview should be rendered as plain links, not badges. Only actual citations (in citationMap) should be rendered as badges. Co-authored-by: Cursor <cursoragent@cursor.com>
356 lines
11 KiB
TypeScript
356 lines
11 KiB
TypeScript
import {
|
|
Code2Icon,
|
|
CopyIcon,
|
|
DownloadIcon,
|
|
EyeIcon,
|
|
LoaderIcon,
|
|
PackageIcon,
|
|
SquareArrowOutUpRightIcon,
|
|
XIcon,
|
|
} from "lucide-react";
|
|
import * as React from "react";
|
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
|
import { toast } from "sonner";
|
|
import { Streamdown } from "streamdown";
|
|
|
|
import {
|
|
Artifact,
|
|
ArtifactAction,
|
|
ArtifactActions,
|
|
ArtifactContent,
|
|
ArtifactHeader,
|
|
ArtifactTitle,
|
|
} from "@/components/ai-elements/artifact";
|
|
import { CitationLink } from "@/components/ai-elements/inline-citation";
|
|
import { Select, SelectItem } from "@/components/ui/select";
|
|
import {
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { ToggleGroup, ToggleGroupItem } from "@/components/ui/toggle-group";
|
|
import { CodeEditor } from "@/components/workspace/code-editor";
|
|
import { useArtifactContent } from "@/core/artifacts/hooks";
|
|
import { urlOfArtifact } from "@/core/artifacts/utils";
|
|
import {
|
|
buildCitationMap,
|
|
parseCitations,
|
|
removeAllCitations,
|
|
} from "@/core/citations";
|
|
import { useI18n } from "@/core/i18n/hooks";
|
|
import { installSkill } from "@/core/skills/api";
|
|
import { streamdownPlugins } from "@/core/streamdown";
|
|
import { checkCodeFile, getFileName } from "@/core/utils/files";
|
|
import { env } from "@/env";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
import { Tooltip } from "../tooltip";
|
|
|
|
import { useArtifacts } from "./context";
|
|
|
|
export function ArtifactFileDetail({
|
|
className,
|
|
filepath: filepathFromProps,
|
|
threadId,
|
|
}: {
|
|
className?: string;
|
|
filepath: string;
|
|
threadId: string;
|
|
}) {
|
|
const { t } = useI18n();
|
|
const { artifacts, setOpen, select } = useArtifacts();
|
|
const isWriteFile = useMemo(() => {
|
|
return filepathFromProps.startsWith("write-file:");
|
|
}, [filepathFromProps]);
|
|
const filepath = useMemo(() => {
|
|
if (isWriteFile) {
|
|
const url = new URL(filepathFromProps);
|
|
return decodeURIComponent(url.pathname);
|
|
}
|
|
return filepathFromProps;
|
|
}, [filepathFromProps, isWriteFile]);
|
|
const isSkillFile = useMemo(() => {
|
|
return filepath.endsWith(".skill");
|
|
}, [filepath]);
|
|
const { isCodeFile, language } = useMemo(() => {
|
|
if (isWriteFile) {
|
|
let language = checkCodeFile(filepath).language;
|
|
language ??= "text";
|
|
return { isCodeFile: true, language };
|
|
}
|
|
// Treat .skill files as markdown (they contain SKILL.md)
|
|
if (isSkillFile) {
|
|
return { isCodeFile: true, language: "markdown" };
|
|
}
|
|
return checkCodeFile(filepath);
|
|
}, [filepath, isWriteFile, isSkillFile]);
|
|
const previewable = useMemo(() => {
|
|
return (language === "html" && !isWriteFile) || language === "markdown";
|
|
}, [isWriteFile, language]);
|
|
const { content } = useArtifactContent({
|
|
threadId,
|
|
filepath: filepathFromProps,
|
|
enabled: isCodeFile && !isWriteFile,
|
|
});
|
|
|
|
// Parse citations and get clean content for code editor
|
|
const cleanContent = useMemo(() => {
|
|
if (language === "markdown" && content) {
|
|
return parseCitations(content).cleanContent;
|
|
}
|
|
return content;
|
|
}, [content, language]);
|
|
|
|
// Get content without ANY citations for copy/download
|
|
const contentWithoutCitations = useMemo(() => {
|
|
if (language === "markdown" && content) {
|
|
return removeAllCitations(content);
|
|
}
|
|
return content;
|
|
}, [content, language]);
|
|
|
|
const [viewMode, setViewMode] = useState<"code" | "preview">("code");
|
|
const [isInstalling, setIsInstalling] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (previewable) {
|
|
setViewMode("preview");
|
|
} else {
|
|
setViewMode("code");
|
|
}
|
|
}, [previewable]);
|
|
|
|
const handleInstallSkill = useCallback(async () => {
|
|
if (isInstalling) return;
|
|
|
|
setIsInstalling(true);
|
|
try {
|
|
const result = await installSkill({
|
|
thread_id: threadId,
|
|
path: filepath,
|
|
});
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
} else {
|
|
toast.error(result.message ?? "Failed to install skill");
|
|
}
|
|
} catch (error) {
|
|
console.error("Failed to install skill:", error);
|
|
toast.error("Failed to install skill");
|
|
} finally {
|
|
setIsInstalling(false);
|
|
}
|
|
}, [threadId, filepath, isInstalling]);
|
|
return (
|
|
<Artifact className={cn(className)}>
|
|
<ArtifactHeader className="px-2">
|
|
<div className="flex items-center gap-2">
|
|
<ArtifactTitle>
|
|
{isWriteFile ? (
|
|
<div className="px-2">{getFileName(filepath)}</div>
|
|
) : (
|
|
<Select value={filepath} onValueChange={select}>
|
|
<SelectTrigger className="border-none bg-transparent! shadow-none select-none focus:outline-0 active:outline-0">
|
|
<SelectValue placeholder="Select a file" />
|
|
</SelectTrigger>
|
|
<SelectContent className="select-none">
|
|
<SelectGroup>
|
|
{(artifacts ?? []).map((filepath) => (
|
|
<SelectItem key={filepath} value={filepath}>
|
|
{getFileName(filepath)}
|
|
</SelectItem>
|
|
))}
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
)}
|
|
</ArtifactTitle>
|
|
</div>
|
|
<div className="flex min-w-0 grow items-center justify-center">
|
|
{previewable && (
|
|
<ToggleGroup
|
|
className="mx-auto"
|
|
type="single"
|
|
variant="outline"
|
|
size="sm"
|
|
value={viewMode}
|
|
onValueChange={(value) =>
|
|
setViewMode(value as "code" | "preview")
|
|
}
|
|
>
|
|
<ToggleGroupItem value="code">
|
|
<Code2Icon />
|
|
</ToggleGroupItem>
|
|
<ToggleGroupItem value="preview">
|
|
<EyeIcon />
|
|
</ToggleGroupItem>
|
|
</ToggleGroup>
|
|
)}
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<ArtifactActions>
|
|
{!isWriteFile && filepath.endsWith(".skill") && (
|
|
<Tooltip content={t.toolCalls.skillInstallTooltip}>
|
|
<ArtifactAction
|
|
icon={isInstalling ? LoaderIcon : PackageIcon}
|
|
label={t.common.install}
|
|
tooltip={t.common.install}
|
|
disabled={
|
|
isInstalling ||
|
|
env.NEXT_PUBLIC_STATIC_WEBSITE_ONLY === "true"
|
|
}
|
|
onClick={handleInstallSkill}
|
|
/>
|
|
</Tooltip>
|
|
)}
|
|
{!isWriteFile && (
|
|
<a href={urlOfArtifact({ filepath, threadId })} target="_blank">
|
|
<ArtifactAction
|
|
icon={SquareArrowOutUpRightIcon}
|
|
label={t.common.openInNewWindow}
|
|
tooltip={t.common.openInNewWindow}
|
|
/>
|
|
</a>
|
|
)}
|
|
{isCodeFile && (
|
|
<ArtifactAction
|
|
icon={CopyIcon}
|
|
label={t.clipboard.copyToClipboard}
|
|
disabled={!content}
|
|
onClick={async () => {
|
|
try {
|
|
await navigator.clipboard.writeText(contentWithoutCitations ?? "");
|
|
toast.success(t.clipboard.copiedToClipboard);
|
|
} catch (error) {
|
|
toast.error("Failed to copy to clipboard");
|
|
console.error(error);
|
|
}
|
|
}}
|
|
tooltip={t.clipboard.copyToClipboard}
|
|
/>
|
|
)}
|
|
{!isWriteFile && (
|
|
<a
|
|
href={urlOfArtifact({ filepath, threadId, download: true })}
|
|
target="_blank"
|
|
>
|
|
<ArtifactAction
|
|
icon={DownloadIcon}
|
|
label={t.common.download}
|
|
tooltip={t.common.download}
|
|
/>
|
|
</a>
|
|
)}
|
|
<ArtifactAction
|
|
icon={XIcon}
|
|
label={t.common.close}
|
|
onClick={() => setOpen(false)}
|
|
tooltip={t.common.close}
|
|
/>
|
|
</ArtifactActions>
|
|
</div>
|
|
</ArtifactHeader>
|
|
<ArtifactContent className="p-0">
|
|
{previewable && viewMode === "preview" && (
|
|
<ArtifactFilePreview
|
|
filepath={filepath}
|
|
threadId={threadId}
|
|
content={content}
|
|
language={language ?? "text"}
|
|
/>
|
|
)}
|
|
{isCodeFile && viewMode === "code" && (
|
|
<CodeEditor
|
|
className="size-full resize-none rounded-none border-none"
|
|
value={cleanContent ?? ""}
|
|
readonly
|
|
/>
|
|
)}
|
|
{!isCodeFile && (
|
|
<iframe
|
|
className="size-full"
|
|
src={urlOfArtifact({ filepath, threadId })}
|
|
/>
|
|
)}
|
|
</ArtifactContent>
|
|
</Artifact>
|
|
);
|
|
}
|
|
|
|
export function ArtifactFilePreview({
|
|
filepath,
|
|
threadId,
|
|
content,
|
|
language,
|
|
}: {
|
|
filepath: string;
|
|
threadId: string;
|
|
content: string;
|
|
language: string;
|
|
}) {
|
|
const { cleanContent, citationMap } = React.useMemo(() => {
|
|
const parsed = parseCitations(content ?? "");
|
|
const map = buildCitationMap(parsed.citations);
|
|
return {
|
|
cleanContent: parsed.cleanContent,
|
|
citationMap: map,
|
|
};
|
|
}, [content]);
|
|
|
|
if (language === "markdown") {
|
|
return (
|
|
<div className="size-full px-4">
|
|
<Streamdown
|
|
className="size-full"
|
|
{...streamdownPlugins}
|
|
components={{
|
|
a: ({
|
|
href,
|
|
children,
|
|
}: React.AnchorHTMLAttributes<HTMLAnchorElement>) => {
|
|
if (!href) {
|
|
return <span>{children}</span>;
|
|
}
|
|
|
|
// Only render as CitationLink badge if it's a citation (in citationMap)
|
|
const citation = citationMap.get(href);
|
|
if (citation) {
|
|
return (
|
|
<CitationLink citation={citation} href={href}>
|
|
{children}
|
|
</CitationLink>
|
|
);
|
|
}
|
|
|
|
// All other links (including project URLs) render as plain links
|
|
return (
|
|
<a
|
|
href={href}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-primary underline underline-offset-2 hover:no-underline"
|
|
>
|
|
{children}
|
|
</a>
|
|
);
|
|
},
|
|
}}
|
|
>
|
|
{cleanContent ?? ""}
|
|
</Streamdown>
|
|
</div>
|
|
);
|
|
}
|
|
if (language === "html") {
|
|
return (
|
|
<iframe
|
|
className="size-full"
|
|
src={urlOfArtifact({ filepath, threadId })}
|
|
/>
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|