feat: clickable NeedMatchCard in Matchability tab navigates to Anfragencenter

Clicking a need card in the Matchability tab pre-selects the property
and navigates to Anfragencenter → Latente Anfragen tab. Angebot creation
lives here (demand-side), not in Marktsignale. NeedMatchCard gains
onClick prop with navy hover + shadow treatment.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Sutter
2026-05-19 16:05:18 +02:00
parent 18f4b2b37a
commit 0651333030
3 changed files with 27 additions and 35 deletions
+6 -3
View File
@@ -4,6 +4,7 @@ import type { PropertyNeedMatch } from '../../domain/match'
interface Props {
match: PropertyNeedMatch
onClick?: () => void
}
function ScoreBadge({ score }: { score: number }) {
@@ -43,17 +44,19 @@ function InfoRow({ icon, label, value }: { icon: React.ReactNode; label: string;
)
}
export function NeedMatchCard({ match }: Props) {
export function NeedMatchCard({ match, onClick }: Props) {
return (
<Card
elevation={0}
onClick={onClick}
sx={{
p: 2,
mb: 1.5,
border: '1px solid #e2e8f0',
borderRadius: 1.5,
'&:hover': { borderColor: '#cbd5e1', bgcolor: '#fafafa' },
transition: 'border-color 0.15s, background-color 0.15s',
cursor: onClick ? 'pointer' : 'default',
'&:hover': onClick ? { borderColor: '#1e3a5f', bgcolor: '#f8fafc', boxShadow: '0 2px 8px rgba(30,58,95,0.08)' } : { borderColor: '#cbd5e1', bgcolor: '#fafafa' },
transition: 'border-color 0.15s, background-color 0.15s, box-shadow 0.15s',
}}
>
<Box sx={{ display: 'flex', alignItems: 'flex-start', gap: 1.5 }}>
+11 -2
View File
@@ -1,4 +1,5 @@
import { useEffect, useState } from 'react'
import { useNavigate } from 'react-router'
import {
Alert,
Box,
@@ -15,6 +16,7 @@ import {
} from '@mui/material'
import { useQueryClient } from '@tanstack/react-query'
import { Edit2, Save, X } from 'lucide-react'
import { useOfferWizardStore } from '../../stores/offerWizardStore'
import { PropertyMap } from '../shared'
import { NeedMatchCard } from './NeedMatchCard'
import { PropertyMarketSignalsTab } from './PropertyMarketSignalsTab'
@@ -238,6 +240,8 @@ function OverviewPanel({ p, editing, draft, onDraftChange }: OverviewPanelProps)
function MatchabilityTabPanel({ propertyId }: { propertyId: string }) {
const [matches, setMatches] = useState<PropertyNeedMatch[]>([])
const [loading, setLoading] = useState(true)
const navigate = useNavigate()
const setSelectedProperties = useOfferWizardStore(s => s.setSelectedProperties)
useEffect(() => {
let cancelled = false
@@ -248,6 +252,11 @@ function MatchabilityTabPanel({ propertyId }: { propertyId: string }) {
return () => { cancelled = true }
}, [propertyId])
function handleNeedCardClick() {
setSelectedProperties([propertyId])
navigate('/supply/anfragen', { state: { tab: 1 } })
}
if (loading) {
return (
<Box sx={{ p: 3, display: 'flex', justifyContent: 'center' }}>
@@ -263,7 +272,7 @@ function MatchabilityTabPanel({ propertyId }: { propertyId: string }) {
Matchability
</Typography>
<Typography variant="caption" color="text.secondary">
Bedarfsprofile mit 80% Match-Score für dieses Objekt
Bedarfsprofile mit 80% Match-Score Karte klicken um Angebot zu erstellen
</Typography>
</Box>
{matches.length === 0 ? (
@@ -271,7 +280,7 @@ function MatchabilityTabPanel({ propertyId }: { propertyId: string }) {
Keine Bedarfsprofile mit 80% Match-Score für dieses Objekt gefunden.
</Alert>
) : (
matches.map(m => <NeedMatchCard key={m.matchId} match={m} />)
matches.map(m => <NeedMatchCard key={m.matchId} match={m} onClick={handleNeedCardClick} />)
)}
</Box>
)
@@ -1,9 +1,7 @@
import { useEffect, useRef, useState } from 'react'
import { useNavigate } from 'react-router'
import { Alert, Box, Button, Chip, CircularProgress, Dialog, DialogContent, DialogTitle, LinearProgress, Typography } from '@mui/material'
import { BarChart2, Building2, CheckCircle, Download, FileText, Lightbulb, Send, TrendingUp } from 'lucide-react'
import { BarChart2, Building2, CheckCircle, Download, FileText, Lightbulb, TrendingUp } from 'lucide-react'
import { marketReportService } from '../../services/marketReportService'
import { useOfferWizardStore } from '../../stores/offerWizardStore'
import type { MarketReport, PropertyMarketSignal, SignalCategory } from '../../domain/marketReport'
interface Props {
@@ -222,13 +220,6 @@ export function PropertyMarketSignalsTab({ propertyId }: Props) {
const [report, setReport] = useState<MarketReport | null>(null)
const [loading, setLoading] = useState(true)
const [dialogOpen, setDialogOpen] = useState(false)
const navigate = useNavigate()
const setSelectedProperties = useOfferWizardStore(s => s.setSelectedProperties)
function handleAngebotErstellen() {
setSelectedProperties([propertyId])
navigate('/supply/anfragen', { state: { tab: 1 } })
}
useEffect(() => {
let cancelled = false
@@ -260,26 +251,15 @@ export function PropertyMarketSignalsTab({ propertyId }: Props) {
</Typography>
)}
</Box>
<Box sx={{ display: 'flex', gap: 1 }}>
<Button
variant="contained"
size="small"
startIcon={<Send size={14} />}
onClick={handleAngebotErstellen}
sx={{ textTransform: 'none', fontSize: '0.8125rem', bgcolor: '#1e3a5f', '&:hover': { bgcolor: '#16304d' } }}
>
Angebot erstellen
</Button>
<Button
variant="outlined"
size="small"
startIcon={<FileText size={14} />}
onClick={() => setDialogOpen(true)}
sx={{ textTransform: 'none', fontSize: '0.8125rem' }}
>
Bericht erstellen
</Button>
</Box>
<Button
variant="outlined"
size="small"
startIcon={<FileText size={14} />}
onClick={() => setDialogOpen(true)}
sx={{ textTransform: 'none', fontSize: '0.8125rem' }}
>
Bericht erstellen
</Button>
</Box>
{!report ? (