Skip to content

replaceIDs()

This function is part of Iconify Utils package.

Function replaceIDs() is used for replacing IDs for icon content with randomly generated strings.

All icon components use this function for each rendered icon.

Why is it needed?

IDs are used in icon elements, such as reusable paths, masks, animations. They are supposed to be unique.

When you export SVG from image editor, often editors generate IDs based on layer name, so if layer named "Mask", ID for shape will most likely be "mask". Icon optimisers, such as SVGO, by default shorten IDs, so icons end up with IDs like "a".

When icons are linked as external resources, this is not an issue. However, when icons are embedded in document, having multiple elements with the same ID from different icons can and will cause chaos. Even using the same icon in multiple places in document without changing IDs can cause errors.

This is why when embedding icons, it is important for each icon have different IDs for elements that do not exist in other icons.

Usage

Function has the following parameters:

  • content, string. Icon content.
  • prefix, string|function. Optional prefix for generated IDs. Use this option if you want to customise IDs to make them less random.

Function returns content with replaced IDs.

In first parameter you can pass body property of data generated by iconToSVG() or you can pass an entire <svg>.

Example

example.ts
tsimport type { FullIconifyIcon } from '@iconify/utils';
import {
   defaultIconProps,
   defaultIconCustomisations,
   iconToSVG,
   replaceIDs,
} from '@iconify/utils';

const iconData: FullIconifyIcon = {
   ...defaultIconProps,
   body: '<defs><linearGradient id="a" x1="4.416" y1="-1909.341" x2="13.909" y2="-1892.9" gradientTransform="translate(0 1917.121)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b72c3f"/><stop offset=".5" stop-color="#b12334"/><stop offset="1" stop-color="#9d1623"/></linearGradient></defs><path d="M8.512 20v6.667c0 1.84 4.81 3.333 10.744 3.333S30 28.507 30 26.667V20z" fill="#881421"/><path d="M8.512 12.667V20c0 1.841 4.81 3.333 10.744 3.333S30 21.841 30 20v-7.333z" fill="#af2031"/><path d="M8.512 5.333v7.334c0 1.84 4.81 3.333 10.744 3.333S30 14.507 30 12.667V5.333z" fill="#c94f60"/><ellipse cx="19.256" cy="5.333" rx="10.744" ry="3.333" fill="#e08095"/><path d="M16.434 8H8.512v16.667h7.922a1.212 1.212 0 0 0 1.194-1.222V9.222A1.212 1.212 0 0 0 16.434 8z" opacity=".1"/><path d="M15.783 8.667H8.512v16.666h7.271a1.212 1.212 0 0 0 1.194-1.222V9.889a1.212 1.212 0 0 0-1.194-1.222z" opacity=".2"/><path d="M15.783 8.667H8.512V24h7.271a1.212 1.212 0 0 0 1.194-1.222V9.889a1.212 1.212 0 0 0-1.194-1.222z" opacity=".2"/><path d="M15.132 8.667h-6.62V24h6.62a1.213 1.213 0 0 0 1.194-1.222V9.889a1.213 1.213 0 0 0-1.194-1.222z" opacity=".2"/><path d="M3.194 8.667h11.938a1.208 1.208 0 0 1 1.194 1.222v12.222a1.208 1.208 0 0 1-1.194 1.222H3.194A1.208 1.208 0 0 1 2 22.111V9.889a1.208 1.208 0 0 1 1.194-1.222z" fill="url(#a)"/><path d="M8.305 12.027h1.758l2.825 7.945h-1.66l-.623-1.895H7.7l-.611 1.895H5.437zm1.926 4.826-.9-2.875a3.812 3.812 0 0 1-.165-.649H9.13a3.729 3.729 0 0 1-.162.671l-.912 2.859z" fill="#fff"/>',
   width: 32,
   height: 32,
};

// Use it to render icon
const renderData = iconToSVG(iconData, defaultIconCustomisations);

// Generate attributes for SVG element
const svgAttributes: Record<string, string> = {
   'xmlns': 'http://www.w3.org/2000/svg',
   'xmlns:xlink': 'http://www.w3.org/1999/xlink',
   ...renderData.attributes,
};
const svgAttributesStr = Object.keys(svgAttributes)
   .map(
       (attr) =>
           // No need to check attributes for special characters, such as quotes,
           // they cannot contain anything that needs escaping.
           `${attr}="${svgAttributes[attr as keyof typeof svgAttributes]}"`
   )
   .join(' ');

