2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-24 17:41:58 +00:00
iconify/packages/utils/src/loader/utils.ts

60 lines
1.9 KiB
TypeScript
Raw Normal View History

import type { Awaitable } from '@antfu/utils';
import type { IconifyLoaderOptions } from './types';
2021-12-09 21:12:00 +00:00
2022-01-10 12:43:35 +00:00
export async function mergeIconProps(
svg: string,
collection: string,
icon: string,
options?: IconifyLoaderOptions,
2022-01-10 12:43:35 +00:00
propsProvider?: () => Awaitable<Record<string, string>>,
): Promise<string> {
const { scale, addXmlNs = false } = options ?? {}
const {
additionalProps = {},
iconCustomizer,
} = options?.customizations ?? {};
const props: Record<string, string> = (await propsProvider?.()) ?? {};
2022-02-26 16:47:57 +00:00
if (!svg.includes(" width=") && !svg.includes(" height=") && typeof scale === 'number') {
if ((typeof props.width === 'undefined' || props.width === null) && (typeof props.height === 'undefined' || props.height === null)) {
props.width = `${scale}em`;
props.height = `${scale}em`;
}
}
2022-01-10 16:08:40 +00:00
await iconCustomizer?.(collection, icon, props);
2022-01-10 12:43:35 +00:00
Object.keys(additionalProps).forEach((p) => {
2022-01-10 16:08:40 +00:00
const v = additionalProps[p];
if (v !== undefined && v !== null) props[p] = v;
});
// add xml namespaces if necessary
if (addXmlNs) {
// add svg xmlns if missing
if (!svg.includes(' xmlns=') && !props['xmlns']) {
props['xmlns'] = 'http://www.w3.org/2000/svg';
}
// add xmlns:xlink if xlink present and the xmlns missing
if (!svg.includes(' xmlns:xlink=') && svg.includes('xlink:') && !props['xmlns:xlink']) {
props['xmlns:xlink'] = 'http://www.w3.org/1999/xlink';
}
}
svg = svg.replace(
'<svg ',
`<svg ${Object.keys(props).map((p) => `${p}="${props[p]}"`).join(' ')}`
2022-01-10 16:08:40 +00:00
);
if (svg && options) {
const { defaultStyle, defaultClass } = options
// additional props and iconCustomizer takes precedence
if (defaultClass && !svg.includes(' class=')) {
svg = svg.replace('<svg ', `<svg class="${defaultClass}" `);
}
// additional props and iconCustomizer takes precedence
if (defaultStyle && !svg.includes(' style=')) {
svg = svg.replace('<svg ', `<svg style="${defaultStyle}" `);
}
}
return svg;
2022-01-10 12:43:35 +00:00
}