2025-08-25 16:07:55 +01:00
|
|
|
|
import React from 'react';
|
|
|
|
|
import { addCollection, Icon } from '@iconify/react';
|
|
|
|
|
import iconSet from '../../assets/material-symbols-icons.json';
|
|
|
|
|
|
|
|
|
|
// Load icons synchronously at import time - guaranteed to be ready on first render
|
|
|
|
|
let iconsLoaded = false;
|
|
|
|
|
let localIconCount = 0;
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (iconSet) {
|
|
|
|
|
addCollection(iconSet);
|
|
|
|
|
iconsLoaded = true;
|
|
|
|
|
localIconCount = Object.keys(iconSet.icons || {}).length;
|
|
|
|
|
console.info(`✅ Local icons loaded: ${localIconCount} icons (${Math.round(JSON.stringify(iconSet).length / 1024)}KB)`);
|
|
|
|
|
}
|
2025-09-05 12:16:17 +01:00
|
|
|
|
} catch {
|
2025-08-25 16:07:55 +01:00
|
|
|
|
console.info('ℹ️ Local icons not available - using CDN fallback');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface LocalIconProps {
|
|
|
|
|
icon: string;
|
|
|
|
|
width?: string | number;
|
|
|
|
|
height?: string | number;
|
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
|
className?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* LocalIcon component that uses our locally bundled Material Symbols icons
|
|
|
|
|
* instead of loading from CDN
|
|
|
|
|
*/
|
|
|
|
|
export const LocalIcon: React.FC<LocalIconProps> = ({ icon, ...props }) => {
|
|
|
|
|
// Convert our icon naming convention to the local collection format
|
2025-09-05 12:16:17 +01:00
|
|
|
|
const iconName = icon.startsWith('material-symbols:')
|
|
|
|
|
? icon
|
2025-08-25 16:07:55 +01:00
|
|
|
|
: `material-symbols:${icon}`;
|
2025-09-05 12:16:17 +01:00
|
|
|
|
|
2025-08-25 16:07:55 +01:00
|
|
|
|
// Development logging (only in dev mode)
|
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
|
|
|
const logKey = `icon-${iconName}`;
|
|
|
|
|
if (!sessionStorage.getItem(logKey)) {
|
|
|
|
|
const source = iconsLoaded ? 'local' : 'CDN';
|
|
|
|
|
console.debug(`🎯 Icon: ${iconName} (${source})`);
|
|
|
|
|
sessionStorage.setItem(logKey, 'logged');
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-05 12:16:17 +01:00
|
|
|
|
|
2025-08-25 16:07:55 +01:00
|
|
|
|
// Always render the icon - Iconify will use local if available, CDN if not
|
|
|
|
|
return <Icon icon={iconName} {...props} />;
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-05 12:16:17 +01:00
|
|
|
|
export default LocalIcon;
|