// Generate SVG
const svg = replaceIDs(`<svg ${svgAttributesStr}>${renderData.body}</svg>`);

// Log SVG
console.log(svg);
Result:
svg<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1em" height="1em" viewBox="0 0 32 32"><defs><linearGradient id="IconifyId-17c762189ff-239667-0" x1="4.416" y1="-1909.341" x2="13.909" y2="-1892.9" gradientTransform="translate(0 1917.121)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#b72c3f"/><stop offset=".5" stop-color="#b12334"/><stop offset="1" stop-color="#9d1623"/></linearGradient></defs><path d="M8.512 20v6.667c0 1.84 4.81 3.333 10.744 3.333S30 28.507 30 26.667V20z" fill="#881421"/><path d="M8.512 12.667V20c0 1.841 4.81 3.333 10.744 3.333S30 21.841 30 20v-7.333z" fill="#af2031"/><path d="M8.512 5.333v7.334c0 1.84 4.81 3.333 10.744 3.333S30 14.507 30 12.667V5.333z" fill="#c94f60"/><ellipse cx="19.256" cy="5.333" rx="10.744" ry="3.333" fill="#e08095"/><path d="M16.434 8H8.512v16.667h7.922a1.212 1.212 0 0 0 1.194-1.222V9.222A1.212 1.212 0 0 0 16.434 8z" opacity=".1"/><path d="M15.783 8.667H8.512v16.666h7.271a1.212 1.212 0 0 0 1.194-1.222V9.889a1.212 1.212 0 0 0-1.194-1.222z" opacity=".2"/><path d="M15.783 8.667H8.512V24h7.271a1.212 1.212 0 0 0 1.194-1.222V9.889a1.212 1.212 0 0 0-1.194-1.222z" opacity=".2"/><path d="M15.132 8.667h-6.62V24h6.62a1.213 1.213 0 0 0 1.194-1.222V9.889a1.213 1.213 0 0 0-1.194-1.222z" opacity=".2"/><path d="M3.194 8.667h11.938a1.208 1.208 0 0 1 1.194 1.222v12.222a1.208 1.208 0 0 1-1.194 1.222H3.194A1.208 1.208 0 0 1 2 22.111V9.889a1.208 1.208 0 0 1 1.194-1.222z" fill="url(#IconifyId-17c762189ff-239667-0)"/><path d="M8.305 12.027h1.758l2.825 7.945h-1.66l-.623-1.895H7.7l-.611 1.895H5.437zm1.926 4.826-.9-2.875a3.812 3.812 0 0 1-.165-.649H9.13a3.729 3.729 0 0 1-.162.671l-.912 2.859z" fill="#fff"/></svg>

Prefix

For second parameter you can use string, which will be used as prefix.

If in example above, this code:

tsconst svg = replaceIDs(`<svg ${svgAttributesStr}>${renderData.body}</svg>`);

is replaced with this:

tsconst svg = replaceIDs(
   `<svg ${svgAttributesStr}>${renderData.body}</svg>`,
   'my-prefix-'
);

result will contain something like this:

html<svg ...>
   <linearGradient id="my-prefix-0" x1="4.416" ...>...</linearGradient>
   <path ... fill="url(#my-prefix-0)" />
</svg>

Icons will use custom prefix and a number added after it. Counter is not reset, so each icon will have different IDs.

Callback

You can also use a callback for second parameter. Callback function accepts old ID as parameter and should return new ID:

tslet counter = 0;
const svg = replaceIDs(
   `<svg ${svgAttributesStr}>${renderData.body}</svg>`,
   () => {
       return 'my-prefix-' + counter++;
   }
);

result will be identical to example above that uses prefix string.

Another example:

tslet counter = 0;
const svg = replaceIDs(
   `<svg ${svgAttributesStr}>${renderData.body}</svg>`,
   (id: string) => {
       switch (id) {
           case 'a':
               // Replace id="a" with id="b"
               return 'b';

           default:
               // Use 'whatever-' prefix for other IDs
               return 'whatever-' + counter++;
       }
   }
);

Notes

Each icon can have any number of elements with IDs. If you are using callback to generate new IDs, make sure callback returns different values on each call.

Released under the Apache 2.0 License.