import type { Awaitable } from '@antfu/utils'; import type { IconifyLoaderOptions } from './types'; export async function mergeIconProps( svg: string, collection: string, icon: string, options?: IconifyLoaderOptions, propsProvider?: () => Awaitable> ): Promise { const { scale, addXmlNs = false } = options ?? {}; const { additionalProps = {}, iconCustomizer } = options?.customizations ?? {}; 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'; } } svg = svg.replace( ' `${p}="${props[p]}"`) .join(' ')}` ); if (svg && options) { const { defaultStyle, defaultClass } = options; // additional props and iconCustomizer takes precedence if (defaultClass && !svg.includes(' class=')) { svg = svg.replace('