Spaces:
Running
Running
File size: 17,342 Bytes
87c8ea5 38dd789 87c8ea5 b812380 87c8ea5 b812380 87c8ea5 38dd789 b812380 38dd789 87c8ea5 dbeb8bf 87c8ea5 38dd789 b812380 38dd789 b812380 87c8ea5 38dd789 87c8ea5 dbeb8bf 87c8ea5 dbeb8bf 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 dbeb8bf 38dd789 dbeb8bf 38dd789 dbeb8bf 38dd789 dbeb8bf 38dd789 dbeb8bf 87c8ea5 dbeb8bf 87c8ea5 dbeb8bf b812380 dbeb8bf 87c8ea5 dbeb8bf 87c8ea5 dbeb8bf 87c8ea5 dbeb8bf b812380 dbeb8bf 87c8ea5 dbeb8bf 87c8ea5 dbeb8bf b812380 dbeb8bf 87c8ea5 38dd789 87c8ea5 38dd789 b812380 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 38dd789 87c8ea5 | 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 | import React, { useState, useEffect, useCallback } from 'react';
import { motion, AnimatePresence } from 'framer-motion';
import {
Lightbulb,
AlertTriangle,
AlertCircle,
Info,
ChevronRight,
ChevronDown,
ChevronUp,
Shield,
RefreshCw,
CheckCircle2,
Dumbbell,
Apple,
Moon,
Heart,
Droplets,
TestTube,
Stethoscope,
Sparkles,
XCircle,
} from 'lucide-react';
import { API_BASE_URL } from '../config/api';
import './RecommendationsPanel.css';
// Types
interface Action {
type: string;
text: string;
}
interface Source {
name: string;
url?: string;
}
interface Provenance {
memory?: boolean;
graph?: boolean;
metrics?: boolean;
profile?: boolean;
}
interface Recommendation {
id: string;
title: string;
severity: 'URGENT' | 'WARNING' | 'INFO';
why: string;
actions: Action[];
followup: Action[];
sources: Source[];
provenance?: Provenance;
}
interface RecommendationsResponse {
updated_at: string;
disclaimer: string;
items: Recommendation[];
total_count: number;
urgent_count: number;
warning_count: number;
}
/** Stored API returns priority as "high"|"medium"|"low" and description instead of why */
interface StoredItem {
id: string;
title: string;
description?: string;
priority: string;
actions?: string[] | { type?: string; text: string }[];
evidence?: string[];
provenance?: Provenance;
}
interface RecommendationsPanelProps {
authToken?: string;
apiBaseUrl?: string;
maxInitialDisplay?: number;
refreshTrigger?: number; // Increment this to trigger a refresh (from WebSocket events)
showGenerateButton?: boolean; // Show generate button for generating new recommendations
onRecommendationsGenerated?: () => void; // Callback after generating recommendations
variant?: 'dashboard' | 'page'; // Layout variant
}
// Action type to icon mapping
const actionIcons: Record<string, React.ReactNode> = {
EXERCISE: <Dumbbell size={14} />,
DIET: <Apple size={14} />,
HABIT: <Sparkles size={14} />,
SLEEP: <Moon size={14} />,
STRESS: <Heart size={14} />,
HYDRATION: <Droplets size={14} />,
TEST: <TestTube size={14} />,
DOCTOR: <Stethoscope size={14} />,
GENERAL: <CheckCircle2 size={14} />,
};
// Severity icons
const severityIcons: Record<string, React.ReactNode> = {
URGENT: <AlertCircle size={18} />,
WARNING: <AlertTriangle size={18} />,
INFO: <Info size={18} />,
};
function mapStoredToRecommendation(stored: StoredItem): Recommendation {
const severityMap = { high: 'URGENT' as const, medium: 'WARNING' as const, low: 'INFO' as const };
const severity = severityMap[stored.priority as keyof typeof severityMap] ?? 'INFO';
const rawActions = stored.actions ?? [];
const actions: Action[] = rawActions.map((a) => {
if (typeof a === 'string') return { type: 'GENERAL' as const, text: a };
const text = a?.text != null ? String(a.text) : '';
return { type: ((a?.type as Action['type']) ?? 'GENERAL'), text };
});
return {
id: stored.id,
title: stored.title ?? '',
severity,
why: stored.description ?? '',
actions,
followup: [],
sources: [],
provenance: stored.provenance,
};
}
// Provenance tooltip component - shows data sources
const ProvenanceTooltip: React.FC<{ provenance?: Provenance }> = ({ provenance }) => {
if (!provenance) return null;
const sources = [];
if (provenance.memory) sources.push({ label: 'Memory', icon: '๐ง ', desc: 'Your preferences & facts' });
if (provenance.graph) sources.push({ label: 'Graph', icon: '๐ธ๏ธ', desc: 'Health relationships' });
if (provenance.metrics) sources.push({ label: 'Metrics', icon: '๐', desc: 'Lab values & observations' });
if (provenance.profile) sources.push({ label: 'Profile', icon: '๐ค', desc: 'Your health profile' });
if (sources.length === 0) return null;
return (
<div className="provenance-badge" title="Powered by">
<span className="provenance-trigger">โจ Sources</span>
<div className="provenance-tooltip">
<span className="provenance-title">Recommendation Sources</span>
{sources.map((src, i) => (
<div key={i} className="provenance-item">
<span className="provenance-icon">{src.icon}</span>
<span className="provenance-label">{src.label}</span>
<span className="provenance-desc">{src.desc}</span>
</div>
))}
</div>
</div>
);
};
const RecommendationsPanel: React.FC<RecommendationsPanelProps> = ({
authToken,
apiBaseUrl = API_BASE_URL,
maxInitialDisplay = 3,
refreshTrigger = 0,
showGenerateButton = true,
onRecommendationsGenerated,
variant = 'dashboard',
}) => {
const [recommendations, setRecommendations] = useState<RecommendationsResponse | null>(null);
const [loading, setLoading] = useState(true);
const [generating, setGenerating] = useState(false);
const [error, setError] = useState<string | null>(null);
const [expanded, setExpanded] = useState(false);
const [expandedCards, setExpandedCards] = useState<Set<string>>(new Set());
const fetchRecommendations = useCallback(async () => {
if (!authToken) {
setError('Authentication required');
setLoading(false);
return;
}
setLoading(true);
setError(null);
const headers = {
Authorization: `Bearer ${authToken}`,
'Content-Type': 'application/json',
};
try {
// Prefer stored (Grok-generated) when available; otherwise use rule-based
const [storedRes, ruleRes] = await Promise.all([
fetch(`${apiBaseUrl}/api/recommendations/stored`, { headers }),
fetch(`${apiBaseUrl}/api/recommendations`, { headers }),
]);
if (storedRes.ok) {
const storedData = await storedRes.json();
if (storedData.items?.length > 0) {
const mapped: RecommendationsResponse = {
...storedData,
items: storedData.items.map((item: StoredItem) => mapStoredToRecommendation(item)),
};
setRecommendations(mapped);
return;
}
}
if (!ruleRes.ok) {
throw new Error(`Failed to fetch recommendations: ${ruleRes.status}`);
}
const ruleData: RecommendationsResponse = await ruleRes.json();
setRecommendations(ruleData);
} catch (err) {
setError(err instanceof Error ? err.message : 'Failed to load recommendations');
} finally {
setLoading(false);
}
}, [authToken, apiBaseUrl]);
useEffect(() => {
fetchRecommendations();
}, [fetchRecommendations]);
// Refresh when refreshTrigger changes (triggered by WebSocket events from parent)
useEffect(() => {
if (refreshTrigger > 0) {
fetchRecommendations();
}
}, [refreshTrigger, fetchRecommendations]);
// Generate new recommendations
const handleGenerateRecommendations = async () => {
if (!authToken) return;
setGenerating(true);
setError(null);
try {
const response = await fetch(`${apiBaseUrl}/api/recommendations/generate`, {
method: 'POST',
headers: {
Authorization: `Bearer ${authToken}`,
'Content-Type': 'application/json',
},
});
if (response.ok) {
await fetchRecommendations();
onRecommendationsGenerated?.();
} else {
let message = `Generate failed (${response.status})`;
try {
const body = await response.json();
if (body?.error && typeof body.error === 'string') {
message = body.error;
}
} catch {
// ignore parse error
}
setError(message);
}
} catch (err) {
const message = err instanceof Error ? err.message : 'Failed to generate recommendations';
setError(message);
console.error('Error generating recommendations:', err);
} finally {
setGenerating(false);
}
};
const toggleCardExpanded = (id: string) => {
setExpandedCards(prev => {
const next = new Set(prev);
if (next.has(id)) {
next.delete(id);
} else {
next.add(id);
}
return next;
});
};
const displayedItems = recommendations?.items.slice(
0,
expanded ? undefined : maxInitialDisplay
) || [];
const hasMore = (recommendations?.items.length || 0) > maxInitialDisplay;
if (loading) {
return (
<div className="recommendations-panel">
<div className="recommendations-loading">
<div className="spinner" />
<p>Loading personalized recommendations...</p>
</div>
</div>
);
}
if (error) {
return (
<div className="recommendations-panel">
<div className="recommendations-error">
<XCircle size={48} />
<p>{error}</p>
<button className="retry-button" onClick={fetchRecommendations}>
<RefreshCw size={16} />
Retry
</button>
</div>
</div>
);
}
if (!recommendations || recommendations.items.length === 0) {
return (
<div className={`recommendations-panel ${variant === 'page' ? 'recommendations-panel-page' : ''}`}>
<div className="recommendations-header">
<h2>
<Lightbulb size={22} />
Recommendations
</h2>
{showGenerateButton && (
<button
className="recommendations-generate-btn"
onClick={handleGenerateRecommendations}
disabled={generating}
>
{generating ? (
<><RefreshCw size={16} className="spinning" /> Generating...</>
) : (
<><Sparkles size={16} /> Generate</>)}
</button>
)}
</div>
<div className="recommendations-empty">
<Sparkles size={48} />
<h3>No recommendations yet</h3>
<p>
Generate personalized recommendations based on your health profile and reports.
</p>
{showGenerateButton && (
<button
className="recommendations-generate-btn recommendations-generate-btn-lg"
onClick={handleGenerateRecommendations}
disabled={generating}
>
{generating ? (
<><RefreshCw size={18} className="spinning" /> Generating...</>
) : (
<><Sparkles size={18} /> Generate Recommendations</>)}
</button>
)}
</div>
<div className="recommendations-disclaimer">
<Shield size={18} />
<p>{recommendations?.disclaimer || 'This is wellness guidance, not medical advice.'}</p>
</div>
</div>
);
}
return (
<div className={`recommendations-panel ${variant === 'page' ? 'recommendations-panel-page' : ''}`}>
<div className="recommendations-header">
<div className="recommendations-header-left">
<h2>
<Lightbulb size={22} />
Recommendations
</h2>
{showGenerateButton && (
<button
className="recommendations-generate-btn"
onClick={handleGenerateRecommendations}
disabled={generating}
>
{generating ? (
<><RefreshCw size={16} className="spinning" /> Generating...</>
) : (
<><RefreshCw size={16} /> Refresh</>)}
</button>
)}
</div>
<div className="recommendations-badges">
{recommendations.urgent_count > 0 && (
<span className="badge urgent">
<AlertCircle size={14} />
{recommendations.urgent_count} Urgent
</span>
)}
{recommendations.warning_count > 0 && (
<span className="badge warning">
<AlertTriangle size={14} />
{recommendations.warning_count} Attention
</span>
)}
{recommendations.total_count - recommendations.urgent_count - recommendations.warning_count > 0 && (
<span className="badge info">
<Info size={14} />
{recommendations.total_count - recommendations.urgent_count - recommendations.warning_count} Tips
</span>
)}
</div>
</div>
<div className="recommendations-list">
<AnimatePresence mode="popLayout">
{displayedItems.map((item, index) => (
<motion.div
key={item.id}
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: -20 }}
transition={{ delay: index * 0.05 }}
className={`recommendation-card ${(item.severity ?? 'info').toLowerCase()}`}
>
<div className="recommendation-header">
<h3 className="recommendation-title">{item.title ?? ''}</h3>
<div className="recommendation-header-right">
<ProvenanceTooltip provenance={item.provenance} />
<span className={`severity-tag ${(item.severity ?? 'info').toLowerCase()}`}>
{severityIcons[item.severity ?? 'INFO']}
{item.severity ?? 'INFO'}
</span>
</div>
</div>
<p className="recommendation-why">{item.why}</p>
<div className="recommendation-actions">
<h4>Suggested Actions</h4>
<div className="actions-list">
{(item.actions ?? []).slice(0, expandedCards.has(item.id) ? undefined : 3).map((action, idx) => (
<span key={idx} className={`action-tag ${(action.type ?? 'general').toLowerCase()}`}>
{actionIcons[action.type] || <ChevronRight size={14} />}
{action.text ?? ''}
</span>
))}
{(item.actions ?? []).length > 3 && !expandedCards.has(item.id) && (
<button
className="action-tag"
onClick={() => toggleCardExpanded(item.id)}
style={{ cursor: 'pointer', background: '#f0f0f0' }}
>
+{(item.actions ?? []).length - 3} more
</button>
)}
</div>
</div>
{(item.followup ?? []).length > 0 && (
<div className="recommendation-followup">
<h4>Follow-up</h4>
<div className="followup-list">
{(item.followup ?? []).map((follow, idx) => (
<div key={idx} className="followup-item">
{actionIcons[follow.type] || <ChevronRight size={14} />}
{follow.text ?? ''}
</div>
))}
</div>
</div>
)}
{(item.sources ?? []).length > 0 && expandedCards.has(item.id) && (
<div className="recommendation-sources">
<div className="sources-list">
{(item.sources ?? []).map((source, idx) => (
source.url ? (
<a
key={idx}
href={source.url}
target="_blank"
rel="noopener noreferrer"
className="source-link"
>
๐ {source.name ?? 'Source'}
</a>
) : (
<span key={idx} className="source-link">
๐ {source.name ?? 'Source'}
</span>
)
))}
</div>
</div>
)}
{((item.actions ?? []).length > 3 || (item.sources ?? []).length > 0) && (
<button
className="expand-toggle"
onClick={() => toggleCardExpanded(item.id)}
style={{ marginTop: '12px' }}
>
{expandedCards.has(item.id) ? (
<>
<ChevronUp size={16} />
Show less
</>
) : (
<>
<ChevronDown size={16} />
Show more details
</>
)}
</button>
)}
</motion.div>
))}
</AnimatePresence>
</div>
{hasMore && (
<button className="expand-toggle" onClick={() => setExpanded(!expanded)}>
{expanded ? (
<>
<ChevronUp size={16} />
Show fewer recommendations
</>
) : (
<>
<ChevronDown size={16} />
Show {recommendations.items.length - maxInitialDisplay} more recommendations
</>
)}
</button>
)}
<div className="recommendations-disclaimer">
<Shield size={18} />
<p>{recommendations.disclaimer}</p>
</div>
</div>
);
};
export default RecommendationsPanel;
|