Spaces:
Running
Running
File size: 20,461 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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 |
'use client'
import { useState, useRef, useEffect, useMemo } from 'react'
import { useForm } from 'react-hook-form'
import { zodResolver } from '@hookform/resolvers/zod'
import { z } from 'zod'
import { LoaderIcon, CheckCircleIcon, XCircleIcon } from 'lucide-react'
import { toast } from 'sonner'
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from '@/components/ui/dialog'
import { Button } from '@/components/ui/button'
import { WizardContainer, WizardStep } from '@/components/ui/wizard-container'
import { SourceTypeStep, parseAndValidateUrls } from './steps/SourceTypeStep'
import { NotebooksStep } from './steps/NotebooksStep'
import { ProcessingStep } from './steps/ProcessingStep'
import { useNotebooks } from '@/lib/hooks/use-notebooks'
import { useTransformations } from '@/lib/hooks/use-transformations'
import { useCreateSource } from '@/lib/hooks/use-sources'
import { useSettings } from '@/lib/hooks/use-settings'
import { CreateSourceRequest } from '@/lib/types/api'
const MAX_BATCH_SIZE = 50
const createSourceSchema = z.object({
type: z.enum(['link', 'upload', 'text']),
title: z.string().optional(),
url: z.string().optional(),
content: z.string().optional(),
file: z.any().optional(),
notebooks: z.array(z.string()).optional(),
transformations: z.array(z.string()).optional(),
embed: z.boolean(),
async_processing: z.boolean(),
}).refine((data) => {
if (data.type === 'link') {
return !!data.url && data.url.trim() !== ''
}
if (data.type === 'text') {
return !!data.content && data.content.trim() !== ''
}
if (data.type === 'upload') {
if (data.file instanceof FileList) {
return data.file.length > 0
}
return !!data.file
}
return true
}, {
message: 'Please provide the required content for the selected source type',
path: ['type'],
}).refine((data) => {
// Make title mandatory for text sources
if (data.type === 'text') {
return !!data.title && data.title.trim() !== ''
}
return true
}, {
message: 'Title is required for text sources',
path: ['title'],
})
type CreateSourceFormData = z.infer<typeof createSourceSchema>
interface AddSourceDialogProps {
open: boolean
onOpenChange: (open: boolean) => void
defaultNotebookId?: string
}
const WIZARD_STEPS: readonly WizardStep[] = [
{ number: 1, title: 'Source & Content', description: 'Choose type and add content' },
{ number: 2, title: 'Organization', description: 'Select notebooks' },
{ number: 3, title: 'Processing', description: 'Choose transformations and options' },
]
interface ProcessingState {
message: string
progress?: number
}
interface BatchProgress {
total: number
completed: number
failed: number
currentItem?: string
}
export function AddSourceDialog({
open,
onOpenChange,
defaultNotebookId
}: AddSourceDialogProps) {
// Simplified state management
const [currentStep, setCurrentStep] = useState(1)
const [processing, setProcessing] = useState(false)
const [processingStatus, setProcessingStatus] = useState<ProcessingState | null>(null)
const [selectedNotebooks, setSelectedNotebooks] = useState<string[]>(
defaultNotebookId ? [defaultNotebookId] : []
)
const [selectedTransformations, setSelectedTransformations] = useState<string[]>([])
// Batch-specific state
const [urlValidationErrors, setUrlValidationErrors] = useState<{ url: string; line: number }[]>([])
const [batchProgress, setBatchProgress] = useState<BatchProgress | null>(null)
// Cleanup timeouts to prevent memory leaks
const timeoutRef = useRef<NodeJS.Timeout | null>(null)
// API hooks
const createSource = useCreateSource()
const { data: notebooks = [], isLoading: notebooksLoading } = useNotebooks()
const { data: transformations = [], isLoading: transformationsLoading } = useTransformations()
const { data: settings } = useSettings()
// Form setup
const {
register,
handleSubmit,
control,
watch,
formState: { errors },
reset,
} = useForm<CreateSourceFormData>({
resolver: zodResolver(createSourceSchema),
defaultValues: {
notebooks: defaultNotebookId ? [defaultNotebookId] : [],
embed: settings?.default_embedding_option === 'always' || settings?.default_embedding_option === 'ask',
async_processing: true,
transformations: [],
},
})
// Initialize form values when settings and transformations are loaded
useEffect(() => {
if (settings && transformations.length > 0) {
const defaultTransformations = transformations
.filter(t => t.apply_default)
.map(t => t.id)
setSelectedTransformations(defaultTransformations)
// Reset form with proper embed value based on settings
const embedValue = settings.default_embedding_option === 'always' ||
(settings.default_embedding_option === 'ask')
reset({
notebooks: defaultNotebookId ? [defaultNotebookId] : [],
embed: embedValue,
async_processing: true,
transformations: [],
})
}
}, [settings, transformations, defaultNotebookId, reset])
// Cleanup effect
useEffect(() => {
return () => {
if (timeoutRef.current) {
clearTimeout(timeoutRef.current)
}
}
}, [])
const selectedType = watch('type')
const watchedUrl = watch('url')
const watchedContent = watch('content')
const watchedFile = watch('file')
const watchedTitle = watch('title')
// Batch mode detection
const { isBatchMode, itemCount, parsedUrls, parsedFiles } = useMemo(() => {
let urlCount = 0
let fileCount = 0
let parsedUrls: string[] = []
let parsedFiles: File[] = []
if (selectedType === 'link' && watchedUrl) {
const { valid } = parseAndValidateUrls(watchedUrl)
parsedUrls = valid
urlCount = valid.length
}
if (selectedType === 'upload' && watchedFile) {
const fileList = watchedFile as FileList
if (fileList?.length) {
parsedFiles = Array.from(fileList)
fileCount = parsedFiles.length
}
}
const isBatchMode = urlCount > 1 || fileCount > 1
const itemCount = selectedType === 'link' ? urlCount : fileCount
return { isBatchMode, itemCount, parsedUrls, parsedFiles }
}, [selectedType, watchedUrl, watchedFile])
// Check for batch size limit
const isOverLimit = itemCount > MAX_BATCH_SIZE
// Step validation - now reactive with watched values
const isStepValid = (step: number): boolean => {
switch (step) {
case 1:
if (!selectedType) return false
// Check batch size limit
if (isOverLimit) return false
// Check for URL validation errors
if (urlValidationErrors.length > 0) return false
if (selectedType === 'link') {
// In batch mode, check that we have at least one valid URL
if (isBatchMode) {
return parsedUrls.length > 0
}
return !!watchedUrl && watchedUrl.trim() !== ''
}
if (selectedType === 'text') {
return !!watchedContent && watchedContent.trim() !== '' &&
!!watchedTitle && watchedTitle.trim() !== ''
}
if (selectedType === 'upload') {
if (watchedFile instanceof FileList) {
return watchedFile.length > 0 && watchedFile.length <= MAX_BATCH_SIZE
}
return !!watchedFile
}
return true
case 2:
case 3:
return true
default:
return false
}
}
// Navigation
const handleNextStep = (e?: React.MouseEvent) => {
e?.preventDefault()
e?.stopPropagation()
// Validate URLs when leaving step 1 in link mode
if (currentStep === 1 && selectedType === 'link' && watchedUrl) {
const { invalid } = parseAndValidateUrls(watchedUrl)
if (invalid.length > 0) {
setUrlValidationErrors(invalid)
return
}
setUrlValidationErrors([])
}
if (currentStep < 3 && isStepValid(currentStep)) {
setCurrentStep(currentStep + 1)
}
}
// Clear URL validation errors when user edits
const handleClearUrlErrors = () => {
setUrlValidationErrors([])
}
const handlePrevStep = (e?: React.MouseEvent) => {
e?.preventDefault()
e?.stopPropagation()
if (currentStep > 1) {
setCurrentStep(currentStep - 1)
}
}
const handleStepClick = (step: number) => {
if (step <= currentStep || (step === currentStep + 1 && isStepValid(currentStep))) {
setCurrentStep(step)
}
}
// Selection handlers
const handleNotebookToggle = (notebookId: string) => {
const updated = selectedNotebooks.includes(notebookId)
? selectedNotebooks.filter(id => id !== notebookId)
: [...selectedNotebooks, notebookId]
setSelectedNotebooks(updated)
}
const handleTransformationToggle = (transformationId: string) => {
const updated = selectedTransformations.includes(transformationId)
? selectedTransformations.filter(id => id !== transformationId)
: [...selectedTransformations, transformationId]
setSelectedTransformations(updated)
}
// Single source submission
const submitSingleSource = async (data: CreateSourceFormData): Promise<void> => {
const createRequest: CreateSourceRequest = {
type: data.type,
notebooks: selectedNotebooks,
url: data.type === 'link' ? data.url : undefined,
content: data.type === 'text' ? data.content : undefined,
title: data.title,
transformations: selectedTransformations,
embed: data.embed,
delete_source: false,
async_processing: true,
}
if (data.type === 'upload' && data.file) {
const file = data.file instanceof FileList ? data.file[0] : data.file
const requestWithFile = createRequest as CreateSourceRequest & { file?: File }
requestWithFile.file = file
}
await createSource.mutateAsync(createRequest)
}
// Batch submission
const submitBatch = async (data: CreateSourceFormData): Promise<{ success: number; failed: number }> => {
const results = { success: 0, failed: 0 }
const items: { type: 'url' | 'file'; value: string | File }[] = []
// Collect items to process
if (data.type === 'link' && parsedUrls.length > 0) {
parsedUrls.forEach(url => items.push({ type: 'url', value: url }))
} else if (data.type === 'upload' && parsedFiles.length > 0) {
parsedFiles.forEach(file => items.push({ type: 'file', value: file }))
}
setBatchProgress({
total: items.length,
completed: 0,
failed: 0,
})
// Process each item sequentially
for (let i = 0; i < items.length; i++) {
const item = items[i]
const itemLabel = item.type === 'url'
? (item.value as string).substring(0, 50) + '...'
: (item.value as File).name
setBatchProgress(prev => prev ? {
...prev,
currentItem: itemLabel,
} : null)
try {
const createRequest: CreateSourceRequest = {
type: item.type === 'url' ? 'link' : 'upload',
notebooks: selectedNotebooks,
url: item.type === 'url' ? item.value as string : undefined,
transformations: selectedTransformations,
embed: data.embed,
delete_source: false,
async_processing: true,
}
if (item.type === 'file') {
const requestWithFile = createRequest as CreateSourceRequest & { file?: File }
requestWithFile.file = item.value as File
}
await createSource.mutateAsync(createRequest)
results.success++
} catch (error) {
console.error(`Error creating source for ${itemLabel}:`, error)
results.failed++
}
setBatchProgress(prev => prev ? {
...prev,
completed: results.success,
failed: results.failed,
} : null)
}
return results
}
// Form submission
const onSubmit = async (data: CreateSourceFormData) => {
try {
setProcessing(true)
if (isBatchMode) {
// Batch submission
setProcessingStatus({ message: `Processing ${itemCount} sources...` })
const results = await submitBatch(data)
// Show summary toast
if (results.failed === 0) {
toast.success(`${results.success} source${results.success !== 1 ? 's' : ''} created successfully`)
} else if (results.success === 0) {
toast.error(`Failed to create all ${results.failed} sources`)
} else {
toast.warning(`${results.success} succeeded, ${results.failed} failed`)
}
handleClose()
} else {
// Single source submission
setProcessingStatus({ message: 'Submitting source for processing...' })
await submitSingleSource(data)
handleClose()
}
} catch (error) {
console.error('Error creating source:', error)
setProcessingStatus({
message: 'Error creating source. Please try again.',
})
timeoutRef.current = setTimeout(() => {
setProcessing(false)
setProcessingStatus(null)
setBatchProgress(null)
}, 3000)
}
}
// Dialog management
const handleClose = () => {
// Clear any pending timeouts
if (timeoutRef.current) {
clearTimeout(timeoutRef.current)
timeoutRef.current = null
}
reset()
setCurrentStep(1)
setProcessing(false)
setProcessingStatus(null)
setSelectedNotebooks(defaultNotebookId ? [defaultNotebookId] : [])
setUrlValidationErrors([])
setBatchProgress(null)
// Reset to default transformations
if (transformations.length > 0) {
const defaultTransformations = transformations
.filter(t => t.apply_default)
.map(t => t.id)
setSelectedTransformations(defaultTransformations)
} else {
setSelectedTransformations([])
}
onOpenChange(false)
}
// Processing view
if (processing) {
const progressPercent = batchProgress
? Math.round(((batchProgress.completed + batchProgress.failed) / batchProgress.total) * 100)
: undefined
return (
<Dialog open={open} onOpenChange={handleClose}>
<DialogContent className="sm:max-w-[500px]" showCloseButton={true}>
<DialogHeader>
<DialogTitle>
{batchProgress ? 'Processing Batch' : 'Processing Source'}
</DialogTitle>
<DialogDescription>
{batchProgress
? `Processing ${batchProgress.total} sources. This may take a few moments.`
: 'Your source is being processed. This may take a few moments.'
}
</DialogDescription>
</DialogHeader>
<div className="space-y-4 py-4">
<div className="flex items-center gap-3">
<LoaderIcon className="h-5 w-5 animate-spin text-primary" />
<span className="text-sm text-muted-foreground">
{processingStatus?.message || 'Processing...'}
</span>
</div>
{/* Batch progress */}
{batchProgress && (
<>
<div className="w-full bg-muted rounded-full h-2">
<div
className="bg-primary h-2 rounded-full transition-all duration-300"
style={{ width: `${progressPercent}%` }}
/>
</div>
<div className="flex items-center justify-between text-sm">
<div className="flex items-center gap-4">
<span className="flex items-center gap-1.5 text-green-600">
<CheckCircleIcon className="h-4 w-4" />
{batchProgress.completed} completed
</span>
{batchProgress.failed > 0 && (
<span className="flex items-center gap-1.5 text-destructive">
<XCircleIcon className="h-4 w-4" />
{batchProgress.failed} failed
</span>
)}
</div>
<span className="text-muted-foreground">
{batchProgress.completed + batchProgress.failed} / {batchProgress.total}
</span>
</div>
{batchProgress.currentItem && (
<p className="text-xs text-muted-foreground truncate">
Current: {batchProgress.currentItem}
</p>
)}
</>
)}
{/* Single source progress */}
{!batchProgress && processingStatus?.progress && (
<div className="w-full bg-muted rounded-full h-2">
<div
className="bg-primary h-2 rounded-full transition-all duration-300"
style={{ width: `${processingStatus.progress}%` }}
/>
</div>
)}
</div>
</DialogContent>
</Dialog>
)
}
const currentStepValid = isStepValid(currentStep)
return (
<Dialog open={open} onOpenChange={handleClose}>
<DialogContent className="sm:max-w-[700px] p-0">
<DialogHeader className="px-6 pt-6 pb-0">
<DialogTitle>Add New Source</DialogTitle>
<DialogDescription>
Add content from links, uploads, or text to your notebooks.
</DialogDescription>
</DialogHeader>
<form onSubmit={handleSubmit(onSubmit)}>
<WizardContainer
currentStep={currentStep}
steps={WIZARD_STEPS}
onStepClick={handleStepClick}
className="border-0"
>
{currentStep === 1 && (
<SourceTypeStep
// @ts-expect-error - Type inference issue with zod schema
control={control}
register={register}
// @ts-expect-error - Type inference issue with zod schema
errors={errors}
urlValidationErrors={urlValidationErrors}
onClearUrlErrors={handleClearUrlErrors}
/>
)}
{currentStep === 2 && (
<NotebooksStep
notebooks={notebooks}
selectedNotebooks={selectedNotebooks}
onToggleNotebook={handleNotebookToggle}
loading={notebooksLoading}
/>
)}
{currentStep === 3 && (
<ProcessingStep
// @ts-expect-error - Type inference issue with zod schema
control={control}
transformations={transformations}
selectedTransformations={selectedTransformations}
onToggleTransformation={handleTransformationToggle}
loading={transformationsLoading}
settings={settings}
/>
)}
</WizardContainer>
{/* Navigation */}
<div className="flex justify-between items-center px-6 py-4 border-t border-border bg-muted">
<Button
type="button"
variant="outline"
onClick={handleClose}
>
Cancel
</Button>
<div className="flex gap-2">
{currentStep > 1 && (
<Button
type="button"
variant="outline"
onClick={handlePrevStep}
>
Back
</Button>
)}
{/* Show Next button on steps 1 and 2, styled as outline/secondary */}
{currentStep < 3 && (
<Button
type="button"
variant="outline"
onClick={(e) => handleNextStep(e)}
disabled={!currentStepValid}
>
Next
</Button>
)}
{/* Show Done button on all steps, styled as primary */}
<Button
type="submit"
disabled={!currentStepValid || createSource.isPending}
className="min-w-[120px]"
>
{createSource.isPending ? 'Creating...' : 'Done'}
</Button>
</div>
</div>
</form>
</DialogContent>
</Dialog>
)
}
|