Initial commit - WhyRating Engine (Google Reviews Scraper)

This commit is contained in:
Alejandro Gutiérrez
2026-02-02 18:19:00 +00:00
parent 0543a08242
commit 2206ddeff2
136 changed files with 51138 additions and 855 deletions

View File

@@ -16,6 +16,7 @@ import {
ExternalLink,
Timer,
ArrowRightLeft,
BarChart3,
} from 'lucide-react';
import type { ExecutionStatus, StageMetrics } from '@/lib/pipeline-types';
import { getExecution } from '@/lib/pipeline-api';
@@ -432,6 +433,22 @@ export default function ExecutionDetailPage() {
</span>
</div>
)}
{/* View Results Dashboard Button */}
{execution?.status === 'completed' && execution?.job_id && (
<div className="mt-6 pt-4 border-t border-gray-200">
<Link
href={`/pipelines/${pipelineId}/analytics?job_id=${execution.job_id}`}
className="inline-flex items-center px-4 py-2.5 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors font-medium"
>
<BarChart3 className="w-5 h-5 mr-2" />
View Results Dashboard
</Link>
<p className="mt-2 text-sm text-gray-500">
See classification results, sentiment analysis, and identified issues
</p>
</div>
)}
</div>
{/* Error Message */}