mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-29 10:56:24 +02:00
refactor: update Document and Connector selection components
- Replaced the use of search source connectors with document types for improved clarity and functionality. - Enhanced UI elements for document type selection, including better styling and loading states. - Updated selection logic to handle document types and their counts effectively. - Improved accessibility and user experience in the document and connector selection dialogs.
This commit is contained in:
parent
a09309af2a
commit
430249366c
2 changed files with 291 additions and 85 deletions
|
|
@ -4,7 +4,6 @@ import { ChatInput } from "@llamaindex/chat-ui";
|
||||||
import { Brain, Check, FolderOpen, Zap } from "lucide-react";
|
import { Brain, Check, FolderOpen, Zap } from "lucide-react";
|
||||||
import { useParams } from "next/navigation";
|
import { useParams } from "next/navigation";
|
||||||
import React, { Suspense, useCallback, useState } from "react";
|
import React, { Suspense, useCallback, useState } from "react";
|
||||||
import { ConnectorButton as ConnectorButtonComponent } from "@/components/chat/ConnectorComponents";
|
|
||||||
import { DocumentsDataTable } from "@/components/chat/DocumentsDataTable";
|
import { DocumentsDataTable } from "@/components/chat/DocumentsDataTable";
|
||||||
import { Badge } from "@/components/ui/badge";
|
import { Badge } from "@/components/ui/badge";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
|
|
@ -24,9 +23,9 @@ import {
|
||||||
SelectValue,
|
SelectValue,
|
||||||
} from "@/components/ui/select";
|
} from "@/components/ui/select";
|
||||||
import { getConnectorIcon } from "@/contracts/enums/connectorIcons";
|
import { getConnectorIcon } from "@/contracts/enums/connectorIcons";
|
||||||
|
import { useDocumentTypes } from "@/hooks/use-document-types";
|
||||||
import type { Document } from "@/hooks/use-documents";
|
import type { Document } from "@/hooks/use-documents";
|
||||||
import { useLLMConfigs, useLLMPreferences } from "@/hooks/use-llm-configs";
|
import { useLLMConfigs, useLLMPreferences } from "@/hooks/use-llm-configs";
|
||||||
import { useSearchSourceConnectors } from "@/hooks/use-search-source-connectors";
|
|
||||||
|
|
||||||
const DocumentSelector = React.memo(
|
const DocumentSelector = React.memo(
|
||||||
({
|
({
|
||||||
|
|
@ -59,22 +58,31 @@ const DocumentSelector = React.memo(
|
||||||
return (
|
return (
|
||||||
<Dialog open={isOpen} onOpenChange={handleOpenChange}>
|
<Dialog open={isOpen} onOpenChange={handleOpenChange}>
|
||||||
<DialogTrigger asChild>
|
<DialogTrigger asChild>
|
||||||
<Button variant="outline" className="relative">
|
<Button
|
||||||
<FolderOpen className="w-4 h-4" />
|
variant="outline"
|
||||||
{selectedCount > 0 && (
|
size="sm"
|
||||||
<span className="absolute -top-2 -right-2 h-5 w-5 rounded-full bg-primary text-primary-foreground text-xs flex items-center justify-center">
|
className="h-9 gap-2 px-3 border-dashed hover:border-solid hover:bg-accent/50 transition-all"
|
||||||
{selectedCount}
|
>
|
||||||
|
<FolderOpen className="h-4 w-4 text-muted-foreground" />
|
||||||
|
<span className="text-xs font-medium">
|
||||||
|
{selectedCount > 0 ? `Selected` : "Documents"}
|
||||||
</span>
|
</span>
|
||||||
|
{selectedCount > 0 && (
|
||||||
|
<Badge variant="secondary" className="h-5 px-1.5 text-xs font-medium">
|
||||||
|
{selectedCount}
|
||||||
|
</Badge>
|
||||||
)}
|
)}
|
||||||
</Button>
|
</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
|
|
||||||
<DialogContent className="max-w-[95vw] md:max-w-5xl h-[90vh] md:h-[85vh] p-0 flex flex-col">
|
<DialogContent className="max-w-[95vw] md:max-w-5xl h-[90vh] md:h-[85vh] p-0 flex flex-col">
|
||||||
<div className="flex flex-col h-full">
|
<div className="flex flex-col h-full">
|
||||||
<div className="px-4 md:px-6 py-4 border-b flex-shrink-0">
|
<div className="px-4 md:px-6 py-4 border-b flex-shrink-0 bg-muted/30">
|
||||||
<DialogTitle className="text-lg md:text-xl">Select Documents</DialogTitle>
|
<DialogTitle className="text-lg md:text-xl font-semibold">
|
||||||
<DialogDescription className="mt-1 text-sm">
|
Select Documents
|
||||||
Choose documents to include in your research context
|
</DialogTitle>
|
||||||
|
<DialogDescription className="mt-1.5 text-sm">
|
||||||
|
Choose specific documents to include in your research context
|
||||||
</DialogDescription>
|
</DialogDescription>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -106,17 +114,19 @@ const ConnectorSelector = React.memo(
|
||||||
const { search_space_id } = useParams();
|
const { search_space_id } = useParams();
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
|
|
||||||
const { connectorSourceItems, isLoading, isLoaded, fetchConnectors } =
|
const { documentTypes, isLoading, isLoaded, fetchDocumentTypes } = useDocumentTypes(
|
||||||
useSearchSourceConnectors(true, Number(search_space_id));
|
Number(search_space_id),
|
||||||
|
true
|
||||||
|
);
|
||||||
|
|
||||||
const handleOpenChange = useCallback(
|
const handleOpenChange = useCallback(
|
||||||
(open: boolean) => {
|
(open: boolean) => {
|
||||||
setIsOpen(open);
|
setIsOpen(open);
|
||||||
if (open && !isLoaded) {
|
if (open && !isLoaded) {
|
||||||
fetchConnectors(Number(search_space_id));
|
fetchDocumentTypes(Number(search_space_id));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[fetchConnectors, isLoaded, search_space_id]
|
[fetchDocumentTypes, isLoaded, search_space_id]
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleConnectorToggle = useCallback(
|
const handleConnectorToggle = useCallback(
|
||||||
|
|
@ -131,64 +141,152 @@ const ConnectorSelector = React.memo(
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleSelectAll = useCallback(() => {
|
const handleSelectAll = useCallback(() => {
|
||||||
onSelectionChange?.(connectorSourceItems.map((c) => c.type));
|
onSelectionChange?.(documentTypes.map((dt) => dt.type));
|
||||||
}, [connectorSourceItems, onSelectionChange]);
|
}, [documentTypes, onSelectionChange]);
|
||||||
|
|
||||||
const handleClearAll = useCallback(() => {
|
const handleClearAll = useCallback(() => {
|
||||||
onSelectionChange?.([]);
|
onSelectionChange?.([]);
|
||||||
}, [onSelectionChange]);
|
}, [onSelectionChange]);
|
||||||
|
|
||||||
|
// Get display name for document type
|
||||||
|
const getDisplayName = (type: string) => {
|
||||||
|
return type
|
||||||
|
.split("_")
|
||||||
|
.map((word) => word.charAt(0) + word.slice(1).toLowerCase())
|
||||||
|
.join(" ");
|
||||||
|
};
|
||||||
|
|
||||||
|
// Get selected document types with their counts
|
||||||
|
const selectedDocTypes = documentTypes.filter((dt) => selectedConnectors.includes(dt.type));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog open={isOpen} onOpenChange={handleOpenChange}>
|
<Dialog open={isOpen} onOpenChange={handleOpenChange}>
|
||||||
<DialogTrigger asChild>
|
<DialogTrigger asChild>
|
||||||
<ConnectorButtonComponent
|
<Button
|
||||||
selectedConnectors={selectedConnectors}
|
variant="outline"
|
||||||
onClick={() => setIsOpen(true)}
|
size="sm"
|
||||||
connectorSources={connectorSourceItems}
|
className="relative h-9 gap-2 px-3 border-dashed hover:border-solid hover:bg-accent/50 transition-all"
|
||||||
/>
|
>
|
||||||
|
<div className="flex items-center gap-1.5">
|
||||||
|
{selectedDocTypes.length > 0 ? (
|
||||||
|
<>
|
||||||
|
<div className="flex items-center -space-x-2">
|
||||||
|
{selectedDocTypes.slice(0, 3).map((docType) => (
|
||||||
|
<div
|
||||||
|
key={docType.type}
|
||||||
|
className="flex h-6 w-6 items-center justify-center rounded-full border-2 border-background bg-muted"
|
||||||
|
>
|
||||||
|
{getConnectorIcon(docType.type, "h-3 w-3")}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<span className="text-xs font-medium">
|
||||||
|
{selectedDocTypes.length} {selectedDocTypes.length === 1 ? "source" : "sources"}
|
||||||
|
</span>
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
|
<Brain className="h-4 w-4 text-muted-foreground" />
|
||||||
|
<span className="text-xs font-medium">Sources</span>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
|
|
||||||
<DialogContent className="sm:max-w-md">
|
<DialogContent className="sm:max-w-2xl">
|
||||||
<DialogTitle>Select Connectors</DialogTitle>
|
<div className="space-y-4">
|
||||||
<DialogDescription>
|
<div>
|
||||||
Choose which data sources to include in your research
|
<DialogTitle className="text-xl">Select Document Types</DialogTitle>
|
||||||
|
<DialogDescription className="mt-1.5">
|
||||||
|
Choose which document types to include in your search
|
||||||
</DialogDescription>
|
</DialogDescription>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Connector selection grid */}
|
{/* Document type selection grid */}
|
||||||
<div className="grid grid-cols-2 gap-4 py-4">
|
<div className="grid grid-cols-2 gap-3">
|
||||||
{isLoading ? (
|
{isLoading ? (
|
||||||
<div className="col-span-2 flex justify-center py-4">
|
<div className="col-span-2 flex justify-center py-8">
|
||||||
<div className="animate-spin h-6 w-6 border-2 border-primary border-t-transparent rounded-full" />
|
<div className="animate-spin h-8 w-8 border-3 border-primary border-t-transparent rounded-full" />
|
||||||
|
</div>
|
||||||
|
) : documentTypes.length === 0 ? (
|
||||||
|
<div className="col-span-2 flex flex-col items-center justify-center py-12 text-center">
|
||||||
|
<div className="rounded-full bg-muted p-4 mb-4">
|
||||||
|
<Brain className="h-8 w-8 text-muted-foreground" />
|
||||||
|
</div>
|
||||||
|
<h4 className="text-sm font-medium mb-1">No documents found</h4>
|
||||||
|
<p className="text-xs text-muted-foreground max-w-xs">
|
||||||
|
Add documents to this search space to enable filtering by type
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
connectorSourceItems.map((connector) => {
|
documentTypes.map((docType) => {
|
||||||
const isSelected = selectedConnectors.includes(connector.type);
|
const isSelected = selectedConnectors.includes(docType.type);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Button
|
<button
|
||||||
key={connector.id}
|
key={docType.type}
|
||||||
className={`flex items-center gap-2 p-2 rounded-md border cursor-pointer transition-colors`}
|
onClick={() => handleConnectorToggle(docType.type)}
|
||||||
onClick={() => handleConnectorToggle(connector.type)}
|
|
||||||
variant={isSelected ? "default" : "outline"}
|
|
||||||
size="sm"
|
|
||||||
type="button"
|
type="button"
|
||||||
|
className={`group relative flex items-center gap-3 p-3 rounded-lg border-2 transition-all ${
|
||||||
|
isSelected
|
||||||
|
? "border-primary bg-primary/5 shadow-sm"
|
||||||
|
: "border-border hover:border-primary/50 hover:bg-accent/50"
|
||||||
|
}`}
|
||||||
>
|
>
|
||||||
{getConnectorIcon(connector.type)}
|
<div
|
||||||
<span className="flex-1 text-sm truncate font-medium">{connector.name}</span>
|
className={`flex h-10 w-10 items-center justify-center rounded-md transition-colors ${
|
||||||
</Button>
|
isSelected ? "bg-primary/10" : "bg-muted group-hover:bg-primary/5"
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{getConnectorIcon(
|
||||||
|
docType.type,
|
||||||
|
`h-5 w-5 ${isSelected ? "text-primary" : "text-muted-foreground group-hover:text-primary"}`
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 text-left min-w-0">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<p className="text-sm font-medium truncate">
|
||||||
|
{getDisplayName(docType.type)}
|
||||||
|
</p>
|
||||||
|
{isSelected && (
|
||||||
|
<div className="flex h-5 w-5 items-center justify-center rounded-full bg-primary">
|
||||||
|
<Check className="h-3 w-3 text-primary-foreground" />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<p className="text-xs text-muted-foreground mt-0.5">
|
||||||
|
{docType.count} {docType.count === 1 ? "document" : "documents"}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DialogFooter className="flex justify-between items-center">
|
{documentTypes.length > 0 && (
|
||||||
<div className="flex gap-2">
|
<DialogFooter className="flex flex-row justify-between items-center gap-2 pt-2">
|
||||||
<Button variant="outline" onClick={handleClearAll}>
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
size="sm"
|
||||||
|
onClick={handleClearAll}
|
||||||
|
disabled={selectedConnectors.length === 0}
|
||||||
|
className="text-xs"
|
||||||
|
>
|
||||||
Clear All
|
Clear All
|
||||||
</Button>
|
</Button>
|
||||||
<Button onClick={handleSelectAll}>Select All</Button>
|
<Button
|
||||||
</div>
|
size="sm"
|
||||||
|
onClick={handleSelectAll}
|
||||||
|
disabled={selectedConnectors.length === documentTypes.length}
|
||||||
|
className="text-xs"
|
||||||
|
>
|
||||||
|
Select All ({documentTypes.length})
|
||||||
|
</Button>
|
||||||
</DialogFooter>
|
</DialogFooter>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
);
|
);
|
||||||
|
|
@ -214,26 +312,33 @@ const SearchModeSelector = React.memo(
|
||||||
}, [onSearchModeChange]);
|
}, [onSearchModeChange]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center gap-1 sm:gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<span className="text-xs text-muted-foreground hidden sm:block">Scope:</span>
|
<div className="inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground">
|
||||||
<div className="flex rounded-md border border-border overflow-hidden">
|
<button
|
||||||
<Button
|
type="button"
|
||||||
variant={searchMode === "DOCUMENTS" ? "default" : "ghost"}
|
|
||||||
size="sm"
|
|
||||||
className="rounded-none border-r h-8 px-2 sm:px-3 text-xs transition-all duration-200 hover:bg-muted/80"
|
|
||||||
onClick={handleDocumentsClick}
|
onClick={handleDocumentsClick}
|
||||||
|
className={`inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1.5 text-xs font-medium transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 ${
|
||||||
|
searchMode === "DOCUMENTS"
|
||||||
|
? "bg-background text-foreground shadow-sm"
|
||||||
|
: "hover:bg-background/50 hover:text-foreground"
|
||||||
|
}`}
|
||||||
>
|
>
|
||||||
|
<FolderOpen className="h-3.5 w-3.5 mr-1.5" />
|
||||||
<span className="hidden sm:inline">Documents</span>
|
<span className="hidden sm:inline">Documents</span>
|
||||||
<span className="sm:hidden">Docs</span>
|
<span className="sm:hidden">Docs</span>
|
||||||
</Button>
|
</button>
|
||||||
<Button
|
<button
|
||||||
variant={searchMode === "CHUNKS" ? "default" : "ghost"}
|
type="button"
|
||||||
size="sm"
|
|
||||||
className="rounded-none h-8 px-2 sm:px-3 text-xs transition-all duration-200 hover:bg-muted/80"
|
|
||||||
onClick={handleChunksClick}
|
onClick={handleChunksClick}
|
||||||
|
className={`inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1.5 text-xs font-medium transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 ${
|
||||||
|
searchMode === "CHUNKS"
|
||||||
|
? "bg-background text-foreground shadow-sm"
|
||||||
|
: "hover:bg-background/50 hover:text-foreground"
|
||||||
|
}`}
|
||||||
>
|
>
|
||||||
|
<Zap className="h-3.5 w-3.5 mr-1.5" />
|
||||||
Chunks
|
Chunks
|
||||||
</Button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
@ -414,12 +519,13 @@ const CustomChatInputOptions = React.memo(
|
||||||
}) => {
|
}) => {
|
||||||
// Memoize the loading fallback to prevent recreation
|
// Memoize the loading fallback to prevent recreation
|
||||||
const loadingFallback = React.useMemo(
|
const loadingFallback = React.useMemo(
|
||||||
() => <div className="h-8 min-w-[100px] animate-pulse bg-muted rounded-md" />,
|
() => <div className="h-9 w-24 animate-pulse bg-muted/50 rounded-md" />,
|
||||||
[]
|
[]
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-wrap gap-2 sm:gap-3 items-center justify-start">
|
<div className="flex flex-wrap gap-2 items-center">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
<Suspense fallback={loadingFallback}>
|
<Suspense fallback={loadingFallback}>
|
||||||
<DocumentSelector
|
<DocumentSelector
|
||||||
onSelectionChange={onDocumentSelectionChange}
|
onSelectionChange={onDocumentSelectionChange}
|
||||||
|
|
@ -432,7 +538,10 @@ const CustomChatInputOptions = React.memo(
|
||||||
selectedConnectors={selectedConnectors}
|
selectedConnectors={selectedConnectors}
|
||||||
/>
|
/>
|
||||||
</Suspense>
|
</Suspense>
|
||||||
|
</div>
|
||||||
|
<div className="h-4 w-px bg-border hidden sm:block" />
|
||||||
<SearchModeSelector searchMode={searchMode} onSearchModeChange={onSearchModeChange} />
|
<SearchModeSelector searchMode={searchMode} onSearchModeChange={onSearchModeChange} />
|
||||||
|
<div className="h-4 w-px bg-border hidden sm:block" />
|
||||||
<LLMSelector />
|
<LLMSelector />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
97
surfsense_web/hooks/use-document-types.ts
Normal file
97
surfsense_web/hooks/use-document-types.ts
Normal file
|
|
@ -0,0 +1,97 @@
|
||||||
|
import { useCallback, useEffect, useState } from "react";
|
||||||
|
|
||||||
|
export interface DocumentTypeCount {
|
||||||
|
type: string;
|
||||||
|
count: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hook to fetch document type counts from the API
|
||||||
|
* @param searchSpaceId - The search space ID to filter document types
|
||||||
|
* @param lazy - If true, types won't be fetched on mount
|
||||||
|
*/
|
||||||
|
export const useDocumentTypes = (searchSpaceId?: number, lazy: boolean = false) => {
|
||||||
|
const [documentTypes, setDocumentTypes] = useState<DocumentTypeCount[]>([]);
|
||||||
|
const [isLoading, setIsLoading] = useState(!lazy);
|
||||||
|
const [isLoaded, setIsLoaded] = useState(false);
|
||||||
|
const [error, setError] = useState<Error | null>(null);
|
||||||
|
|
||||||
|
const fetchDocumentTypes = useCallback(
|
||||||
|
async (spaceId?: number) => {
|
||||||
|
if (isLoaded && lazy) return;
|
||||||
|
|
||||||
|
try {
|
||||||
|
setIsLoading(true);
|
||||||
|
setError(null);
|
||||||
|
const token = localStorage.getItem("surfsense_bearer_token");
|
||||||
|
|
||||||
|
if (!token) {
|
||||||
|
throw new Error("No authentication token found");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build URL with optional search_space_id query parameter
|
||||||
|
const url = new URL(
|
||||||
|
`${process.env.NEXT_PUBLIC_FASTAPI_BACKEND_URL}/api/v1/documents/type-counts/`
|
||||||
|
);
|
||||||
|
if (spaceId !== undefined) {
|
||||||
|
url.searchParams.append("search_space_id", spaceId.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await fetch(url.toString(), {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
Authorization: `Bearer ${token}`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Failed to fetch document types: ${response.statusText}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
// Convert the object to an array of DocumentTypeCount
|
||||||
|
const typeCounts: DocumentTypeCount[] = Object.entries(data).map(([type, count]) => ({
|
||||||
|
type,
|
||||||
|
count: count as number,
|
||||||
|
}));
|
||||||
|
|
||||||
|
setDocumentTypes(typeCounts);
|
||||||
|
setIsLoaded(true);
|
||||||
|
|
||||||
|
return typeCounts;
|
||||||
|
} catch (err) {
|
||||||
|
setError(err instanceof Error ? err : new Error("An unknown error occurred"));
|
||||||
|
console.error("Error fetching document types:", err);
|
||||||
|
} finally {
|
||||||
|
setIsLoading(false);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[isLoaded, lazy]
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!lazy) {
|
||||||
|
fetchDocumentTypes(searchSpaceId);
|
||||||
|
}
|
||||||
|
}, [lazy, fetchDocumentTypes, searchSpaceId]);
|
||||||
|
|
||||||
|
// Function to refresh the document types
|
||||||
|
const refreshDocumentTypes = useCallback(
|
||||||
|
async (spaceId?: number) => {
|
||||||
|
setIsLoaded(false);
|
||||||
|
await fetchDocumentTypes(spaceId !== undefined ? spaceId : searchSpaceId);
|
||||||
|
},
|
||||||
|
[fetchDocumentTypes, searchSpaceId]
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
documentTypes,
|
||||||
|
isLoading,
|
||||||
|
isLoaded,
|
||||||
|
error,
|
||||||
|
fetchDocumentTypes,
|
||||||
|
refreshDocumentTypes,
|
||||||
|
};
|
||||||
|
};
|
||||||
Loading…
Add table
Add a link
Reference in a new issue