feat: complete dashboard widgets, fix tooltips, integrate chatbot, and update docs

This commit is contained in:
Satyam
2026-02-01 16:00:17 +05:30
parent cfc5c943e5
commit 719172372e
12 changed files with 1269 additions and 296 deletions
@@ -0,0 +1,82 @@
import React, { useMemo } from 'react';
import { ScatterChart, Scatter, XAxis, YAxis, Tooltip, ResponsiveContainer, ZAxis } from 'recharts';
import { SpotlightCard } from '../SpotlightCard';
import { InfoTooltip } from '../InfoTooltip';
const CustomTooltip = ({ active, payload }) => {
if (active && payload && payload.length) {
const data = payload[0].payload;
return (
<div className="bg-zinc-900/90 border border-zinc-700/50 p-3 rounded-lg shadow-xl backdrop-blur-md z-50">
<p className="text-zinc-100 font-bold mb-1">{data.address}</p>
<p className="text-zinc-400 text-xs">Built: {data.year}</p>
<p className="text-emerald-400 text-xs">Value: ${data.value.toLocaleString()}</p>
</div>
);
}
return null;
};
export const GoldenLeadsScatter = ({ properties }) => {
const data = useMemo(() => {
return properties.map(p => ({
x: p.propertyData.yearBuilt,
y: p.propertyData.currentEstimatedMarketValue,
z: 100, // bubble size
address: p.propertyData.propertyAddress.split(',')[0],
year: p.propertyData.yearBuilt,
value: p.propertyData.currentEstimatedMarketValue,
isGolden: p.propertyData.yearBuilt < 2000 && p.propertyData.currentEstimatedMarketValue > 400000
}));
}, [properties]);
return (
<SpotlightCard className="h-full flex flex-col">
<div className="p-6 flex-1 flex flex-col">
<div className="mb-4 flex justify-between items-start">
<div>
<h3 className="text-lg font-bold text-zinc-900 dark:text-white flex items-center">
Golden Leads
<InfoTooltip text="High-value properties built before 2000. These are prime candidates for renovation and modernization." />
</h3>
<p className="text-xs text-zinc-500 dark:text-zinc-400">High Value + Older Homes</p>
</div>
<div className="bg-amber-500/10 border border-amber-500/20 text-amber-600 dark:text-amber-400 text-[10px] px-2 py-1 rounded font-bold uppercase tracking-wider">
Opportunity Zone
</div>
</div>
<div className="flex-1 w-full min-h-[200px]">
<ResponsiveContainer width="100%" height="100%">
<ScatterChart
margin={{ top: 20, right: 20, bottom: 20, left: 0 }}
>
<XAxis
type="number"
dataKey="x"
name="Year Built"
domain={['auto', 'auto']}
tick={{ fill: '#71717a', fontSize: 10 }}
tickCount={5}
axisLine={false}
tickLine={false}
/>
<YAxis
type="number"
dataKey="y"
name="Value"
unit="$"
tick={{ fill: '#71717a', fontSize: 10 }}
tickFormatter={(value) => `${value / 1000}k`}
axisLine={false}
tickLine={false}
/>
<Tooltip content={<CustomTooltip />} cursor={{ strokeDasharray: '3 3' }} />
<Scatter name="Properties" data={data} fill="#eab308" shape="circle" />
</ScatterChart>
</ResponsiveContainer>
</div>
</div>
</SpotlightCard>
);
};