Spaces:
Sleeping
Sleeping
File size: 6,897 Bytes
f871fed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
'use client'
import { useState, useEffect, useMemo } from 'react'
import { LoaderIcon, BookOpen, Check } from 'lucide-react'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import { Button } from '@/components/ui/button'
import { Checkbox } from '@/components/ui/checkbox'
import { ScrollArea } from '@/components/ui/scroll-area'
import { useNotebooks } from '@/lib/hooks/use-notebooks'
import { useAddSourcesToNotebook, useRemoveSourceFromNotebook } from '@/lib/hooks/use-sources'
interface NotebookAssociationsProps {
sourceId: string
currentNotebookIds: string[]
onSave?: () => void
}
export function NotebookAssociations({
sourceId,
currentNotebookIds,
onSave,
}: NotebookAssociationsProps) {
const [selectedNotebookIds, setSelectedNotebookIds] = useState<string[]>(currentNotebookIds)
const [isSaving, setIsSaving] = useState(false)
const { data: notebooks, isLoading } = useNotebooks()
const addSources = useAddSourcesToNotebook()
const removeFromNotebook = useRemoveSourceFromNotebook()
// Update selected notebooks when current changes (after save)
useEffect(() => {
setSelectedNotebookIds(currentNotebookIds)
}, [currentNotebookIds])
const hasChanges = useMemo(() => {
const current = new Set(currentNotebookIds)
const selected = new Set(selectedNotebookIds)
if (current.size !== selected.size) return true
for (const id of current) {
if (!selected.has(id)) return true
}
return false
}, [currentNotebookIds, selectedNotebookIds])
const handleToggleNotebook = (notebookId: string) => {
setSelectedNotebookIds(prev =>
prev.includes(notebookId)
? prev.filter(id => id !== notebookId)
: [...prev, notebookId]
)
}
const handleSave = async () => {
if (!hasChanges) return
try {
setIsSaving(true)
const current = new Set(currentNotebookIds)
const selected = new Set(selectedNotebookIds)
// Determine which notebooks to add and remove
const toAdd = selectedNotebookIds.filter(id => !current.has(id))
const toRemove = currentNotebookIds.filter(id => !selected.has(id))
// Execute additions
if (toAdd.length > 0) {
await Promise.allSettled(
toAdd.map(notebookId =>
addSources.mutateAsync({
notebookId,
sourceIds: [sourceId],
})
)
)
}
// Execute removals
if (toRemove.length > 0) {
await Promise.allSettled(
toRemove.map(notebookId =>
removeFromNotebook.mutateAsync({
notebookId,
sourceId,
})
)
)
}
onSave?.()
} catch (error) {
console.error('Error saving notebook associations:', error)
} finally {
setIsSaving(false)
}
}
const handleCancel = () => {
setSelectedNotebookIds(currentNotebookIds)
}
if (isLoading) {
return (
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<BookOpen className="h-5 w-5" />
Notebooks
</CardTitle>
<CardDescription>
Manage which notebooks contain this source
</CardDescription>
</CardHeader>
<CardContent>
<div className="flex items-center justify-center py-8">
<LoaderIcon className="h-6 w-6 animate-spin text-muted-foreground" />
</div>
</CardContent>
</Card>
)
}
if (!notebooks || notebooks.length === 0) {
return (
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<BookOpen className="h-5 w-5" />
Notebooks
</CardTitle>
<CardDescription>
Manage which notebooks contain this source
</CardDescription>
</CardHeader>
<CardContent>
<p className="text-sm text-muted-foreground">No notebooks available</p>
</CardContent>
</Card>
)
}
return (
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<BookOpen className="h-5 w-5" />
Notebooks
</CardTitle>
<CardDescription>
Manage which notebooks contain this source
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<ScrollArea className="h-[300px] border rounded-md p-4">
<div className="space-y-3">
{notebooks
.filter(nb => !nb.archived)
.map((notebook) => {
const isSelected = selectedNotebookIds.includes(notebook.id)
const isCurrentlyLinked = currentNotebookIds.includes(notebook.id)
return (
<div
key={notebook.id}
className={`flex items-start gap-3 p-3 rounded-lg border transition-colors ${
isSelected ? 'bg-accent border-accent-foreground/20' : 'hover:bg-accent/50'
}`}
>
<Checkbox
checked={isSelected}
onCheckedChange={() => handleToggleNotebook(notebook.id)}
className="mt-0.5"
/>
<div className="flex-1 min-w-0">
<div className="flex items-center gap-2">
<h4 className="font-medium text-sm truncate">
{notebook.name}
</h4>
{isCurrentlyLinked && !hasChanges && (
<Check className="h-4 w-4 text-green-600" />
)}
</div>
{notebook.description && (
<p className="text-xs text-muted-foreground line-clamp-1">
{notebook.description}
</p>
)}
</div>
</div>
)
})}
</div>
</ScrollArea>
{hasChanges && (
<div className="flex items-center justify-end gap-2 pt-2 border-t">
<Button
variant="outline"
size="sm"
onClick={handleCancel}
disabled={isSaving}
>
Cancel
</Button>
<Button
size="sm"
onClick={handleSave}
disabled={isSaving}
>
{isSaving ? (
<>
<LoaderIcon className="mr-2 h-4 w-4 animate-spin" />
Saving...
</>
) : (
'Save Changes'
)}
</Button>
</div>
)}
</CardContent>
</Card>
)
}
|