mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
"use client";
|
|
|
|
import type { FC } from "react";
|
|
import { useState } from "react";
|
|
import { SourceDetailPanel } from "@/components/new-chat/source-detail-panel";
|
|
|
|
interface InlineCitationProps {
|
|
chunkId: number;
|
|
citationNumber: number;
|
|
isDocsChunk?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Inline citation component for the new chat.
|
|
* Renders a clickable numbered badge that opens the SourceDetailPanel with document chunk details.
|
|
* Supports both regular knowledge base chunks and Surfsense documentation chunks.
|
|
*/
|
|
export const InlineCitation: FC<InlineCitationProps> = ({
|
|
chunkId,
|
|
citationNumber,
|
|
isDocsChunk = false,
|
|
}) => {
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
|
|
return (
|
|
<SourceDetailPanel
|
|
open={isOpen}
|
|
onOpenChange={setIsOpen}
|
|
chunkId={chunkId}
|
|
sourceType={isDocsChunk ? "SURFSENSE_DOCS" : ""}
|
|
title={isDocsChunk ? "Surfsense Documentation" : "Source"}
|
|
description=""
|
|
url=""
|
|
isDocsChunk={isDocsChunk}
|
|
>
|
|
<span
|
|
onClick={() => setIsOpen(true)}
|
|
onKeyDown={(e) => e.key === "Enter" && setIsOpen(true)}
|
|
className="text-[10px] font-bold bg-primary/80 hover:bg-primary text-primary-foreground rounded-full min-w-4 h-4 px-1 inline-flex items-center justify-center align-super cursor-pointer transition-colors ml-0.5"
|
|
title={`View source #${citationNumber}`}
|
|
role="button"
|
|
tabIndex={0}
|
|
>
|
|
{citationNumber}
|
|
</span>
|
|
</SourceDetailPanel>
|
|
);
|
|
};
|