Spaces:
Running
Running
File size: 8,161 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 |
'use client'
import { useState, useMemo } from 'react'
import { NoteResponse } from '@/lib/types/api'
import { Button } from '@/components/ui/button'
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuTrigger,
} from '@/components/ui/dropdown-menu'
import { Plus, StickyNote, Bot, User, MoreVertical, Trash2 } from 'lucide-react'
import { LoadingSpinner } from '@/components/common/LoadingSpinner'
import { EmptyState } from '@/components/common/EmptyState'
import { Badge } from '@/components/ui/badge'
import { NoteEditorDialog } from './NoteEditorDialog'
import { formatDistanceToNow } from 'date-fns'
import { ContextToggle } from '@/components/common/ContextToggle'
import { ContextMode } from '../[id]/page'
import { useDeleteNote } from '@/lib/hooks/use-notes'
import { ConfirmDialog } from '@/components/common/ConfirmDialog'
import { CollapsibleColumn, createCollapseButton } from '@/components/notebooks/CollapsibleColumn'
import { useNotebookColumnsStore } from '@/lib/stores/notebook-columns-store'
interface NotesColumnProps {
notes?: NoteResponse[]
isLoading: boolean
notebookId: string
contextSelections?: Record<string, ContextMode>
onContextModeChange?: (noteId: string, mode: ContextMode) => void
}
export function NotesColumn({
notes,
isLoading,
notebookId,
contextSelections,
onContextModeChange
}: NotesColumnProps) {
const [showAddDialog, setShowAddDialog] = useState(false)
const [editingNote, setEditingNote] = useState<NoteResponse | null>(null)
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false)
const [noteToDelete, setNoteToDelete] = useState<string | null>(null)
const deleteNote = useDeleteNote()
// Collapsible column state
const { notesCollapsed, toggleNotes } = useNotebookColumnsStore()
const collapseButton = useMemo(
() => createCollapseButton(toggleNotes, 'Notes'),
[toggleNotes]
)
const handleDeleteClick = (noteId: string) => {
setNoteToDelete(noteId)
setDeleteDialogOpen(true)
}
const handleDeleteConfirm = async () => {
if (!noteToDelete) return
try {
await deleteNote.mutateAsync(noteToDelete)
setDeleteDialogOpen(false)
setNoteToDelete(null)
} catch (error) {
console.error('Failed to delete note:', error)
}
}
return (
<>
<CollapsibleColumn
isCollapsed={notesCollapsed}
onToggle={toggleNotes}
collapsedIcon={StickyNote}
collapsedLabel="Notes"
>
<Card className="h-full flex flex-col flex-1 overflow-hidden">
<CardHeader className="pb-3 flex-shrink-0">
<div className="flex items-center justify-between gap-2">
<CardTitle className="text-lg">Notes</CardTitle>
<div className="flex items-center gap-2">
<Button
size="sm"
onClick={() => {
setEditingNote(null)
setShowAddDialog(true)
}}
>
<Plus className="h-4 w-4 mr-2" />
Write Note
</Button>
{collapseButton}
</div>
</div>
</CardHeader>
<CardContent className="flex-1 overflow-y-auto min-h-0">
{isLoading ? (
<div className="flex items-center justify-center py-8">
<LoadingSpinner />
</div>
) : !notes || notes.length === 0 ? (
<EmptyState
icon={StickyNote}
title="No notes yet"
description="Create your first note to capture insights and observations."
/>
) : (
<div className="space-y-3">
{notes.map((note) => (
<div
key={note.id}
className="p-3 border rounded-lg card-hover group relative cursor-pointer"
onClick={() => setEditingNote(note)}
>
<div className="flex items-start justify-between mb-2">
<div className="flex items-center gap-2">
{note.note_type === 'ai' ? (
<Bot className="h-4 w-4 text-primary" />
) : (
<User className="h-4 w-4 text-muted-foreground" />
)}
<Badge variant="secondary" className="text-xs">
{note.note_type === 'ai' ? 'AI Generated' : 'Human'}
</Badge>
</div>
<div className="flex items-center gap-2">
<span className="text-xs text-muted-foreground">
{formatDistanceToNow(new Date(note.updated), { addSuffix: true })}
</span>
{/* Context toggle - only show if handler provided */}
{onContextModeChange && contextSelections?.[note.id] && (
<div onClick={(event) => event.stopPropagation()}>
<ContextToggle
mode={contextSelections[note.id]}
hasInsights={false}
onChange={(mode) => onContextModeChange(note.id, mode)}
/>
</div>
)}
{/* Ellipsis menu for delete action */}
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button
variant="ghost"
size="sm"
className="h-8 w-8 p-0 opacity-0 group-hover:opacity-100 transition-opacity"
onClick={(e) => e.stopPropagation()}
>
<MoreVertical className="h-4 w-4" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="w-48">
<DropdownMenuItem
onClick={(e) => {
e.stopPropagation()
handleDeleteClick(note.id)
}}
className="text-red-600 focus:text-red-600"
>
<Trash2 className="h-4 w-4 mr-2" />
Delete Note
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</div>
</div>
{note.title && (
<h4 className="text-sm font-medium mb-2">{note.title}</h4>
)}
{note.content && (
<p className="text-sm text-muted-foreground line-clamp-3">
{note.content}
</p>
)}
</div>
))}
</div>
)}
</CardContent>
</Card>
</CollapsibleColumn>
<NoteEditorDialog
open={showAddDialog || Boolean(editingNote)}
onOpenChange={(open) => {
if (!open) {
setShowAddDialog(false)
setEditingNote(null)
} else {
setShowAddDialog(true)
}
}}
notebookId={notebookId}
note={editingNote ?? undefined}
/>
<ConfirmDialog
open={deleteDialogOpen}
onOpenChange={setDeleteDialogOpen}
title="Delete Note"
description="Are you sure you want to delete this note? This action cannot be undone."
confirmText="Delete"
onConfirm={handleDeleteConfirm}
isLoading={deleteNote.isPending}
confirmVariant="destructive"
/>
</>
)
}
|