import type { Awaitable } from '@antfu/utils'; import type { IconCustomizer } from './types'; export async function mergeIconProps( svg: string, collection: string, icon: string, additionalProps: Record, addXmlNs: boolean, scale?: number, propsProvider?: () => Awaitable>, iconCustomizer?: IconCustomizer, ): Promise { const props: Record = (await propsProvider?.()) ?? {}; 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`; } } await iconCustomizer?.(collection, icon, props); Object.keys(additionalProps).forEach((p) => { 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'; } } return svg.replace( ' `${p}="${props[p]}"`).join(' ')}` ); }