Spaces:
Paused
Paused
File size: 32,062 Bytes
d530f14 | 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 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 | "use client";
import { motion, AnimatePresence } from "framer-motion";
import {
Globe,
FileText,
Code,
Shield,
// Search, // Not used in current implementation
Zap,
Database,
// Lock, // Not used in current implementation
CheckCircle2,
XCircle,
Loader2,
AlertCircle,
Bot,
Sparkles,
FileCode,
Network,
Info,
Eye
} from "lucide-react";
import { useEffect, useState } from "react";
import ScoreChart from "./ScoreChart";
import RadarChart from "./RadarChart";
import MetricBars from "./MetricBars";
interface ControlPanelProps {
isAnalyzing: boolean;
showResults: boolean;
url: string;
analysisData?: any;
onReset: () => void;
}
interface CheckItem {
id: string;
label: string;
description: string;
icon: any;
status: 'pending' | 'checking' | 'pass' | 'fail' | 'warning';
score?: number;
details?: string;
recommendation?: string;
actionItems?: string[];
tooltip?: string;
}
export default function ControlPanel({
isAnalyzing,
showResults,
url,
analysisData,
onReset,
}: ControlPanelProps) {
const [showAIAnalysis, setShowAIAnalysis] = useState(false); // Reserved for AI analysis feature
const [aiInsights, setAiInsights] = useState<CheckItem[]>([]);
const [isAnalyzingAI, setIsAnalyzingAI] = useState(false);
const [combinedChecks, setCombinedChecks] = useState<CheckItem[]>([]);
const [checks, setChecks] = useState<CheckItem[]>([
{
id: 'heading-structure',
label: 'Heading Hierarchy',
description: 'H1-H6 structure',
icon: FileText,
status: 'pending',
},
{
id: 'readability',
label: 'Readability',
description: 'Content clarity',
icon: Globe,
status: 'pending',
},
{
id: 'meta-tags',
label: 'Metadata Quality',
description: 'Title, desc, author',
icon: FileCode,
status: 'pending',
},
{
id: 'semantic-html',
label: 'Semantic HTML',
description: 'Proper HTML5 tags',
icon: Code,
status: 'pending',
},
{
id: 'accessibility',
label: 'Accessibility',
description: 'Alt text & ARIA',
icon: Eye,
status: 'pending',
},
{
id: 'llms-txt',
label: 'LLMs.txt',
description: 'AI permissions',
icon: Bot,
status: 'pending',
},
{
id: 'robots-txt',
label: 'Robots.txt',
description: 'Crawler rules',
icon: Shield,
status: 'pending',
},
{
id: 'sitemap',
label: 'Sitemap',
description: 'Site structure',
icon: Network,
status: 'pending',
},
]);
const [overallScore, setOverallScore] = useState(0);
const [currentCheckIndex, setCurrentCheckIndex] = useState(-1);
const [selectedCheck, setSelectedCheck] = useState<string | null>(null);
const [hoveredCheck, setHoveredCheck] = useState<string | null>(null);
const [enhancedScore, setEnhancedScore] = useState(0);
const [viewMode, setViewMode] = useState<'grid' | 'chart' | 'bars'>('grid');
useEffect(() => {
if (analysisData && analysisData.checks && showResults) {
// Use real data from API
const mappedChecks = analysisData.checks.map((check: any) => ({
...check,
icon: checks.find(c => c.id === check.id)?.icon || FileText,
description: check.details || checks.find(c => c.id === check.id)?.description,
}));
setChecks(mappedChecks);
setCombinedChecks(mappedChecks); // Initialize with basic checks
setOverallScore(analysisData.overallScore || 0);
setCurrentCheckIndex(-1);
// If AI analysis should auto-start, handle the promise
if (analysisData.autoStartAI && analysisData.aiAnalysisPromise) {
console.log('Auto-starting AI analysis with promise');
setIsAnalyzingAI(true);
setShowAIAnalysis(true);
// Add placeholder AI tiles immediately with actual titles
const placeholderAIChecks = [
{
id: 'ai-loading-0',
label: 'Content Quality for AI',
description: 'Analyzing content signal ratio...',
icon: Sparkles,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-1',
label: 'Information Architecture',
description: 'Evaluating page structure...',
icon: Bot,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-2',
label: 'Crawlability Patterns',
description: 'Checking JavaScript usage...',
icon: Database,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-3',
label: 'AI Training Value',
description: 'Assessing training potential...',
icon: Network,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-4',
label: 'Knowledge Extraction',
description: 'Analyzing entity definitions...',
icon: FileCode,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-5',
label: 'Template Quality',
description: 'Reviewing semantic structure...',
icon: Shield,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-6',
label: 'Content Depth',
description: 'Measuring content richness...',
icon: Zap,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-7',
label: 'Machine Readability',
description: 'Testing extraction reliability...',
icon: Globe,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
}
];
// Add loading AI tiles with staggered animation
placeholderAIChecks.forEach((check, idx) => {
setTimeout(() => {
setCombinedChecks(prev => [...prev, check]);
}, 100 * (idx + 1));
});
// Handle the AI analysis promise
analysisData.aiAnalysisPromise
.then(async (aiResponse: any) => {
if (aiResponse) {
const data = await aiResponse.json();
if (data.success && data.insights) {
// Convert AI insights to CheckItem format
const aiChecks: CheckItem[] = data.insights.map((insight: any, idx: number) => ({
...insight,
icon: [Sparkles, Bot, Database, Network, FileCode, Shield, Zap, Globe][idx % 8],
description: insight.details?.substring(0, 60) + '...' || 'AI Analysis',
isAI: true,
}));
setAiInsights(aiChecks);
// Replace loading tiles with real AI tiles
setCombinedChecks(prev => {
// Remove loading tiles
const withoutLoading = prev.filter(c => !(c as any).isLoading);
// Add real AI tiles
return [...withoutLoading, ...aiChecks];
});
// Calculate enhanced score
if (data.insights.length > 0) {
const aiScores = data.insights.map((i: any) => i.score || 0);
const avgAiScore = aiScores.reduce((a: number, b: number) => a + b, 0) / aiScores.length;
const combinedScore = Math.round((overallScore * 0.6) + (avgAiScore * 0.4));
setEnhancedScore(combinedScore);
}
}
}
})
.catch((error: any) => {
console.error('AI analysis error:', error);
// Remove loading tiles on error
setCombinedChecks(prev => prev.filter(c => !(c as any).isLoading));
})
.finally(() => {
setIsAnalyzingAI(false);
});
}
} else if (isAnalyzing) {
// Reset all checks when starting analysis
const resetChecks = checks.map(check => ({ ...check, status: 'pending' as const }));
setChecks(resetChecks);
setCombinedChecks(resetChecks); // Reset combined checks too
setCurrentCheckIndex(0);
setOverallScore(0);
// Visual animation while waiting for real results
const checkInterval = setInterval(() => {
setCurrentCheckIndex(prev => {
if (prev >= checks.length - 1) {
clearInterval(checkInterval);
return prev;
}
return prev + 1;
});
}, 200);
return () => clearInterval(checkInterval);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isAnalyzing, showResults, analysisData]);
useEffect(() => {
if (currentCheckIndex >= 0 && currentCheckIndex < checks.length && isAnalyzing) {
// Mark current as checking during animation
setChecks(prev => prev.map((check, index) => {
if (index === currentCheckIndex) {
return { ...check, status: 'checking' };
}
if (index < currentCheckIndex) {
return { ...check, status: 'checking' };
}
return check;
}));
// Update combinedChecks to show the animation
setCombinedChecks(prev => prev.map((check, index) => {
if (index === currentCheckIndex) {
return { ...check, status: 'checking' };
}
if (index < currentCheckIndex) {
return { ...check, status: 'checking' };
}
return check;
}));
}
}, [currentCheckIndex, checks.length, isAnalyzing]);
const getStatusIcon = (status: CheckItem['status']) => {
switch (status) {
case 'checking':
return <Loader2 className="w-16 h-16 text-heat-100 animate-spin" />;
case 'pass':
return <CheckCircle2 className="w-16 h-16 text-accent-black" />;
case 'fail':
return <XCircle className="w-16 h-16 text-heat-200" />;
case 'warning':
return <AlertCircle className="w-16 h-16 text-heat-100" />;
default:
return <div className="w-16 h-16 rounded-full border border-black-alpha-8" />;
}
};
// Utility function available but not used in current render
const getScoreColor = (score: number) => {
if (score >= 80) return "text-accent-black";
if (score >= 60) return "text-accent-black";
return "text-accent-black";
};
return (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: -20 }}
transition={{ duration: 0.5 }}
className="w-full max-w-[1200px] mx-auto"
>
{/* Header */}
<motion.div
className="text-center mb-48 pt-24 md:pt-0"
initial={{ opacity: 0, y: -20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.2 }}
>
<h2 className="text-title-h2 text-accent-black mb-12">AI Readiness Analysis</h2>
<p className="text-body-large text-black-alpha-64">Single-page snapshot of {url}</p>
{showResults && (
<>
{/* View Mode Toggle - Moved above score */}
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ delay: 0.3 }}
className="mt-24 mb-20 flex justify-center gap-4"
>
<button
onClick={() => setViewMode('grid')}
className={`px-16 py-8 rounded-8 text-label-medium font-medium transition-all ${
viewMode === 'grid'
? 'bg-accent-black text-white shadow-md'
: 'bg-black-alpha-4 text-black-alpha-64 hover:bg-black-alpha-8'
}`}
>
Grid View
</button>
<button
onClick={() => setViewMode('chart')}
className={`px-16 py-8 rounded-8 text-label-medium font-medium transition-all ${
viewMode === 'chart'
? 'bg-accent-black text-white shadow-md'
: 'bg-black-alpha-4 text-black-alpha-64 hover:bg-black-alpha-8'
}`}
>
Radar Chart
</button>
<button
onClick={() => setViewMode('bars')}
className={`px-16 py-8 rounded-8 text-label-medium font-medium transition-all ${
viewMode === 'bars'
? 'bg-accent-black text-white shadow-md'
: 'bg-black-alpha-4 text-black-alpha-64 hover:bg-black-alpha-8'
}`}
>
Bar Chart
</button>
</motion.div>
<motion.div
initial={{ scale: 0 }}
animate={{ scale: 1 }}
transition={{ type: "spring", delay: 0.5 }}
className="flex justify-center"
>
<ScoreChart
score={enhancedScore > 0 ? enhancedScore : overallScore}
enhanced={enhancedScore > 0}
size={180}
/>
</motion.div>
</>
)}
</motion.div>
{/* Conditional rendering based on view mode */}
{viewMode === 'grid' && (
<div className="grid grid-cols-2 lg:grid-cols-4 gap-12 mb-40 px-40 relative">
{combinedChecks.map((check, index) => {
const isActive = index === currentCheckIndex;
return (
<motion.div
key={check.id}
initial={(check as any).isAI ? { opacity: 1, scale: 1 } : { opacity: 0, scale: 0.9 }}
animate={{
opacity: 1,
scale: isActive ? 1.05 : 1,
}}
transition={{
delay: (check as any).isAI ? 0 : index * 0.1,
scale: { type: "spring", stiffness: 300 }
}}
className={`
relative p-16 rounded-8 transition-all bg-accent-white border
${(check as any).isAI ? 'border-heat-100 border-opacity-40 bg-gradient-to-br from-accent-white to-heat-4' : 'border-black-alpha-8'}
${isActive ? 'border-heat-100 shadow-lg' : ''}
${check.status !== 'pending' && check.status !== 'checking' ? 'cursor-pointer hover:shadow-md' : ''}
${(check as any).isLoading ? 'animate-pulse' : ''}
`}
onClick={() => {
if (check.status !== 'pending' && check.status !== 'checking') {
setSelectedCheck(selectedCheck === check.id ? null : check.id);
}
}}
onMouseEnter={() => setHoveredCheck(check.id)}
onMouseLeave={() => setHoveredCheck(null)}
>
<div className="relative">
<div className="flex items-start justify-end mb-12">
{getStatusIcon(check.status)}
</div>
<h3 className="text-label-large mb-4 text-accent-black font-medium flex items-center gap-6">
{check.label}
{check.tooltip && !aiInsights.some(ai => ai.id === check.id) && (
<div className="relative inline-block">
<Info className="w-14 h-14 text-black-alpha-32 hover:text-black-alpha-64 transition-colors" />
<AnimatePresence>
{hoveredCheck === check.id && (
<motion.div
initial={{ opacity: 0, y: 5 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: 5 }}
className="absolute bottom-full left-1/2 -translate-x-1/2 mb-8 w-200 p-8 bg-accent-black text-white text-body-x-small rounded-6 shadow-lg z-50 pointer-events-none"
>
{check.tooltip}
<div className="absolute top-full left-1/2 -translate-x-1/2 -mt-1 w-0 h-0 border-l-4 border-r-4 border-t-4 border-transparent border-t-accent-black" />
</motion.div>
)}
</AnimatePresence>
</div>
)}
</h3>
<p className="text-body-small text-black-alpha-64">
{check.description}
</p>
{check.status !== 'pending' && check.status !== 'checking' && (
<>
<motion.div
initial={{ opacity: 0, y: 10 }}
animate={{ opacity: 1, y: 0 }}
className="mt-8"
>
<div className="h-2 bg-black-alpha-4 rounded-full overflow-hidden">
<motion.div
className={`
h-full rounded-full
${check.status === 'pass' ? 'bg-accent-black' : ''}
${check.status === 'warning' ? 'bg-heat-100' : ''}
${check.status === 'fail' ? 'bg-heat-200' : ''}
`}
initial={{ width: 0 }}
animate={{ width: `${check.score}%` }}
transition={{ duration: 0.5 }}
/>
</div>
</motion.div>
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ delay: 0.5 }}
className="text-label-x-small text-black-alpha-32 mt-4 text-center"
>
Click for details
</motion.div>
</>
)}
</div>
{/* Expanded Details */}
<AnimatePresence>
{selectedCheck === check.id && check.details && (
<motion.div
initial={{ opacity: 0, y: -10 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: -10 }}
transition={{ duration: 0.2 }}
className="mt-12 pt-12 border-t border-black-alpha-8"
>
<div className="space-y-6">
<div>
<div className="text-label-small text-black-alpha-48 mb-2">Status</div>
<div className="text-body-small text-accent-black">{check.details}</div>
</div>
<div>
<div className="text-label-small text-black-alpha-48 mb-2">Recommendation</div>
<div className="text-body-small text-black-alpha-64">{check.recommendation}</div>
{check.actionItems && check.actionItems.length > 0 && (
<ul className="mt-4 space-y-2">
{check.actionItems.map((item: string, i: number) => (
<li key={i} className="flex items-start gap-6 text-body-small text-black-alpha-64">
<span className="text-heat-100 mt-1">•</span>
<span>{item}</span>
</li>
))}
</ul>
)}
</div>
</div>
</motion.div>
)}
</AnimatePresence>
</motion.div>
);
})}
</div>
)}
{/* Radar Chart View */}
{viewMode === 'chart' && showResults && (
<div>
<motion.div
className="flex justify-center gap-40 mb-40"
initial={{ opacity: 0, scale: 0.9 }}
animate={{ opacity: 1, scale: 1 }}
transition={{ duration: 0.3 }}
>
{/* Basic Analysis Chart */}
<div className="flex flex-col items-center">
<h3 className="text-label-large text-accent-black mb-16 font-medium">Basic Analysis</h3>
<RadarChart
data={checks
.filter(check => check.status !== 'pending' && check.status !== 'checking')
.slice(0, 8)
.map(check => ({
label: check.label.length > 12 ? check.label.substring(0, 12) + '...' : check.label,
score: check.score || 0
}))}
size={350}
/>
<div className="mt-16 text-center">
<div className="text-title-h3 text-accent-black">{overallScore}%</div>
<div className="text-label-small text-black-alpha-48">Overall Score</div>
</div>
</div>
{/* VS Indicator */}
{aiInsights.length > 0 && (
<motion.div
className="flex items-center"
initial={{ opacity: 0, scale: 0 }}
animate={{ opacity: 1, scale: 1 }}
transition={{ delay: 0.2, type: "spring" }}
>
<div className="text-label-large text-black-alpha-32 font-medium">VS</div>
</motion.div>
)}
{/* AI Analysis Chart - Only show if AI insights exist */}
{aiInsights.length > 0 && (
<motion.div
className="flex flex-col items-center"
initial={{ opacity: 0, x: 20 }}
animate={{ opacity: 1, x: 0 }}
transition={{ delay: 0.3 }}
>
<h3 className="text-label-large text-heat-100 mb-16 font-medium">AI Enhanced Analysis</h3>
<RadarChart
data={aiInsights
.filter(check => check.status !== 'pending' && check.status !== 'checking')
.slice(0, 8)
.map(check => ({
label: check.label.length > 12 ? check.label.substring(0, 12) + '...' : check.label,
score: check.score || 0
}))}
size={350}
/>
<div className="mt-16 text-center">
<div className="text-title-h3 text-heat-100">
{Math.round(aiInsights.reduce((sum, check) => sum + (check.score || 0), 0) / aiInsights.length)}%
</div>
<div className="text-label-small text-heat-100 opacity-60">AI Score</div>
</div>
</motion.div>
)}
</motion.div>
{/* Comparison Summary */}
{aiInsights.length > 0 && (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.5 }}
className="text-center mb-20"
>
<div className="inline-flex items-center gap-8 px-16 py-8 bg-heat-4 rounded-8">
<span className="text-label-medium text-accent-black">
AI analysis found {aiInsights.filter(i => i.score && i.score < 50).length} additional areas for improvement
</span>
</div>
</motion.div>
)}
</div>
)}
{/* Bar Chart View */}
{viewMode === 'bars' && showResults && (
<motion.div
className="px-40 mb-40"
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3 }}
>
<MetricBars
metrics={combinedChecks
.filter(check => check.status !== 'pending' && check.status !== 'checking')
.map(check => ({
label: check.label,
score: check.score || 0,
status: check.status as 'pass' | 'warning' | 'fail',
category: (check as any).isAI ? 'ai' :
['robots-txt', 'sitemap', 'llms-txt'].includes(check.id) ? 'domain' : 'page',
details: check.details,
recommendation: check.recommendation,
actionItems: check.actionItems
}))}
/>
</motion.div>
)}
{/* Action Buttons */}
{showResults && (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.8 }}
className="flex gap-12 justify-center"
>
<button
onClick={onReset}
className="px-20 py-10 bg-accent-white border border-black-alpha-8 hover:bg-black-alpha-4 rounded-8 text-label-medium transition-all"
>
Analyze Another Site
</button>
{true && (
<button
onClick={async () => {
setIsAnalyzingAI(true);
setShowAIAnalysis(true);
// Add placeholder AI tiles immediately with actual titles
const placeholderAIChecks = [
{
id: 'ai-loading-0',
label: 'Content Quality for AI',
description: 'Analyzing content signal ratio...',
icon: Sparkles,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-1',
label: 'Information Architecture',
description: 'Evaluating page structure...',
icon: Bot,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-2',
label: 'Crawlability Patterns',
description: 'Checking JavaScript usage...',
icon: Database,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-3',
label: 'AI Training Value',
description: 'Assessing training potential...',
icon: Network,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-4',
label: 'Knowledge Extraction',
description: 'Analyzing entity definitions...',
icon: FileCode,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-5',
label: 'Template Quality',
description: 'Reviewing semantic structure...',
icon: Shield,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-6',
label: 'Content Depth',
description: 'Measuring content richness...',
icon: Zap,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
},
{
id: 'ai-loading-7',
label: 'Machine Readability',
description: 'Testing extraction reliability...',
icon: Globe,
status: 'checking' as const,
score: 0,
isAI: true,
isLoading: true
}
];
// Add loading AI tiles with staggered animation immediately
placeholderAIChecks.forEach((check, idx) => {
setTimeout(() => {
setCombinedChecks(prev => [...prev, check]);
}, 100 * (idx + 1));
});
try {
const response = await fetch('/api/ai-analysis', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
url,
htmlContent: analysisData?.htmlContent || '',
currentChecks: checks
})
});
const data = await response.json();
if (data.success && data.insights) {
// Convert AI insights to CheckItem format with AI flag
const aiChecks: CheckItem[] = data.insights.map((insight: any, idx: number) => ({
...insight,
icon: [Sparkles, Bot, Database, Network, FileCode, Shield, Zap, Globe][idx % 8],
description: insight.details?.substring(0, 60) + '...' || 'AI Analysis',
isAI: true, // Mark as AI-generated
}));
setAiInsights(aiChecks);
// Replace loading tiles with real AI tiles
setCombinedChecks(prev => {
// Remove loading tiles
const withoutLoading = prev.filter(c => !(c as any).isLoading);
// Add real AI tiles
return [...withoutLoading, ...aiChecks];
});
// Calculate enhanced score
if (data.insights.length > 0) {
const aiScores = data.insights.map((i: any) => i.score || 0);
const avgAiScore = aiScores.reduce((a: number, b: number) => a + b, 0) / aiScores.length;
const combinedScore = Math.round((overallScore * 0.6) + (avgAiScore * 0.4));
setEnhancedScore(combinedScore);
}
}
} catch (error) {
console.error('AI analysis error:', error);
// Remove loading tiles on error
setCombinedChecks(prev => prev.filter(c => !(c as any).isLoading));
} finally {
setIsAnalyzingAI(false);
}
}}
disabled={isAnalyzingAI}
className="px-20 py-10 bg-accent-black hover:bg-black-alpha-80 text-white rounded-8 text-label-medium transition-all disabled:opacity-50"
>
{isAnalyzingAI ? 'Analyzing...' : 'Analyze with AI'}
</button>
)}
</motion.div>
)}
</motion.div>
);
} |