Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | /** * Dynamic Component Exports * * Provides dynamic imports for heavy components to enable code splitting. * These components are only loaded when needed, reducing initial bundle size. */ 'use client'; import dynamic from 'next/dynamic'; // ============================================================================ // SKELETON COMPONENTS // ============================================================================ function DashboardSkeleton() { return ( <div className="space-y-4 animate-pulse"> <div className="h-8 w-48 bg-gray-200 dark:bg-gray-700 rounded" /> <div className="grid grid-cols-3 gap-4"> {[1, 2, 3].map((i) => ( <div key={i} className="h-24 bg-gray-200 dark:bg-gray-700 rounded" /> ))} </div> <div className="h-64 bg-gray-200 dark:bg-gray-700 rounded" /> </div> ); } function ChartSkeleton() { return ( <div className="h-64 bg-gray-200 dark:bg-gray-700 rounded animate-pulse" /> ); } function PanelSkeleton() { return ( <div className="space-y-4 animate-pulse"> <div className="h-6 w-32 bg-gray-200 dark:bg-gray-700 rounded" /> <div className="h-40 bg-gray-200 dark:bg-gray-700 rounded" /> </div> ); } // ============================================================================ // MONITORING DASHBOARDS // ============================================================================ /** * Error Dashboard - dynamically loaded * Heavy component with charts and data tables */ export const DynamicErrorDashboard = dynamic( () => import('@/components/admin/monitoring/ErrorDashboard').then((mod) => ({ default: mod.ErrorDashboard, })), { loading: () => <DashboardSkeleton />, ssr: false, } ); /** * Cache Dashboard - dynamically loaded * Heavy component with real-time cache metrics */ export const DynamicCacheDashboard = dynamic( () => import('@/components/admin/monitoring/CacheDashboard').then((mod) => ({ default: mod.CacheDashboard, })), { loading: () => <DashboardSkeleton />, ssr: false, } ); /** * Error Detail Panel - dynamically loaded * Complex panel with tabs and detailed error info */ export const DynamicErrorDetailPanel = dynamic( () => import('@/components/admin/monitoring/ErrorDetailPanel').then((mod) => ({ default: mod.ErrorDetailPanel, })), { loading: () => <PanelSkeleton />, ssr: false, } ); // ============================================================================ // CHARTS (if using recharts or similar) // ============================================================================ // Uncomment and use when chart components exist: // export const DynamicLineChart = dynamic( // () => import('@/components/ui/Charts/LineChart'), // { // loading: () => <ChartSkeleton />, // ssr: false, // } // ); // ============================================================================ // EXPORT SKELETONS FOR REUSE // ============================================================================ export { DashboardSkeleton, ChartSkeleton, PanelSkeleton }; |