feat: support URL-based icons for large SVGs and raster images

Add dual rendering mode to the icon system: small optimized SVGs
continue to be inlined via dangerouslySetInnerHTML, while large SVGs
and raster images (png/jpg/webp/etc) use Vite URL imports rendered
as <img> tags. Added dds.svg (1.4MB) as the first URL-based icon.

Updated generate-icon-index.js to support multi-format icons with
a manual URL_ICONS control list. Updated ProviderIcon to handle
both inline SVG and URL-based rendering paths.
This commit is contained in:
Jason
2026-04-10 16:36:30 +08:00
parent eff85dc66d
commit 794795cad4
4 changed files with 189 additions and 33 deletions
+34 -8
View File
@@ -1,5 +1,11 @@
import React, { useMemo } from "react";
import { getIcon, hasIcon, getIconMetadata } from "@/icons/extracted";
import {
getIcon,
hasIcon,
getIconMetadata,
getIconUrl,
isUrlIcon,
} from "@/icons/extracted";
import { cn } from "@/lib/utils";
interface ProviderIconProps {
@@ -19,21 +25,28 @@ export const ProviderIcon: React.FC<ProviderIconProps> = ({
className,
showFallback = true,
}) => {
// 获取图标 SVG
// 获取内联 SVG 字符串
const iconSvg = useMemo(() => {
if (icon && hasIcon(icon)) {
if (icon && !isUrlIcon(icon) && hasIcon(icon)) {
return getIcon(icon);
}
return "";
}, [icon]);
// 获取图标 URLURL_ICONS 列表中的 SVG / 光栅图片)
const iconUrl = useMemo(() => {
if (icon && isUrlIcon(icon)) {
return getIconUrl(icon);
}
return "";
}, [icon]);
// 计算尺寸样式
const sizeStyle = useMemo(() => {
const sizeValue = typeof size === "number" ? `${size}px` : size;
return {
width: sizeValue,
height: sizeValue,
// 内嵌 SVG 使用 1em 作为尺寸基准,这里同步 fontSize 让图标实际跟随 size 放大
fontSize: sizeValue,
lineHeight: 1,
};
@@ -41,14 +54,11 @@ export const ProviderIcon: React.FC<ProviderIconProps> = ({
// 获取有效颜色:优先使用传入的有效 color,否则从元数据获取 defaultColor
const effectiveColor = useMemo(() => {
// 只有当 color 是有效的非空字符串时才使用
if (color && typeof color === "string" && color.trim() !== "") {
return color;
}
// 否则从元数据获取 defaultColor
if (icon) {
const metadata = getIconMetadata(icon);
// 只有当 defaultColor 不是 currentColor 时才使用
if (metadata?.defaultColor && metadata.defaultColor !== "currentColor") {
return metadata.defaultColor;
}
@@ -56,7 +66,7 @@ export const ProviderIcon: React.FC<ProviderIconProps> = ({
return undefined;
}, [color, icon]);
// 如果有图标,显示图标
// 内联 SVG 渲染(支持 CSS currentColor 着色)
if (iconSvg) {
return (
<span
@@ -70,6 +80,22 @@ export const ProviderIcon: React.FC<ProviderIconProps> = ({
);
}
// URL-based 图标(大型 SVG / 光栅图片):以 <img> 渲染
if (iconUrl) {
return (
<img
src={iconUrl}
alt={name}
className={cn(
"inline-flex items-center justify-center flex-shrink-0 object-contain",
className,
)}
style={{ width: sizeStyle.width, height: sizeStyle.height }}
loading="lazy"
/>
);
}
// Fallback:显示首字母
if (showFallback) {
const initials = name