import { NextRequest, NextResponse } from 'next/server' /** * Theme Suggestions API for Abitur-Archiv * Returns autocomplete suggestions for semantic search */ const BACKEND_URL = process.env.BACKEND_URL || 'http://localhost:8000' export async function GET(request: NextRequest) { try { const { searchParams } = new URL(request.url) const query = searchParams.get('q') || '' if (query.length < 2) { return NextResponse.json({ suggestions: [], query }) } // Try to get suggestions from backend try { const url = `${BACKEND_URL}/api/abitur-archiv/suggest?q=${encodeURIComponent(query)}` const response = await fetch(url, { method: 'GET', headers: { 'Content-Type': 'application/json' }, }) if (response.ok) { const data = await response.json() return NextResponse.json(data) } } catch (error) { console.log('Backend suggest not available, using static suggestions') } // Fallback to static suggestions return NextResponse.json({ suggestions: getStaticSuggestions(query), query }) } catch (error) { console.error('Suggest error:', error) return NextResponse.json({ suggestions: [], query: '' }) } } function getStaticSuggestions(query: string) { const allSuggestions = [ // Textanalyse { label: 'Textanalyse', count: 45, aufgabentyp: 'textanalyse', kategorie: 'Analyse' }, { label: 'Textanalyse Sachtext', count: 28, aufgabentyp: 'textanalyse_pragmatisch', kategorie: 'Analyse' }, { label: 'Textanalyse Rede', count: 12, aufgabentyp: 'textanalyse_rede', kategorie: 'Analyse' }, { label: 'Textanalyse Kommentar', count: 8, aufgabentyp: 'textanalyse_kommentar', kategorie: 'Analyse' }, // Gedichtanalyse { label: 'Gedichtanalyse', count: 38, aufgabentyp: 'gedichtanalyse', kategorie: 'Lyrik' }, { label: 'Gedichtanalyse Romantik', count: 15, aufgabentyp: 'gedichtanalyse', zeitraum: 'Romantik', kategorie: 'Lyrik' }, { label: 'Gedichtanalyse Expressionismus', count: 12, aufgabentyp: 'gedichtanalyse', zeitraum: 'Expressionismus', kategorie: 'Lyrik' }, { label: 'Gedichtanalyse Barock', count: 8, aufgabentyp: 'gedichtanalyse', zeitraum: 'Barock', kategorie: 'Lyrik' }, { label: 'Gedichtanalyse Klassik', count: 10, aufgabentyp: 'gedichtanalyse', zeitraum: 'Klassik', kategorie: 'Lyrik' }, { label: 'Gedichtanalyse Moderne', count: 14, aufgabentyp: 'gedichtanalyse', zeitraum: 'Moderne', kategorie: 'Lyrik' }, { label: 'Gedichtvergleich', count: 18, aufgabentyp: 'gedichtvergleich', kategorie: 'Lyrik' }, // Dramenanalyse { label: 'Dramenanalyse', count: 28, aufgabentyp: 'dramenanalyse', kategorie: 'Drama' }, { label: 'Dramenanalyse Faust', count: 14, aufgabentyp: 'dramenanalyse', kategorie: 'Drama' }, { label: 'Dramenanalyse Woyzeck', count: 8, aufgabentyp: 'dramenanalyse', kategorie: 'Drama' }, { label: 'Episches Theater Brecht', count: 10, aufgabentyp: 'dramenanalyse', kategorie: 'Drama' }, { label: 'Szenenanalyse', count: 22, aufgabentyp: 'szenenanalyse', kategorie: 'Drama' }, // Prosaanalyse { label: 'Prosaanalyse', count: 25, aufgabentyp: 'prosaanalyse', kategorie: 'Epik' }, { label: 'Romananalyse', count: 18, aufgabentyp: 'prosaanalyse', kategorie: 'Epik' }, { label: 'Kurzgeschichte', count: 20, aufgabentyp: 'prosaanalyse', kategorie: 'Epik' }, { label: 'Novelle', count: 12, aufgabentyp: 'prosaanalyse', kategorie: 'Epik' }, { label: 'Erzaehlung', count: 15, aufgabentyp: 'prosaanalyse', kategorie: 'Epik' }, // Eroerterung { label: 'Eroerterung', count: 32, aufgabentyp: 'eroerterung', kategorie: 'Argumentation' }, { label: 'Eroerterung textgebunden', count: 18, aufgabentyp: 'eroerterung_textgebunden', kategorie: 'Argumentation' }, { label: 'Eroerterung materialgestuetzt', count: 14, aufgabentyp: 'eroerterung_materialgestuetzt', kategorie: 'Argumentation' }, { label: 'Stellungnahme', count: 10, aufgabentyp: 'stellungnahme', kategorie: 'Argumentation' }, // Sprachreflexion { label: 'Sprachreflexion', count: 15, aufgabentyp: 'sprachreflexion', kategorie: 'Sprache' }, { label: 'Sprachwandel', count: 8, aufgabentyp: 'sprachreflexion', kategorie: 'Sprache' }, { label: 'Sprachkritik', count: 6, aufgabentyp: 'sprachreflexion', kategorie: 'Sprache' }, { label: 'Kommunikation', count: 10, aufgabentyp: 'kommunikation', kategorie: 'Sprache' }, // Vergleich { label: 'Vergleichende Analyse', count: 20, aufgabentyp: 'vergleich', kategorie: 'Vergleich' }, { label: 'Epochenvergleich', count: 12, aufgabentyp: 'epochenvergleich', kategorie: 'Vergleich' }, ] const queryLower = query.toLowerCase() // Filter suggestions based on query return allSuggestions .filter(s => s.label.toLowerCase().includes(queryLower) || s.aufgabentyp.toLowerCase().includes(queryLower) || (s.zeitraum && s.zeitraum.toLowerCase().includes(queryLower)) || s.kategorie.toLowerCase().includes(queryLower) ) .slice(0, 8) }