File size: 10,321 Bytes
78d0e31 |
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 |
"use client"
import type React from "react"
import { useEffect, useState } from "react"
import { motion } from "framer-motion"
import { Heart, Shield, Users, Globe, Stethoscope, HandHeart, Award, TrendingUp } from "lucide-react"
interface CommunityStats {
healers: {
total: number
verified: number
pending: number
specializations: {
nurses: number
doctors: number
midwives: number
pharmacists: number
}
}
guardians: {
total: number
active: number
totalContributions: number
}
regions: {
westAfrica: number
eastAfrica: number
southernAfrica: number
northAfrica: number
centralAfrica: number
}
impact: {
totalPatientsServed: number
communitiesReached: number
donationsReceived: number
}
growth: {
thisMonth: number
thisWeek: number
}
lastUpdated: string
}
interface BubbleData {
id: string
label: string
count: number
icon: React.ElementType
color: string
gradient: string
size: "small" | "medium" | "large"
position: { x: number; y: number }
delay: number
}
export function CommunityBubbles() {
const [stats, setStats] = useState<CommunityStats | null>(null)
const [loading, setLoading] = useState(true)
const [bubbles, setBubbles] = useState<BubbleData[]>([])
useEffect(() => {
const fetchStats = async () => {
try {
const response = await fetch("/api/community-stats")
if (response.ok) {
const data = await response.json()
setStats(data)
generateBubbles(data)
}
} catch (error) {
console.error("Error fetching community stats:", error)
} finally {
setLoading(false)
}
}
fetchStats()
const interval = setInterval(fetchStats, 30000) // Update every 30 seconds
return () => clearInterval(interval)
}, [])
const generateBubbles = (stats: CommunityStats) => {
const bubbleConfigs: Omit<BubbleData, "position" | "delay">[] = [
{
id: "healers",
label: "Healers",
count: stats.healers.total,
icon: Stethoscope,
color: "#00C853",
gradient: "from-green-400 to-emerald-600",
size: "large",
},
{
id: "verified-healers",
label: "Verified",
count: stats.healers.verified,
icon: Award,
color: "#FFD600",
gradient: "from-yellow-400 to-amber-600",
size: "medium",
},
{
id: "guardians",
label: "Guardians",
count: stats.guardians.total,
icon: Shield,
color: "#1E88E5",
gradient: "from-blue-400 to-indigo-600",
size: "large",
},
{
id: "active-guardians",
label: "Active",
count: stats.guardians.active,
icon: HandHeart,
color: "#FF6B00",
gradient: "from-orange-400 to-red-500",
size: "medium",
},
{
id: "nurses",
label: "Nurses",
count: stats.healers.specializations.nurses,
icon: Heart,
color: "#E91E63",
gradient: "from-pink-400 to-rose-600",
size: "medium",
},
{
id: "doctors",
label: "Doctors",
count: stats.healers.specializations.doctors,
icon: Users,
color: "#9C27B0",
gradient: "from-purple-400 to-violet-600",
size: "medium",
},
{
id: "west-africa",
label: "West Africa",
count: stats.regions.westAfrica,
icon: Globe,
color: "#FF9800",
gradient: "from-amber-400 to-orange-600",
size: "small",
},
{
id: "east-africa",
label: "East Africa",
count: stats.regions.eastAfrica,
icon: Globe,
color: "#4CAF50",
gradient: "from-green-400 to-teal-600",
size: "small",
},
{
id: "southern-africa",
label: "Southern Africa",
count: stats.regions.southernAfrica,
icon: Globe,
color: "#2196F3",
gradient: "from-blue-400 to-cyan-600",
size: "small",
},
{
id: "growth-month",
label: "New This Month",
count: stats.growth.thisMonth,
icon: TrendingUp,
color: "#00BCD4",
gradient: "from-cyan-400 to-teal-600",
size: "small",
},
]
// Generate random positions for bubbles
const generatedBubbles = bubbleConfigs.map((config, index) => ({
...config,
position: {
x: Math.random() * 80 + 10, // 10% to 90% of container width
y: Math.random() * 70 + 15, // 15% to 85% of container height
},
delay: index * 0.2,
}))
setBubbles(generatedBubbles)
}
const getBubbleSize = (size: "small" | "medium" | "large") => {
switch (size) {
case "small":
return "w-16 h-16 md:w-20 md:h-20"
case "medium":
return "w-20 h-20 md:w-24 md:h-24"
case "large":
return "w-24 h-24 md:w-28 md:h-28"
}
}
const getTextSize = (size: "small" | "medium" | "large") => {
switch (size) {
case "small":
return "text-xs"
case "medium":
return "text-sm"
case "large":
return "text-base"
}
}
if (loading) {
return (
<div className="relative w-full h-96 bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900 rounded-2xl overflow-hidden">
<div className="absolute inset-0 flex items-center justify-center">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-flame"></div>
</div>
</div>
)
}
return (
<div className="relative w-full h-96 bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900 rounded-2xl overflow-hidden">
{/* Background pattern */}
<div className="absolute inset-0 opacity-10">
<div className="absolute inset-0 bg-[radial-gradient(circle_at_50%_50%,rgba(255,78,0,0.3),transparent_50%)]"></div>
<div className="absolute inset-0 bg-[radial-gradient(circle_at_80%_20%,rgba(0,255,160,0.2),transparent_50%)]"></div>
<div className="absolute inset-0 bg-[radial-gradient(circle_at_20%_80%,rgba(255,0,200,0.2),transparent_50%)]"></div>
</div>
{/* Title */}
<div className="absolute top-4 left-6 z-10">
<h3 className="text-2xl font-bold text-white mb-1">Flameborn Community</h3>
<p className="text-sm text-gray-300">The Soul & Codex of Everyone</p>
</div>
{/* Animated bubbles */}
{bubbles.map((bubble) => {
const Icon = bubble.icon
return (
<motion.div
key={bubble.id}
className={`absolute ${getBubbleSize(bubble.size)} cursor-pointer group`}
style={{
left: `${bubble.position.x}%`,
top: `${bubble.position.y}%`,
}}
initial={{ scale: 0, opacity: 0 }}
animate={{ scale: 1, opacity: 1 }}
transition={{
delay: bubble.delay,
duration: 0.6,
type: "spring",
stiffness: 100,
}}
whileHover={{ scale: 1.1, zIndex: 10 }}
whileTap={{ scale: 0.95 }}
>
{/* Bubble container */}
<motion.div
className={`w-full h-full rounded-full bg-gradient-to-br ${bubble.gradient} shadow-lg border border-white/20 flex flex-col items-center justify-center text-white relative overflow-hidden`}
animate={{
y: [0, -8, 0],
rotate: [0, 2, -2, 0],
}}
transition={{
duration: 4 + Math.random() * 2,
repeat: Number.POSITIVE_INFINITY,
ease: "easeInOut",
}}
>
{/* Glow effect */}
<div
className="absolute inset-0 rounded-full opacity-0 group-hover:opacity-30 transition-opacity duration-300"
style={{
background: `radial-gradient(circle, ${bubble.color}40, transparent)`,
filter: "blur(8px)",
}}
/>
{/* Icon */}
<Icon className="w-6 h-6 md:w-8 md:h-8 mb-1" />
{/* Count */}
<motion.div
className={`font-bold ${getTextSize(bubble.size)} leading-none`}
key={bubble.count} // Re-animate when count changes
initial={{ scale: 1.2, opacity: 0 }}
animate={{ scale: 1, opacity: 1 }}
transition={{ duration: 0.3 }}
>
{bubble.count.toLocaleString()}
</motion.div>
{/* Label */}
<div className={`${getTextSize(bubble.size)} opacity-90 text-center leading-tight`}>{bubble.label}</div>
{/* Pulse effect for new additions */}
{bubble.id === "growth-month" && bubble.count > 0 && (
<motion.div
className="absolute inset-0 rounded-full border-2 border-white"
animate={{
scale: [1, 1.2, 1],
opacity: [0.8, 0, 0.8],
}}
transition={{
duration: 2,
repeat: Number.POSITIVE_INFINITY,
}}
/>
)}
</motion.div>
{/* Tooltip on hover */}
<div className="absolute -top-12 left-1/2 transform -translate-x-1/2 bg-black/80 text-white text-xs px-2 py-1 rounded opacity-0 group-hover:opacity-100 transition-opacity duration-200 whitespace-nowrap z-20">
{bubble.label}: {bubble.count.toLocaleString()}
</div>
</motion.div>
)
})}
{/* Stats summary in corner */}
{stats && (
<div className="absolute bottom-4 right-6 text-right text-white/80">
<div className="text-sm">
Total Community:{" "}
<span className="font-bold text-flame">
{(stats.healers.total + stats.guardians.total).toLocaleString()}
</span>
</div>
<div className="text-xs opacity-70">Updated: {new Date(stats.lastUpdated).toLocaleTimeString()}</div>
</div>
)}
</div>
)
}
|