npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

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

v1.3.1-exodus.0

Published

Babel plugin for applying generated ids to inline React SVG components

Downloads

617

Readme

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>
);