Files
encoach_backend_new_v3/frontend/src/components/ai/AiWritingHelper.tsx
Yamen Ahmad b02ee8b6b7 feat: Generation Page AI workflows + AI/Vector modules + exam session fixes
Generation Page (complete rebuild):
- Full production-parity exam generation wizard with 4 IELTS modules
- Reading: AI passage gen, 5 exercise types (MCQ, Fill, Write, T/F, Match)
- Listening: 4 section types, AI context gen, TTS audio gen (ElevenLabs)
- Writing: Task 1/2, AI instruction gen, word limits, marks
- Speaking: 3 parts, AI script gen, avatar video gen (7 avatars)
- Per-module config: timer, CEFR difficulty, access, approval, rubrics
- Exam submission workflow (draft/published)

Exam Structures:
- New encoach.exam.structure model + CRUD controller
- ExamStructuresPage wired to real API

AI Module (encoach_ai):
- OpenAI service, ElevenLabs TTS, AWS Polly, ELAI avatars
- AI settings model with Odoo config parameters
- 7 generation endpoints (passage, exercises, instructions, scripts, context)

Vector Module (encoach_vector):
- pgvector integration for RAG-based content search
- Embedding service with sentence-transformers

Exam Session Fixes:
- Fixed ExamSession.tsx field mapping (question_type→type, exam_title→title)
- Fixed submit payload to include attempt_id and answers
- Fixed normalizeType to handle null/undefined

Tested: 12/12 API tests passed, browser-verified with real OpenAI calls
Made-with: Cursor
2026-04-11 14:27:03 +04:00

142 lines
5.7 KiB
TypeScript

import { useState } from "react";
import { useMutation } from "@tanstack/react-query";
import { Button } from "@/components/ui/button";
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible";
import { Sparkles, Loader2, PenLine, CheckCircle, BarChart3, ChevronDown } from "lucide-react";
import { coachingService } from "@/services/coaching.service";
import { useToast } from "@/hooks/use-toast";
type Mode = "improve" | "grammar" | "band" | null;
interface Props {
text: string;
task_type?: string;
}
export default function AiWritingHelper({ text, task_type = "ielts_writing" }: Props) {
const [open, setOpen] = useState(false);
const [activeMode, setActiveMode] = useState<Mode>(null);
const [showResult, setShowResult] = useState(false);
const { toast } = useToast();
const mutation = useMutation({
mutationFn: (mode: NonNullable<Mode>) =>
coachingService.writingHelp({
task: task_type,
draft: text.trim(),
help_type: mode,
}),
onSuccess: () => setShowResult(true),
onError: (err: Error) => {
toast({
title: "Writing help failed",
description: err.message || "Could not analyze your writing. Try again.",
variant: "destructive",
});
},
});
const handleAction = (mode: Mode) => {
if (!mode) return;
if (!text.trim()) {
toast({
title: "Add some text first",
description: "Enter your draft in the text area so AI can analyze it.",
variant: "destructive",
});
return;
}
setActiveMode(mode);
setShowResult(false);
mutation.mutate(mode);
};
const loading = mutation.isPending;
return (
<Collapsible open={open} onOpenChange={setOpen}>
<CollapsibleTrigger asChild>
<Button variant="outline" size="sm" className="w-full justify-between mt-3">
<span className="flex items-center gap-2">
<Sparkles className="h-3.5 w-3.5 text-primary" />
AI Writing Helper
</span>
<ChevronDown className={`h-4 w-4 transition-transform ${open ? "rotate-180" : ""}`} />
</Button>
</CollapsibleTrigger>
<CollapsibleContent className="mt-3 space-y-3">
<div className="flex gap-2">
<Button variant="outline" size="sm" onClick={() => handleAction("improve")} disabled={loading}>
<PenLine className="h-3.5 w-3.5 mr-1" /> Improve my draft
</Button>
<Button variant="outline" size="sm" onClick={() => handleAction("grammar")} disabled={loading}>
<CheckCircle className="h-3.5 w-3.5 mr-1" /> Check grammar
</Button>
<Button variant="outline" size="sm" onClick={() => handleAction("band")} disabled={loading}>
<BarChart3 className="h-3.5 w-3.5 mr-1" /> Estimate band score
</Button>
</div>
{loading && (
<div className="flex items-center gap-2 text-sm text-muted-foreground rounded-lg bg-muted/50 p-3">
<Loader2 className="h-4 w-4 animate-spin text-primary" /> AI is analyzing your writing...
</div>
)}
{showResult && !loading && mutation.data && activeMode === "improve" && (
<div className="space-y-3">
{mutation.data.tips?.length > 0 && (
<div className="rounded-lg border bg-muted/30 p-3">
<p className="text-xs font-semibold text-primary mb-1 flex items-center gap-1">
<Sparkles className="h-3 w-3" /> Feedback
</p>
<p className="text-sm text-muted-foreground">{mutation.data.tips.join(" ")}</p>
</div>
)}
{mutation.data.improved_text && (
<div className="rounded-lg border bg-muted/30 p-3">
<p className="text-xs font-semibold text-primary mb-1 flex items-center gap-1">
<Sparkles className="h-3 w-3" /> Improved Version
</p>
<p className="text-sm">{mutation.data.improved_text}</p>
</div>
)}
</div>
)}
{showResult && !loading && mutation.data && activeMode === "grammar" && (
<div className="rounded-lg border bg-muted/30 p-3 space-y-2">
<p className="text-xs font-semibold text-primary mb-1 flex items-center gap-1">
<Sparkles className="h-3 w-3" /> Grammar notes
</p>
{(mutation.data.changes?.length ?? 0) > 0 ? (
mutation.data.changes.map((c, i) => (
<div key={i} className="text-sm border-l-2 border-warning pl-2">
<p className="text-muted-foreground"><strong>{c.original}</strong> {c.revised} {c.reason}</p>
</div>
))
) : (
<p className="text-sm text-muted-foreground">No grammar issues flagged.</p>
)}
{mutation.data.tips?.length > 0 ? (
<p className="text-xs text-muted-foreground pt-2 border-t">{mutation.data.tips.join("; ")}</p>
) : null}
</div>
)}
{showResult && !loading && mutation.data && activeMode === "band" && (
<div className="rounded-lg border bg-muted/30 p-3">
<p className="text-xs font-semibold text-primary mb-1 flex items-center gap-1">
<Sparkles className="h-3 w-3" /> Estimated band / assessment
</p>
<p className="text-sm text-muted-foreground">{mutation.data.tips?.join(" ") ?? ""}</p>
{mutation.data.improved_text ? (
<p className="text-sm mt-2 pt-2 border-t">{mutation.data.improved_text}</p>
) : null}
</div>
)}
</CollapsibleContent>
</Collapsible>
);
}