@exodus/babel-plugin-react-inline-svg-unique-id

1.3.1-exodus.0 • Public • Published

inline-svg-unique-id

Efficient and SSR friendly ID generator at the runtime for inline SVG components definitions.

Installation

$ npm install @exodus/inline-svg-unique-id-react
$ npm install --save-dev babel-plugin-react-inline-svg-unique-id

Why?

Inline SVG components have a duplicated definitions issue. Let's say you want to import such an icon twice in your page:

const Icon = () => (
  <svg height="150" width="400">
    <defs>
      <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
        <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
        <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
      </linearGradient>
    </defs>
    <ellipse cx="200" cy="70" rx="85" ry="55" fill="url(#grad1)" />
  </svg>
);

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:

import { useUniqueInlineId } from '@exodus/inline-svg-unique-id-react';

const Icon = () => {
  const gradientId = useUniqueInlineId();
  
  return (
    <svg height="150" width="400">
      <defs>
        <linearGradient id={gradientId} x1="0%" y1="0%" x2="100%" y2="0%">
          <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
          <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
        </linearGradient>
      </defs>
      <ellipse cx="200" cy="70" rx="85" ry="55" fill={`url(#${gradientId})`}/>
    </svg>
  );
};

Usage

With SVGR:

Create .svgrrc.js file in the project root:

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:

import { Provider as UniqueIdGeneratorProvider } from '@exodus/inline-svg-unique-id-react';

const YourApp = () => (
  <UniqueIdGeneratorProvider>
    ...your app stuff...
  </UniqueIdGeneratorProvider>
);

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.

import { Provider as UniqueIdGeneratorProvider } from '@exodus/inline-svg-unique-id-react';

const YourApp = () => (
  <UniqueIdGeneratorProvider idPrefix="custom-prefix">
    ...your app stuff...
  </UniqueIdGeneratorProvider>
);

It is also possible to nest providers and have different prefixes for separate branches.

import { Provider as UniqueIdGeneratorProvider } from '@exodus/inline-svg-unique-id-react';

const YourApp = () => (
  <UniqueIdGeneratorProvider idPrefix="id">
    <UniqueIdGeneratorProvider idPrefix="other-id">
      // prefix is "other-id"
    </UniqueIdGeneratorProvider>
    // prefix is "id"
  </UniqueIdGeneratorProvider>
);

Dependents (0)

Package Sidebar

Install

npm i @exodus/babel-plugin-react-inline-svg-unique-id

Weekly Downloads

178

Version

1.3.1-exodus.0

License

MIT

Unpacked Size

16.1 kB

Total Files

6

Last publish

Collaborators

  • marcos.kichel
  • kryptkeep
  • andrewtoth-exodus
  • mmehta-10
  • tunguyennnnn
  • dimartiro
  • cdotta-exodus
  • awesomeniko
  • mbaraniak-exodus
  • hasakura
  • milanvojnovic
  • kklash
  • shehryar6
  • rec
  • awilson-rs
  • ggabarrin-rs
  • r4vn
  • exorich
  • cryptosgr
  • mol0d
  • yevhenii_molodyk
  • yilmazbahadir
  • muratso
  • exoleo
  • 633kh4ck
  • ossel
  • davidfraga610
  • clarkexo
  • andrewrexo
  • james-gre
  • juraex
  • richayotte
  • ralph.ba
  • angelloz
  • joshuabot
  • jamiemaw
  • exodus-justin.za
  • javiexodus
  • rg911
  • alex.alexandrius
  • filipexodus
  • ryansquared-npm
  • andrescarreon
  • florianmathieu
  • janwe
  • fboucquez
  • skapala
  • umito
  • lanahizzle
  • iaacek
  • ps.mcnally
  • akinncar
  • matias.la
  • voltagebots
  • kwwood
  • sergii_bo
  • alexandrbbm
  • danh.t.vo
  • ezenwankwogabriel
  • meniem
  • mzndako
  • kevva
  • feri42
  • jprichardson
  • farisissa
  • ryanzim
  • headfire
  • gutenye
  • mosesbot
  • roccomuso
  • dcastagnoli
  • sonaye
  • nareg_exodus
  • ves
  • tenaciousmv
  • asyakost
  • bulgakovk
  • chalker
  • andrejb
  • jaydp17
  • olistic
  • joepie91
  • merlz
  • vbonini
  • devopsrobot
  • jenish-sojitra
  • nachoalvarez
  • giovannirco
  • diegomura
  • lanre-mark
  • sunilagrawal
  • guillecura
  • mariosvlad
  • federico-po
  • pagan404