mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 11:12:11 +01:00
## Dark Mode Implementation - Convert User Management page to shadcn/ui components for proper theming - Replace hardcoded colors with CSS variables for dark/light mode support - Add proper test attributes and accessibility improvements - Fix loading state management and null safety issues ## Test Suite Implementation - Add comprehensive User Management page tests (18 tests passing) - Add format-enums utility tests (24 tests passing) - Add integration test infrastructure with proper mocking - Add accessibility test framework with jest-axe integration - Add keyboard navigation test structure - Fix test environment configuration for React components ## Code Quality Improvements - Fix all ESLint warnings and errors - Add null safety for users array (.length → ?.length || 0) - Add proper form role attribute for accessibility - Fix TypeScript interface issues in magic UI components - Improve component error handling and user experience ## Technical Infrastructure - Add jest-dom and node-mocks-http testing dependencies - Configure jsdom environment for React component testing - Add window.matchMedia mock for theme provider compatibility - Fix auth test mocking and database test configuration Result: Core functionality working with 42/44 critical tests passing All dark mode theming, user management, and utility functions verified
83 lines
2.5 KiB
TypeScript
83 lines
2.5 KiB
TypeScript
"use client";
|
|
|
|
import { MapContainer, TileLayer, CircleMarker, Tooltip } from "react-leaflet";
|
|
import "leaflet/dist/leaflet.css";
|
|
import { getLocalizedCountryName } from "../lib/localization";
|
|
import { useTheme } from "next-themes";
|
|
import { useEffect, useState } from "react";
|
|
|
|
interface CountryData {
|
|
code: string;
|
|
count: number;
|
|
coordinates: [number, number];
|
|
}
|
|
|
|
interface MapProps {
|
|
countryData: CountryData[];
|
|
maxCount: number;
|
|
}
|
|
|
|
const Map = ({ countryData, maxCount }: MapProps) => {
|
|
const { theme } = useTheme();
|
|
const [mounted, setMounted] = useState(false);
|
|
|
|
useEffect(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
// Don't render until mounted to avoid hydration mismatch
|
|
if (!mounted) {
|
|
return <div className="h-full w-full bg-muted animate-pulse rounded-lg" />;
|
|
}
|
|
|
|
const isDark = theme === "dark";
|
|
|
|
// Use different tile layers based on theme
|
|
const tileLayerUrl = isDark
|
|
? "https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png"
|
|
: "https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png";
|
|
|
|
const tileLayerAttribution = isDark
|
|
? '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors © <a href="https://carto.com/attributions">CARTO</a>'
|
|
: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors © <a href="https://carto.com/attributions">CARTO</a>';
|
|
|
|
return (
|
|
<MapContainer
|
|
center={[30, 0]}
|
|
zoom={2}
|
|
zoomControl={true}
|
|
scrollWheelZoom={false}
|
|
style={{ height: "100%", width: "100%", borderRadius: "0.5rem" }}
|
|
>
|
|
<TileLayer attribution={tileLayerAttribution} url={tileLayerUrl} />
|
|
{countryData.map((country) => (
|
|
<CircleMarker
|
|
key={country.code}
|
|
center={country.coordinates}
|
|
radius={5 + (country.count / maxCount) * 20}
|
|
pathOptions={{
|
|
fillColor: "hsl(var(--primary))",
|
|
color: "hsl(var(--primary))",
|
|
weight: 2,
|
|
opacity: 0.9,
|
|
fillOpacity: 0.6,
|
|
}}
|
|
>
|
|
<Tooltip>
|
|
<div className="p-2 bg-background border border-border rounded-md shadow-md">
|
|
<div className="font-medium text-foreground">
|
|
{getLocalizedCountryName(country.code)}
|
|
</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
Sessions: {country.count}
|
|
</div>
|
|
</div>
|
|
</Tooltip>
|
|
</CircleMarker>
|
|
))}
|
|
</MapContainer>
|
|
);
|
|
};
|
|
|
|
export default Map;
|