mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-05-07 02:31:58 +08:00
* chore: update deps * feat: use jsonc/x language * chore: update eslint 10.0 * fix: no-useless-assignment * feat: add CLAUDE.md * chore: ignore * feat: claude * fix: lint * chore: suppot eslint v10 * fix: lint * fix: lint * fix: type check * fix: unit test * fix: Suggested fix * fix: unit test * chore: update stylelint v17 * chore: update all major deps * fix: echarts console warn * chore: update vitest v4 * feat: add skills ignores * chore: update deps * chore: update deps * fix: cspell * chore: update deps * chore: update tailwindcss v4 * chore: remove postcss config * fix: no use catalog * chore: tailwind v4 config * fix: tailwindcss v4 sort * feat: use eslint-plugin-better-tailwindcss * fix: Interference between enforce-consistent-line-wrapping, jsx-curly-brace-presence and Prettier * fix: Interference between enforce-consistent-line-wrapping, jsx-curly-brace-presence and Prettier * fix(lint): resolve prettier and better-tailwindcss formatting conflicts * fix(tailwind): update theme references and lint sources * style(format): normalize apps docs and playground vue files * style(format): normalize core ui-kit components * style(format): normalize effects ui and layout components
76 lines
2.0 KiB
TypeScript
76 lines
2.0 KiB
TypeScript
import type { IconifyIconStructure } from '@vben-core/icons';
|
|
|
|
import { addIcon } from '@vben-core/icons';
|
|
|
|
loadSvgIcons();
|
|
|
|
function parseSvg(svgData: string): IconifyIconStructure {
|
|
const parser = new DOMParser();
|
|
const xmlDoc = parser.parseFromString(svgData, 'image/svg+xml');
|
|
const svgElement = xmlDoc.documentElement;
|
|
|
|
// 提取 SVG 根元素的关键样式属性
|
|
const getAttrs = (el: Element, attrs: string[]) =>
|
|
attrs
|
|
.map((attr) =>
|
|
el.hasAttribute(attr) ? `${attr}="${el.getAttribute(attr)}"` : '',
|
|
)
|
|
.filter(Boolean)
|
|
.join(' ');
|
|
|
|
const rootAttrs = getAttrs(svgElement, [
|
|
'fill',
|
|
'stroke',
|
|
'fill-rule',
|
|
'stroke-width',
|
|
]);
|
|
|
|
const svgContent = [...svgElement.childNodes]
|
|
.filter((node) => node.nodeType === Node.ELEMENT_NODE)
|
|
.map((node) => new XMLSerializer().serializeToString(node))
|
|
.join('');
|
|
// 若根有属性,用一个 g 标签包裹内容并继承属性
|
|
const body = rootAttrs ? `<g ${rootAttrs}>${svgContent}</g>` : svgContent;
|
|
|
|
const viewBoxValue = svgElement.getAttribute('viewBox') || '';
|
|
const [left, top, width, height] = viewBoxValue.split(' ').map((val) => {
|
|
const num = Number(val);
|
|
return Number.isNaN(num) ? undefined : num;
|
|
});
|
|
|
|
return {
|
|
body,
|
|
height,
|
|
left,
|
|
top,
|
|
width,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* 自定义的svg图片转化为组件
|
|
* @example ./svg/avatar.svg
|
|
* <Icon icon="svg:avatar"></Icon>
|
|
*/
|
|
async function loadSvgIcons() {
|
|
const svgEagers = import.meta.glob('./icons/**', {
|
|
eager: true,
|
|
query: '?raw',
|
|
});
|
|
|
|
await Promise.all(
|
|
Object.entries(svgEagers).map((svg) => {
|
|
const [key, body] = svg as [string, string | { default: string }];
|
|
|
|
// ./icons/xxxx.svg => xxxxxx
|
|
const start = key.lastIndexOf('/') + 1;
|
|
const end = key.lastIndexOf('.');
|
|
const iconName = key.slice(start, end);
|
|
|
|
return addIcon(`svg:${iconName}`, {
|
|
...parseSvg(typeof body === 'object' ? body.default : body),
|
|
});
|
|
}),
|
|
);
|
|
}
|