"use client"; import { useAtom, useAtomValue, useSetAtom } from "jotai"; import { ChevronLeft, ChevronRight, Unplug } from "lucide-react"; import { useParams } from "next/navigation"; import { useTranslations } from "next-intl"; import { useCallback, useEffect, useMemo, useRef, useState } from "react"; import { toast } from "sonner"; import { DocumentsFilters } from "@/app/dashboard/[search_space_id]/documents/(manage)/components/DocumentsFilters"; import { DocumentsTableShell, type SortKey, } from "@/app/dashboard/[search_space_id]/documents/(manage)/components/DocumentsTableShell"; import { sidebarSelectedDocumentsAtom } from "@/atoms/chat/mentioned-documents.atom"; import { connectorDialogOpenAtom } from "@/atoms/connector-dialog/connector-dialog.atoms"; import { connectorsAtom } from "@/atoms/connectors/connector-query.atoms"; import { deleteDocumentMutationAtom } from "@/atoms/documents/document-mutation.atoms"; import { Avatar, AvatarFallback, AvatarGroup } from "@/components/ui/avatar"; import { Button } from "@/components/ui/button"; import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"; import { getConnectorIcon } from "@/contracts/enums/connectorIcons"; import type { DocumentTypeEnum } from "@/contracts/types/document.types"; import { useDebouncedValue } from "@/hooks/use-debounced-value"; import { useDocumentSearch } from "@/hooks/use-document-search"; import { useDocuments } from "@/hooks/use-documents"; import { useMediaQuery } from "@/hooks/use-media-query"; import { SidebarSlideOutPanel } from "./SidebarSlideOutPanel"; const SHOWCASE_CONNECTORS = [ { type: "GOOGLE_DRIVE_CONNECTOR", label: "Google Drive" }, { type: "GOOGLE_GMAIL_CONNECTOR", label: "Gmail" }, { type: "NOTION_CONNECTOR", label: "Notion" }, { type: "YOUTUBE_CONNECTOR", label: "YouTube" }, { type: "GOOGLE_CALENDAR_CONNECTOR", label: "Google Calendar" }, { type: "SLACK_CONNECTOR", label: "Slack" }, { type: "LINEAR_CONNECTOR", label: "Linear" }, { type: "JIRA_CONNECTOR", label: "Jira" }, { type: "GITHUB_CONNECTOR", label: "GitHub" }, ] as const; interface DocumentsSidebarProps { open: boolean; onOpenChange: (open: boolean) => void; isDocked?: boolean; onDockedChange?: (docked: boolean) => void; /** When true, renders content without any wrapper — parent provides the container */ embedded?: boolean; /** Optional action element rendered in the header row (e.g. collapse button) */ headerAction?: React.ReactNode; } export function DocumentsSidebar({ open, onOpenChange, isDocked = false, onDockedChange, embedded = false, headerAction, }: DocumentsSidebarProps) { const t = useTranslations("documents"); const tSidebar = useTranslations("sidebar"); const params = useParams(); const isMobile = !useMediaQuery("(min-width: 640px)"); const searchSpaceId = Number(params.search_space_id); const setConnectorDialogOpen = useSetAtom(connectorDialogOpenAtom); const { data: connectors } = useAtomValue(connectorsAtom); const connectorCount = connectors?.length ?? 0; const [search, setSearch] = useState(""); const debouncedSearch = useDebouncedValue(search, 250); const [activeTypes, setActiveTypes] = useState([]); const [sortKey, setSortKey] = useState("created_at"); const [sortDesc, setSortDesc] = useState(true); const { mutateAsync: deleteDocumentMutation } = useAtomValue(deleteDocumentMutationAtom); const [sidebarDocs, setSidebarDocs] = useAtom(sidebarSelectedDocumentsAtom); const mentionedDocIds = useMemo(() => new Set(sidebarDocs.map((d) => d.id)), [sidebarDocs]); const handleToggleChatMention = useCallback( (doc: { id: number; title: string; document_type: string }, isMentioned: boolean) => { if (isMentioned) { setSidebarDocs((prev) => prev.filter((d) => d.id !== doc.id)); } else { setSidebarDocs((prev) => { if (prev.some((d) => d.id === doc.id)) return prev; return [ ...prev, { id: doc.id, title: doc.title, document_type: doc.document_type as DocumentTypeEnum }, ]; }); } }, [setSidebarDocs] ); const isSearchMode = !!debouncedSearch.trim(); const { documents: realtimeDocuments, typeCounts: realtimeTypeCounts, loading: realtimeLoading, loadingMore: realtimeLoadingMore, hasMore: realtimeHasMore, loadMore: realtimeLoadMore, removeItems: realtimeRemoveItems, error: realtimeError, } = useDocuments(searchSpaceId, activeTypes, sortKey, sortDesc ? "desc" : "asc"); const { documents: searchDocuments, loading: searchLoading, loadingMore: searchLoadingMore, hasMore: searchHasMore, loadMore: searchLoadMore, error: searchError, removeItems: searchRemoveItems, } = useDocumentSearch(searchSpaceId, debouncedSearch, activeTypes, isSearchMode && open); const displayDocs = isSearchMode ? searchDocuments : realtimeDocuments; const loading = isSearchMode ? searchLoading : realtimeLoading; const error = isSearchMode ? searchError : !!realtimeError; const hasMore = isSearchMode ? searchHasMore : realtimeHasMore; const loadingMore = isSearchMode ? searchLoadingMore : realtimeLoadingMore; const onLoadMore = isSearchMode ? searchLoadMore : realtimeLoadMore; const onToggleType = (type: DocumentTypeEnum, checked: boolean) => { setActiveTypes((prev) => { if (checked) { return prev.includes(type) ? prev : [...prev, type]; } return prev.filter((t) => t !== type); }); }; const handleDeleteDocument = useCallback( async (id: number): Promise => { try { await deleteDocumentMutation({ id }); toast.success(t("delete_success") || "Document deleted"); setSidebarDocs((prev) => prev.filter((d) => d.id !== id)); realtimeRemoveItems([id]); if (isSearchMode) { searchRemoveItems([id]); } return true; } catch (e) { console.error("Error deleting document:", e); return false; } }, [ deleteDocumentMutation, isSearchMode, t, searchRemoveItems, realtimeRemoveItems, setSidebarDocs, ] ); const handleBulkDeleteDocuments = useCallback( async (ids: number[]): Promise<{ success: number; failed: number }> => { const successIds: number[] = []; const results = await Promise.allSettled( ids.map(async (id) => { await deleteDocumentMutation({ id }); successIds.push(id); }) ); if (successIds.length > 0) { setSidebarDocs((prev) => prev.filter((d) => !successIds.includes(d.id))); realtimeRemoveItems(successIds); if (isSearchMode) { searchRemoveItems(successIds); } } const success = results.filter((r) => r.status === "fulfilled").length; const failed = results.filter((r) => r.status === "rejected").length; return { success, failed }; }, [deleteDocumentMutation, isSearchMode, searchRemoveItems, realtimeRemoveItems, setSidebarDocs] ); const sortKeyRef = useRef(sortKey); const sortDescRef = useRef(sortDesc); sortKeyRef.current = sortKey; sortDescRef.current = sortDesc; const handleSortChange = useCallback((key: SortKey) => { const currentKey = sortKeyRef.current; const currentDesc = sortDescRef.current; if (currentKey === key && currentDesc) { setSortKey("created_at"); setSortDesc(true); } else if (currentKey === key) { setSortDesc(true); } else { setSortKey(key); setSortDesc(false); } }, []); useEffect(() => { const handleEscape = (e: KeyboardEvent) => { if (e.key === "Escape" && open) { onOpenChange(false); } }; document.addEventListener("keydown", handleEscape); return () => document.removeEventListener("keydown", handleEscape); }, [open, onOpenChange]); const documentsContent = ( <>
{isMobile && ( )}

{t("title") || "Documents"}

{!isMobile && onDockedChange && ( {isDocked ? "Collapse panel" : "Expand panel"} )} {headerAction}
{/* Connected tools strip */}
onOpenChange(false)} isSearchMode={isSearchMode || activeTypes.length > 0} />
); if (embedded) { return (
{documentsContent}
); } if (isDocked && open && !isMobile) { return ( ); } return ( {documentsContent} ); }