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

43 lines
1.4 KiB
TypeScript
Raw Normal View History

import type { Awaitable } from '@antfu/utils';
2022-01-10 12:43:35 +00:00
import type { IconCustomizer } 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,
additionalProps: Record<string, string | undefined>,
addXmlNs: boolean,
2022-02-26 16:47:57 +00:00
scale?: number,
2022-01-10 12:43:35 +00:00
propsProvider?: () => Awaitable<Record<string, string>>,
iconCustomizer?: IconCustomizer,
2022-01-10 12:43:35 +00:00
): Promise<string> {
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';
}
}
2022-01-10 16:08:40 +00:00
return svg.replace(
'<svg ',
`<svg ${Object.keys(props).map((p) => `${p}="${props[p]}"`).join(' ')}`
2022-01-10 16:08:40 +00:00
);
2022-01-10 12:43:35 +00:00
}