2da62a4861
- Add ToastProvider (global MUI Snackbar stack) + toastStore (Zustand) - Add ConfirmDialog reusable component for destructive actions - Wire toast feedback to all async mutations: review status, AI output status, match approval, shortlist add/remove/title/finalize, signal review actions - Fix dead UserMenu buttons (Profil, Einstellungen) — show info toast - Migrate local Snackbar instances in AddToShortlistDialog and FutureSignalDetailPanel to global toast store Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
264 lines
11 KiB
TypeScript
264 lines
11 KiB
TypeScript
import { Box, Button, Chip, CircularProgress, Divider, IconButton, LinearProgress, Paper, Typography } from '@mui/material'
|
|
import { X } from 'lucide-react'
|
|
import { useState } from 'react'
|
|
import { SignalTypeBadge } from './SignalTypeBadge'
|
|
import { SensitivityBadge } from './SensitivityBadge'
|
|
import { SignalReviewStatusBadge } from './SignalReviewStatusBadge'
|
|
import { FutureSignalDisclaimer } from './FutureSignalDisclaimer'
|
|
import { useUpdateSignalReviewStatus } from '../../hooks/useFutureSignals'
|
|
import { useShortlistStore } from '../../stores/shortlistStore'
|
|
import { useToastStore } from '../../stores/toastStore'
|
|
import { reviewService } from '../../services/reviewService'
|
|
import { ReviewStatus } from '../../domain/enums'
|
|
import type { FutureSignal } from '../../domain/futureSignal'
|
|
|
|
const SOURCE_LABELS: Record<string, string> = {
|
|
PRESS: 'Pressebericht',
|
|
CONSTRUCTION_PERMIT: 'Baubewilligung',
|
|
JOB_POSTING: 'Stelleninserat',
|
|
COMPANY_REPORT: 'Geschäftsbericht',
|
|
MARKET_DATA: 'Marktdaten',
|
|
MANUAL: 'Manuell erfasst',
|
|
}
|
|
|
|
const CREDIBILITY_META: Record<string, { label: string; color: string }> = {
|
|
HIGH: { label: 'Hoch', color: '#1a7a4a' },
|
|
MEDIUM: { label: 'Mittel', color: '#d97706' },
|
|
LOW: { label: 'Niedrig', color: '#c0392b' },
|
|
}
|
|
|
|
function BarRow({ label, value }: { label: string; value: number }) {
|
|
const color = value >= 0.75 ? '#1a7a4a' : value >= 0.55 ? '#d97706' : '#c0392b'
|
|
return (
|
|
<Box sx={{ mb: 1.5 }}>
|
|
<Box sx={{ display: 'flex', justifyContent: 'space-between', mb: 0.25 }}>
|
|
<Typography variant="caption" color="text.secondary">{label}</Typography>
|
|
<Typography variant="caption" sx={{ fontWeight: 700, color }}>{Math.round(value * 100)}%</Typography>
|
|
</Box>
|
|
<LinearProgress
|
|
variant="determinate"
|
|
value={value * 100}
|
|
sx={{ height: 5, borderRadius: 2, bgcolor: '#f1f5f9', '& .MuiLinearProgress-bar': { bgcolor: color } }}
|
|
/>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
interface Props {
|
|
signal: FutureSignal
|
|
onClose: () => void
|
|
}
|
|
|
|
export function FutureSignalDetailPanel({ signal, onClose }: Props) {
|
|
const updateStatus = useUpdateSignalReviewStatus()
|
|
const { openAddDialog } = useShortlistStore()
|
|
const showToast = useToastStore((s) => s.showToast)
|
|
const [reviewTaskSent, setReviewTaskSent] = useState(false)
|
|
|
|
const reviewStatus = signal.reviewStatus ?? ReviewStatus.UNREVIEWED
|
|
const isRejected = reviewStatus === ReviewStatus.REJECTED
|
|
const isApproved = reviewStatus === ReviewStatus.APPROVED
|
|
|
|
const STATUS_TOAST: Record<string, string> = {
|
|
IN_REVIEW: 'Signal zur Prüfung markiert.',
|
|
APPROVED: 'Signal genehmigt.',
|
|
REJECTED: 'Signal abgelehnt.',
|
|
FLAGGED: 'Signal markiert.',
|
|
}
|
|
|
|
async function handleStatus(status: typeof ReviewStatus[keyof typeof ReviewStatus]) {
|
|
try {
|
|
await updateStatus.mutateAsync({ id: signal.id, status })
|
|
showToast(STATUS_TOAST[status] ?? 'Status aktualisiert.')
|
|
} catch {
|
|
showToast('Statusänderung fehlgeschlagen.', 'error')
|
|
}
|
|
}
|
|
|
|
async function handleSendReview() {
|
|
try {
|
|
await reviewService.createReviewTask(signal.id)
|
|
setReviewTaskSent(true)
|
|
showToast('Prüfungsaufgabe erstellt.')
|
|
} catch {
|
|
showToast('Prüfungsaufgabe konnte nicht erstellt werden.', 'error')
|
|
}
|
|
}
|
|
|
|
function handleShortlist() {
|
|
openAddDialog({
|
|
resultId: signal.id,
|
|
resultType: 'FUTURE_AVAILABILITY',
|
|
title: signal.title ?? signal.companyName ?? signal.locationHint,
|
|
matchScore: Math.round(signal.confidenceScore * 100),
|
|
confidenceScore: signal.confidenceScore,
|
|
sourceLabel: SOURCE_LABELS[signal.source.type] ?? signal.source.type,
|
|
addedBy: 'admin@ideal-sharing.ch',
|
|
})
|
|
}
|
|
|
|
const credMeta = CREDIBILITY_META[signal.source.credibility] ?? { label: signal.source.credibility, color: '#64748b' }
|
|
|
|
return (
|
|
<Box sx={{ display: 'flex', flexDirection: 'column', height: '100%', overflow: 'hidden' }}>
|
|
{/* Header */}
|
|
<Box sx={{ px: 2.5, py: 2, borderBottom: '1px solid #e2e8f0', bgcolor: 'white', flexShrink: 0 }}>
|
|
<Box sx={{ display: 'flex', alignItems: 'flex-start', justifyContent: 'space-between', mb: 1 }}>
|
|
<Box sx={{ flex: 1, mr: 1 }}>
|
|
<Typography variant="subtitle1" sx={{ fontWeight: 700, lineHeight: 1.3 }}>
|
|
{signal.title ?? signal.companyName ?? signal.locationHint}
|
|
</Typography>
|
|
{(signal.title || signal.companyName) && (
|
|
<Typography variant="caption" color="text.secondary">{signal.locationHint}</Typography>
|
|
)}
|
|
</Box>
|
|
<IconButton size="small" onClick={onClose} sx={{ color: '#94a3b8', mt: -0.5 }}>
|
|
<X size={16} />
|
|
</IconButton>
|
|
</Box>
|
|
<Box sx={{ display: 'flex', flexWrap: 'wrap', gap: 0.5 }}>
|
|
<SignalTypeBadge type={signal.signalType} />
|
|
<SensitivityBadge level={signal.sensitivityLevel} />
|
|
<SignalReviewStatusBadge status={signal.reviewStatus} />
|
|
{signal.isVerified && (
|
|
<Chip label="Verifiziert" size="small" sx={{ bgcolor: '#1a7a4a', color: 'white', fontSize: 10 }} />
|
|
)}
|
|
</Box>
|
|
</Box>
|
|
|
|
{/* Body */}
|
|
<Box sx={{ flex: 1, overflowY: 'auto', p: 2.5 }}>
|
|
<FutureSignalDisclaimer />
|
|
|
|
{/* Probability + confidence */}
|
|
<BarRow label="Wahrscheinlichkeit" value={signal.probability} />
|
|
<BarRow label="Konfidenz" value={signal.confidenceScore} />
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
{/* Meta */}
|
|
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 0.75, mb: 1.5 }}>
|
|
<Box sx={{ display: 'flex', gap: 1 }}>
|
|
<Typography variant="caption" color="text.secondary" sx={{ minWidth: 140 }}>Zeithorizont</Typography>
|
|
<Typography variant="caption">~{signal.timeHorizonMonths} Monate</Typography>
|
|
</Box>
|
|
{signal.areaSqmEstimate && (
|
|
<Box sx={{ display: 'flex', gap: 1 }}>
|
|
<Typography variant="caption" color="text.secondary" sx={{ minWidth: 140 }}>Geschätzte Fläche</Typography>
|
|
<Typography variant="caption">~{signal.areaSqmEstimate.toLocaleString('de-CH')} m²</Typography>
|
|
</Box>
|
|
)}
|
|
{signal.companyName && (
|
|
<Box sx={{ display: 'flex', gap: 1 }}>
|
|
<Typography variant="caption" color="text.secondary" sx={{ minWidth: 140 }}>Unternehmen</Typography>
|
|
<Typography variant="caption">{signal.companyName}</Typography>
|
|
</Box>
|
|
)}
|
|
{signal.riskLevel && (
|
|
<Box sx={{ display: 'flex', gap: 1 }}>
|
|
<Typography variant="caption" color="text.secondary" sx={{ minWidth: 140 }}>Risikoniveau</Typography>
|
|
<Typography variant="caption">{signal.riskLevel}</Typography>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
{/* Source */}
|
|
<Typography variant="caption" sx={{ fontWeight: 600, display: 'block', mb: 0.75 }}>Quelle</Typography>
|
|
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 0.5, mb: 1.5 }}>
|
|
<Box sx={{ display: 'flex', gap: 1 }}>
|
|
<Typography variant="caption" color="text.secondary" sx={{ minWidth: 140 }}>Typ</Typography>
|
|
<Typography variant="caption">{SOURCE_LABELS[signal.source.type] ?? signal.source.type}</Typography>
|
|
</Box>
|
|
<Box sx={{ display: 'flex', gap: 1, alignItems: 'center' }}>
|
|
<Typography variant="caption" color="text.secondary" sx={{ minWidth: 140 }}>Glaubwürdigkeit</Typography>
|
|
<Chip label={credMeta.label} size="small" sx={{ bgcolor: credMeta.color, color: 'white', fontSize: 10, height: 18 }} />
|
|
</Box>
|
|
{signal.source.publishedAt && (
|
|
<Box sx={{ display: 'flex', gap: 1 }}>
|
|
<Typography variant="caption" color="text.secondary" sx={{ minWidth: 140 }}>Veröffentlicht</Typography>
|
|
<Typography variant="caption">{signal.source.publishedAt}</Typography>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
|
|
{/* Evidence */}
|
|
{signal.evidence?.summary && (
|
|
<>
|
|
<Divider sx={{ my: 1.5 }} />
|
|
<Typography variant="caption" sx={{ fontWeight: 600, display: 'block', mb: 0.75 }}>Evidenz</Typography>
|
|
<Paper variant="outlined" sx={{ p: 1.5, bgcolor: '#f8fafc' }}>
|
|
<Typography variant="body2" color="text.secondary">{signal.evidence.summary}</Typography>
|
|
</Paper>
|
|
</>
|
|
)}
|
|
|
|
{/* Market indicator */}
|
|
{signal.marketIndicator && (
|
|
<>
|
|
<Divider sx={{ my: 1.5 }} />
|
|
<Typography variant="caption" sx={{ fontWeight: 600, display: 'block', mb: 0.5 }}>Marktindikator</Typography>
|
|
<Typography variant="body2" color="text.secondary">{signal.marketIndicator}</Typography>
|
|
</>
|
|
)}
|
|
|
|
<Divider sx={{ my: 1.5 }} />
|
|
|
|
{/* Actions */}
|
|
<Typography variant="caption" sx={{ fontWeight: 600, display: 'block', mb: 1 }}>Aktionen</Typography>
|
|
<Box sx={{ display: 'flex', flexDirection: 'column', gap: 0.75 }}>
|
|
{reviewStatus === ReviewStatus.UNREVIEWED && (
|
|
<Button
|
|
fullWidth size="small" variant="outlined"
|
|
disabled={updateStatus.isPending}
|
|
onClick={() => handleStatus(ReviewStatus.IN_REVIEW)}
|
|
sx={{ justifyContent: 'flex-start' }}
|
|
>
|
|
Verfolgen (In Prüfung setzen)
|
|
</Button>
|
|
)}
|
|
{!isRejected && !reviewTaskSent && (
|
|
<Button
|
|
fullWidth size="small" variant="outlined"
|
|
onClick={handleSendReview}
|
|
sx={{ justifyContent: 'flex-start', color: '#d97706', borderColor: '#d97706' }}
|
|
>
|
|
Zur Prüfung senden
|
|
</Button>
|
|
)}
|
|
{(reviewStatus === ReviewStatus.IN_REVIEW || reviewStatus === ReviewStatus.FLAGGED) && !isApproved && (
|
|
<Button
|
|
fullWidth size="small" variant="contained"
|
|
disabled={updateStatus.isPending}
|
|
onClick={() => handleStatus(ReviewStatus.APPROVED)}
|
|
sx={{ bgcolor: '#1a7a4a', '&:hover': { bgcolor: '#15643c' }, justifyContent: 'flex-start' }}
|
|
endIcon={updateStatus.isPending ? <CircularProgress size={14} color="inherit" /> : undefined}
|
|
>
|
|
Genehmigen
|
|
</Button>
|
|
)}
|
|
{!isRejected && (
|
|
<Button
|
|
fullWidth size="small" variant="outlined"
|
|
disabled={updateStatus.isPending}
|
|
onClick={() => handleStatus(ReviewStatus.REJECTED)}
|
|
sx={{ justifyContent: 'flex-start', color: '#c0392b', borderColor: '#c0392b' }}
|
|
>
|
|
Ablehnen
|
|
</Button>
|
|
)}
|
|
<Button
|
|
fullWidth size="small" variant="outlined"
|
|
onClick={handleShortlist}
|
|
sx={{ justifyContent: 'flex-start' }}
|
|
>
|
|
Zu Shortlist hinzufügen
|
|
</Button>
|
|
</Box>
|
|
</Box>
|
|
|
|
</Box>
|
|
)
|
|
}
|