Babel plugin for applying generated ids to inline React SVG components
npm install babel-plugin-react-inline-svg-unique-idEfficient and SSR friendly ID generator at the runtime for inline SVG components definitions.
``shell`
$ npm install @inline-svg-unique-id/react
$ npm install --save-dev babel-plugin-react-inline-svg-unique-id
Inline SVG components have a duplicated definitions issue. Let's say you want to import such an icon twice in your page:
`jsx`
const Icon = () => (
);
The ellipse element gets linear gradient fill which is referenced by id. Inlining two or more such icons in the same page
will cause id duplications issues, and the browser might fail to paint the gradient. This library will transform inline SVG components at
the build-time and add code that generates ids at the runtime. For example, the previous icon is transformed to:
`jsx
import { useUniqueInlineId } from '@inline-svg-unique-id/react';
const Icon = () => {
const gradientId = useUniqueInlineId();
return (
);
};
`
With SVGR:
Create .svgrrc.js file in the project root:
`js`
module.exports = {
jsx: {
babelConfig: {
plugins: ['react-inline-svg-unique-id']
}
}
};
For more information refer to SVGR transforms documentation.
With SSR:
Wrap your application in the generation context provider:
`jsx
import { Provider as UniqueIdGeneratorProvider } from '@inline-svg-unique-id/react';
const YourApp = () => (
...your app stuff...
);
`
Customizing generated ID prefix:
Wrap your application in the generation context provider and specify _idPrefix_ property. Note: Prefix property
is evaluated once and will not change during sequential rerenders.
`jsx
import { Provider as UniqueIdGeneratorProvider } from '@inline-svg-unique-id/react';
const YourApp = () => (
...your app stuff...
);
`
It is also possible to nest providers and have different prefixes for separate branches.
`jsx
import { Provider as UniqueIdGeneratorProvider } from '@inline-svg-unique-id/react';
const YourApp = () => (
// prefix is "other-id"
// prefix is "id"
);
``