File size: 17,195 Bytes
d1f3f31 | 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 | 'use client';
import { useRef, useEffect } from 'react';
import { AlertTriangle, ArrowRight, BrainCircuit, CheckCircle2, Loader2, ShieldCheck, UserRound, XCircle, Zap } from 'lucide-react';
import { scrollToSection } from '@/config/navigation';
import { useAppStore } from '@/store/useAppStore';
import { apiService } from '@/services/api';
import { Button } from '@/components/ui/Button';
import { Card } from '@/components/ui/Card';
import { InlineError } from '@/components/ui/InlineError';
import { Reveal } from '@/components/ui/Reveal';
import { SectionHeader } from '@/components/ui/SectionHeader';
function NeuralNetworkCanvas() {
const canvasRef = useRef<HTMLCanvasElement>(null);
useEffect(() => {
const canvas = canvasRef.current;
if (!canvas) return;
const ctx = canvas.getContext('2d');
if (!ctx) return;
let animationFrameId: number;
let width = (canvas.width = canvas.offsetWidth);
let height = (canvas.height = canvas.offsetHeight);
const handleResize = () => {
if (!canvas) return;
width = canvas.width = canvas.offsetWidth;
height = canvas.height = canvas.offsetHeight;
};
window.addEventListener('resize', handleResize);
const particleCount = 45;
const particles: { x: number; y: number; vx: number; vy: number; radius: number }[] = [];
for (let i = 0; i < particleCount; i++) {
particles.push({
x: Math.random() * width,
y: Math.random() * height,
vx: (Math.random() - 0.5) * 0.7,
vy: (Math.random() - 0.5) * 0.7,
radius: Math.random() * 2 + 1.5,
});
}
const connectionDistance = 110;
const draw = () => {
ctx.clearRect(0, 0, width, height);
// Draw lines
ctx.lineWidth = 0.8;
for (let i = 0; i < particleCount; i++) {
const p1 = particles[i];
for (let j = i + 1; j < particleCount; j++) {
const p2 = particles[j];
const dx = p1.x - p2.x;
const dy = p1.y - p2.y;
const dist = Math.sqrt(dx * dx + dy * dy);
if (dist < connectionDistance) {
const alpha = (1 - dist / connectionDistance) * 0.65;
ctx.strokeStyle = `rgba(59, 130, 246, ${alpha})`;
ctx.beginPath();
ctx.moveTo(p1.x, p1.y);
ctx.lineTo(p2.x, p2.y);
ctx.stroke();
}
}
}
// Draw dots
for (let i = 0; i < particleCount; i++) {
const p = particles[i];
p.x += p.vx;
p.y += p.vy;
if (p.x < 0 || p.x > width) p.vx = -p.vx;
if (p.y < 0 || p.y > height) p.vy = -p.vy;
ctx.fillStyle = '#3b82f6';
ctx.beginPath();
ctx.arc(p.x, p.y, p.radius, 0, Math.PI * 2);
ctx.fill();
}
animationFrameId = requestAnimationFrame(draw);
};
animationFrameId = requestAnimationFrame(draw);
return () => {
window.removeEventListener('resize', handleResize);
cancelAnimationFrame(animationFrameId);
};
}, []);
return <canvas ref={canvasRef} className="w-full h-full" />;
}
export function ExtractionSection() {
const { isExtracting, features, setPredicting, error, setError } = useAppStore();
const sapLead = features?.sapLead;
const handlePredict = async () => {
if (!features) return;
setPredicting(true);
setError(null);
try {
const prediction = await apiService.predictConversion(features);
useAppStore.getState().setPrediction(prediction);
setPredicting(false);
scrollToSection('prediction');
} catch (err: unknown) {
console.error(err);
setPredicting(false);
const message =
err instanceof Error
? err.message
: 'Prediction failed. Check that XGBoost API is running.';
setError(message);
}
};
const showPredictError = error?.includes('Prediction failed');
return (
<section id="extraction" className="relative mx-auto max-w-6xl px-6 py-20 md:px-10 md:py-28">
<Reveal>
<SectionHeader
eyebrow="Extraction"
title="Conversation Insights"
description="Key signals, privacy redactions, and objections detected from the transcript."
align="center"
/>
</Reveal>
{features && (
<Reveal className="mb-8 flex justify-center" delay={0.04}>
<span className="inline-flex items-center gap-2 rounded-full border border-nexus-border bg-nexus-card px-4 py-1.5 text-xs font-medium text-nexus-muted">
<span
className={`h-1.5 w-1.5 rounded-full ${
features.extractionProvider === 'llama' ? 'bg-nexus-secondary' : 'bg-amber-500'
}`}
/>
{features.extractionProvider === 'llama' ? 'LLaMA 3 (Groq)' : 'Local fallback'}
</span>
</Reveal>
)}
{showPredictError && (
<Reveal className="mb-6 flex justify-center">
<InlineError message={error!} onDismiss={() => setError(null)} />
</Reveal>
)}
{isExtracting ? (
<Reveal delay={0.08}>
<Card className="flex h-64 flex-col items-center justify-center gap-4" padding="lg">
<Loader2 className="h-8 w-8 animate-spin text-nexus-secondary" />
<p className="text-sm font-medium text-nexus-fg">Extracting features…</p>
</Card>
</Reveal>
) : features ? (
<div className="space-y-6">
<Reveal delay={0.06}>
<Card padding="lg">
<div className="mb-5 flex items-center gap-3">
<div className="flex h-10 w-10 items-center justify-center rounded-xl border border-nexus-border bg-nexus-bg text-nexus-accent">
<BrainCircuit className="h-5 w-5" />
</div>
<div>
<h3 className="text-sm font-semibold text-nexus-fg">Extracted Signals</h3>
<p className="text-xs text-nexus-muted">Products, topics, and labels from LLaMA</p>
</div>
</div>
<div className="flex flex-wrap gap-2">
{features.rawFeatures?.length ? (
features.rawFeatures.map((f, i) => (
<div
key={`${f.label}-${f.name}-${i}`}
className="rounded-xl border border-nexus-border bg-nexus-bg/60 px-3.5 py-2"
>
<span className="block text-[10px] font-semibold uppercase tracking-[0.14em] text-nexus-muted">
{f.label}
</span>
<span className="text-sm font-medium capitalize text-nexus-fg">{f.name}</span>
</div>
))
) : (
<p className="text-sm text-nexus-muted">No labeled signals detected.</p>
)}
</div>
</Card>
</Reveal>
<Reveal delay={0.1}>
<Card padding="lg">
<div className="mb-5 flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
<div className="flex items-center gap-3">
<div className="flex h-10 w-10 items-center justify-center rounded-xl border border-nexus-border bg-nexus-bg text-emerald-600">
<ShieldCheck className="h-5 w-5" />
</div>
<div>
<h3 className="text-sm font-semibold text-nexus-fg">Privacy Redaction</h3>
<p className="text-xs text-nexus-muted">PII scrubbed before cloud inference</p>
</div>
</div>
<span className="inline-flex items-center gap-1.5 rounded-full border border-emerald-500/20 bg-emerald-500/10 px-3 py-1 text-xs font-medium text-emerald-600">
{features.privacy?.redactionCount ?? 0} item
{(features.privacy?.redactionCount ?? 0) === 1 ? '' : 's'} redacted
</span>
</div>
<div className="grid gap-6 md:grid-cols-2">
<div>
<div className="mb-3 flex items-center gap-2">
<UserRound className="h-4 w-4 text-nexus-muted" />
<p className="text-[10px] font-semibold uppercase tracking-[0.14em] text-nexus-muted">
Detected entities
</p>
</div>
<div className="flex flex-wrap gap-2">
{features.privacy?.entities?.length ? (
features.privacy.entities.map((entity, index) => (
<div
key={`${entity.type}-${index}`}
className="rounded-lg border border-nexus-border bg-nexus-bg/50 px-3 py-2"
>
<span className="block text-[10px] font-semibold uppercase tracking-[0.12em] text-nexus-muted">
{entity.type.replaceAll('_', ' ')}
</span>
<span className="text-sm font-medium text-nexus-fg">{entity.value}</span>
</div>
))
) : (
<p className="text-sm text-nexus-muted">No sensitive entities detected.</p>
)}
</div>
</div>
<div>
<p className="mb-3 text-[10px] font-semibold uppercase tracking-[0.14em] text-nexus-muted">
Behavioral signals
</p>
<div className="grid grid-cols-2 gap-2">
{[
{ label: 'Intent', value: features.customerBehaviorSummary?.intentSignals ?? 0 },
{ label: 'Hesitation', value: features.customerBehaviorSummary?.hesitationScore ?? 0 },
{ label: 'Urgency', value: features.customerBehaviorSummary?.urgencySignals ?? 0 },
{ label: 'Words', value: features.customerBehaviorSummary?.wordCount ?? 0 },
].map((metric) => (
<div
key={metric.label}
className="rounded-xl border border-nexus-border bg-nexus-bg/50 p-3"
>
<span className="text-[10px] font-semibold uppercase tracking-[0.12em] text-nexus-muted">
{metric.label}
</span>
<p className="mt-1 text-xl font-semibold text-nexus-fg">{metric.value}</p>
</div>
))}
</div>
</div>
</div>
</Card>
</Reveal>
<Reveal delay={0.14}>
<Card padding="lg">
<div className="mb-4 flex items-center gap-3">
<div className="flex h-10 w-10 items-center justify-center rounded-xl border border-red-500/20 bg-red-500/5 text-red-500">
<AlertTriangle className="h-5 w-5" />
</div>
<div>
<h3 className="text-sm font-semibold text-nexus-fg">Objections</h3>
<p className="text-xs text-nexus-muted">Friction points raised in the conversation</p>
</div>
</div>
<div className="flex flex-wrap gap-2">
{features.objections.length > 0 ? (
features.objections.map((obj, i) => (
<span
key={i}
className="rounded-xl border border-red-500/20 bg-red-500/10 px-3.5 py-2 text-sm text-red-600 dark:text-red-400"
>
{obj}
</span>
))
) : (
<p className="text-sm text-nexus-muted">No objections detected.</p>
)}
</div>
</Card>
</Reveal>
{sapLead && (
<Reveal delay={0.16}>
<Card padding="lg">
<div className="mb-5 flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
<div className="flex items-center gap-3">
<div
className={`flex h-10 w-10 items-center justify-center rounded-xl border ${
sapLead.leadCreated
? 'border-emerald-500/20 bg-emerald-500/10 text-emerald-600'
: 'border-amber-500/20 bg-amber-500/10 text-amber-600'
}`}
>
{sapLead.leadCreated ? <CheckCircle2 className="h-5 w-5" /> : <XCircle className="h-5 w-5" />}
</div>
<div>
<h3 className="text-sm font-semibold text-nexus-fg">SAP Lead Creation</h3>
<p className="text-xs text-nexus-muted">C4C lead sync result</p>
</div>
</div>
<span
className={`inline-flex items-center rounded-full border px-3 py-1 text-xs font-semibold ${
sapLead.leadCreated
? 'border-emerald-500/20 bg-emerald-500/10 text-emerald-600'
: 'border-amber-500/20 bg-amber-500/10 text-amber-600'
}`}
>
{sapLead.sapStatus}
</span>
</div>
<div className="grid gap-3 sm:grid-cols-2 lg:grid-cols-4">
{[
{ label: 'Lead Created', value: sapLead.leadCreated ? 'Yes' : 'No' },
{ label: 'Lead Number', value: sapLead.leadId || 'Not returned' },
{
label: 'Creation Status',
value: sapLead.httpStatus ? `${sapLead.sapStatus} (${sapLead.httpStatus})` : sapLead.sapStatus,
},
{ label: 'SAP Object ID', value: sapLead.objectId || 'Not returned' },
{ label: 'Errors', value: sapLead.error || 'None' },
].map((item) => (
<div key={item.label} className="rounded-xl border border-nexus-border bg-nexus-bg/50 p-3">
<span className="text-[10px] font-semibold uppercase tracking-[0.12em] text-nexus-muted">
{item.label}
</span>
<p className="mt-1 break-words text-sm font-medium text-nexus-fg">{item.value}</p>
</div>
))}
</div>
</Card>
</Reveal>
)}
<Reveal delay={0.2} className="flex justify-center pt-4">
<Button size="lg" onClick={handlePredict} className="group">
<Zap className="h-4 w-4" />
Run Conversion Model
<ArrowRight className="h-4 w-4 transition-transform group-hover:translate-x-0.5" />
</Button>
</Reveal>
</div>
) : (
<Reveal delay={0.08}>
{/* Empty state: brain as animated 3D background */}
<div className="relative min-h-[420px] rounded-3xl overflow-hidden flex items-center justify-center">
{/* Neural Network Canvas with Blur */}
<div className="absolute inset-0 w-full h-full filter blur-[2px] opacity-[0.10] dark:opacity-[0.15] pointer-events-none -z-10">
<NeuralNetworkCanvas />
</div>
<div className="relative z-10 w-full max-w-md mx-auto px-4">
<Card
variant="outline"
className="flex flex-col items-center justify-center text-center p-10 bg-white/75 backdrop-blur-xl border-slate-200/80 dark:border-slate-700/50 dark:bg-slate-900/70 shadow-2xl"
padding="lg"
>
<div className="w-14 h-14 rounded-2xl bg-blue-500/10 dark:bg-blue-500/20 flex items-center justify-center mb-5">
<BrainCircuit className="h-7 w-7 text-blue-600 dark:text-blue-400" />
</div>
<p className="text-xl font-semibold text-slate-900 dark:text-white">Semantic Feature Extraction</p>
<p className="mt-3 max-w-sm text-sm text-slate-500 dark:text-slate-400 leading-relaxed">
Speech Intelligence and Intent Detection processes speech transcripts to identify purchase intent, client objections, PII privacy redactions, and customer behavior metrics.
</p>
<div className="mt-6 flex flex-wrap justify-center gap-2">
{['Intent Detection', 'PII Redaction', 'Objection Mining', 'Diarization'].map((tag) => (
<span key={tag} className="px-3 py-1 rounded-full bg-blue-500/10 text-blue-600 dark:text-blue-400 text-[11px] font-semibold">
{tag}
</span>
))}
</div>
</Card>
</div>
</div>
</Reveal>
)}
</section>
);
}
|