## Translation Files - Add 11 new language files (es, de, pt, ru, zh, ja, ko, ar, hi, nl, pl) - Add 100+ missing translation keys across all 15 languages - New sections: notebook, pagination, ai.batchOrganization, ai.autoLabels - Update nav section with workspace, quickAccess, myLibrary keys ## Component Updates - Update 15+ components to use translation keys instead of hardcoded text - Components: notebook dialogs, sidebar, header, note-input, ghost-tags, etc. - Replace 80+ hardcoded English/French strings with t() calls - Ensure consistent UI across all supported languages ## Code Quality - Remove 77+ console.log statements from codebase - Clean up API routes, components, hooks, and services - Keep only essential error handling (no debugging logs) ## UI/UX Improvements - Update Keep logo to yellow post-it style (from-yellow-400 to-amber-500) - Change selection colors to #FEF3C6 (notebooks) and #EFB162 (nav items) - Make "+" button permanently visible in notebooks section - Fix grammar and syntax errors in multiple components ## Bug Fixes - Fix JSON syntax errors in it.json, nl.json, pl.json, zh.json - Fix syntax errors in notebook-suggestion-toast.tsx - Fix syntax errors in use-auto-tagging.ts - Fix syntax errors in paragraph-refactor.service.ts - Fix duplicate "fusion" section in nl.json 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Ou une version plus courte si vous préférez : feat(i18n): Add 15 languages, remove logs, update UI components - Create 11 new translation files (es, de, pt, ru, zh, ja, ko, ar, hi, nl, pl) - Add 100+ translation keys: notebook, pagination, AI features - Update 15+ components to use translations (80+ strings) - Remove 77+ console.log statements from codebase - Fix JSON syntax errors in 4 translation files - Fix component syntax errors (toast, hooks, services) - Update logo to yellow post-it style - Change selection colors (#FEF3C6, #EFB162) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
225 lines
6.7 KiB
TypeScript
225 lines
6.7 KiB
TypeScript
'use client'
|
|
|
|
import { useState, useEffect } from 'react'
|
|
import { Button } from './ui/button'
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from './ui/dialog'
|
|
import { Checkbox } from './ui/checkbox'
|
|
import { Tag, Loader2, Sparkles, CheckCircle2 } from 'lucide-react'
|
|
import { toast } from 'sonner'
|
|
import { useLanguage } from '@/lib/i18n'
|
|
import type { AutoLabelSuggestion, SuggestedLabel } from '@/lib/ai/services'
|
|
|
|
interface AutoLabelSuggestionDialogProps {
|
|
open: boolean
|
|
onOpenChange: (open: boolean) => void
|
|
notebookId: string | null
|
|
onLabelsCreated: () => void
|
|
}
|
|
|
|
export function AutoLabelSuggestionDialog({
|
|
open,
|
|
onOpenChange,
|
|
notebookId,
|
|
onLabelsCreated,
|
|
}: AutoLabelSuggestionDialogProps) {
|
|
const { t } = useLanguage()
|
|
const [suggestions, setSuggestions] = useState<AutoLabelSuggestion | null>(null)
|
|
const [loading, setLoading] = useState(false)
|
|
const [creating, setCreating] = useState(false)
|
|
const [selectedLabels, setSelectedLabels] = useState<Set<string>>(new Set())
|
|
|
|
// Fetch suggestions when dialog opens with a notebook
|
|
useEffect(() => {
|
|
if (open && notebookId) {
|
|
fetchSuggestions()
|
|
} else {
|
|
// Reset state when closing
|
|
setSuggestions(null)
|
|
setSelectedLabels(new Set())
|
|
}
|
|
}, [open, notebookId])
|
|
|
|
const fetchSuggestions = async () => {
|
|
if (!notebookId) return
|
|
|
|
setLoading(true)
|
|
try {
|
|
const response = await fetch('/api/ai/auto-labels', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
credentials: 'include',
|
|
body: JSON.stringify({ notebookId }),
|
|
})
|
|
|
|
const data = await response.json()
|
|
|
|
if (data.success && data.data) {
|
|
setSuggestions(data.data)
|
|
// Select all labels by default
|
|
const allLabelNames = new Set<string>(data.data.suggestedLabels.map((l: SuggestedLabel) => l.name as string))
|
|
setSelectedLabels(allLabelNames)
|
|
} else {
|
|
// No suggestions is not an error - just close the dialog
|
|
if (data.message) {
|
|
}
|
|
onOpenChange(false)
|
|
}
|
|
} catch (error) {
|
|
console.error('Failed to fetch label suggestions:', error)
|
|
toast.error('Failed to fetch label suggestions')
|
|
onOpenChange(false)
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
const toggleLabelSelection = (labelName: string) => {
|
|
const newSelected = new Set(selectedLabels)
|
|
if (newSelected.has(labelName)) {
|
|
newSelected.delete(labelName)
|
|
} else {
|
|
newSelected.add(labelName)
|
|
}
|
|
setSelectedLabels(newSelected)
|
|
}
|
|
|
|
const handleCreateLabels = async () => {
|
|
if (!suggestions || selectedLabels.size === 0) {
|
|
toast.error('No labels selected')
|
|
return
|
|
}
|
|
|
|
setCreating(true)
|
|
try {
|
|
const response = await fetch('/api/ai/auto-labels', {
|
|
method: 'PUT',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
credentials: 'include',
|
|
body: JSON.stringify({
|
|
suggestions,
|
|
selectedLabels: Array.from(selectedLabels),
|
|
}),
|
|
})
|
|
|
|
const data = await response.json()
|
|
|
|
if (data.success) {
|
|
toast.success(
|
|
t('ai.autoLabels.created', { count: data.data.createdCount }) ||
|
|
`${data.data.createdCount} labels created successfully`
|
|
)
|
|
onLabelsCreated()
|
|
onOpenChange(false)
|
|
} else {
|
|
toast.error(data.error || 'Failed to create labels')
|
|
}
|
|
} catch (error) {
|
|
console.error('Failed to create labels:', error)
|
|
toast.error('Failed to create labels')
|
|
} finally {
|
|
setCreating(false)
|
|
}
|
|
}
|
|
|
|
if (loading) {
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="max-w-md">
|
|
<div className="flex flex-col items-center justify-center py-12">
|
|
<Loader2 className="h-8 w-8 animate-spin text-primary" />
|
|
<p className="mt-4 text-sm text-muted-foreground">
|
|
{t('ai.autoLabels.analyzing')}
|
|
</p>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|
|
|
|
if (!suggestions) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle className="flex items-center gap-2">
|
|
<Sparkles className="h-5 w-5 text-amber-500" />
|
|
{t('ai.autoLabels.title')}
|
|
</DialogTitle>
|
|
<DialogDescription>
|
|
{t('ai.autoLabels.description', {
|
|
notebook: suggestions.notebookName,
|
|
count: suggestions.totalNotes,
|
|
})}
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-3 py-4">
|
|
{suggestions.suggestedLabels.map((label) => (
|
|
<div
|
|
key={label.name}
|
|
className="flex items-start gap-3 p-3 rounded-lg border hover:bg-muted/50 cursor-pointer"
|
|
onClick={() => toggleLabelSelection(label.name)}
|
|
>
|
|
<Checkbox
|
|
checked={selectedLabels.has(label.name)}
|
|
onCheckedChange={() => toggleLabelSelection(label.name)}
|
|
aria-label={`Select label: ${label.name}`}
|
|
/>
|
|
<div className="flex-1 min-w-0">
|
|
<div className="flex items-center gap-2">
|
|
<Tag className="h-4 w-4 text-muted-foreground" />
|
|
<span className="font-medium">{label.name}</span>
|
|
</div>
|
|
<div className="flex items-center gap-3 mt-1">
|
|
<span className="text-xs text-muted-foreground">
|
|
{t('ai.autoLabels.notesCount', { count: label.count })}
|
|
</span>
|
|
<span className="text-xs px-2 py-0.5 rounded-full bg-primary/10 text-primary">
|
|
{Math.round(label.confidence * 100)}% confidence
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => onOpenChange(false)}
|
|
disabled={creating}
|
|
>
|
|
{t('general.cancel')}
|
|
</Button>
|
|
<Button
|
|
onClick={handleCreateLabels}
|
|
disabled={selectedLabels.size === 0 || creating}
|
|
>
|
|
{creating ? (
|
|
<>
|
|
<Loader2 className="h-4 w-4 mr-2 animate-spin" />
|
|
{t('ai.autoLabels.creating')}
|
|
</>
|
|
) : (
|
|
<>
|
|
<CheckCircle2 className="h-4 w-4 mr-2" />
|
|
{t('ai.autoLabels.create')}
|
|
</>
|
|
)}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|