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

@amykate/svg-injector

v1.1.11

Published

Fast, caching, dynamic inline SVG DOM injection library

Downloads

6

Readme

svg-injector

My copy of SVG Injector so it doesn't change ID values cos it's breaking my styling

A fast, caching, dynamic inline SVG DOM injection library.

This is a fork of a library originally developed by Waybury for use in iconic.js, part of the Iconic icon system.

table of contents

why

There are a number of ways to use SVG on a page (object, embed, iframe, img, CSS background-image) but to unlock the full potential of SVG, including full element-level CSS styling and evaluation of embedded JavaScript, the full SVG markup must be included directly in the DOM.

Wrangling and maintaining a bunch of inline SVG on your pages isn't anyone's idea of good time, so SVGInjector lets you work with simple img tag elements (or other tag of your choosing) and does the heavy lifting of swapping in the SVG markup inline for you.

how

  • Any DOM element, or array of elements, passed to SVGInjector with an SVG file src or data-src attribute will be replaced with the full SVG markup inline. The async loaded SVG is also cached so multiple uses of an SVG only requires a single server request.
  • Any embedded JavaScript in the SVG will optionally be extracted, cached and evaluated.

:warning: The dynamic injection process uses AJAX calls to load SVG. If you are developing locally without running a local webserver, be aware that default browser security settings may block these calls.

basic example

Include the SVGInjector script on your page.

<script src="https://unpkg.com/@tanem/svg-injector/umd/svg-injector.min.js"></script>

Add some SVG img tags.

<img class="inject-me" src="image-one.svg">
<img class="inject-me" src="image-two.svg">

Inject 'em.

<script>
  // Elements to inject
  var mySVGsToInject = document.querySelectorAll('img.inject-me')

  // Do the injection
  SVGInjector(mySVGsToInject)
</script>

The img tags have now been replaced with the full SVG markup.

api

In addition to passing elements to inject, an options object and callback function can optionally be defined.

SVGInjector(elements, options, callback)

elements

A single DOM element or array of elements, with src or data-src attributes defined, to inject.

options

{
  evalScripts: [always|once|never],
  pngFallback: [PNG directory],
  each: [function]
}
  • evalScript - String

    Should we run any script blocks found in the SVG?

    • always - Run them every time.
    • once - [default] Only run scripts once for each SVG file, even if it is used on a page more than once.
    • [false|'never'] - Ignore scripts
  • pngFallback - String

    The directory where fallback PNGs are located for use if the browser doesn't support SVG. This will look for a file with a .png extension matching the SVG filename defined in the src (or data-src).

    For additional flexibility, since you might be using a single SVG styled in multiple ways, you can also define per-element fallbacks by adding a data-fallback or data-png attribute to your img tags to define a unique PNG for each context. Refer to the Fallbacks example.

  • each(svg) - function

    A function to call after each SVG is injected. Receives the newly injected SVG DOM element as a parameter.

callback

A function to call once all the requested SVG elements have been injected. Receives a count of the total SVGs injected as a parameter.

full example

<img id="image-one" class="inject-me" data-src="image-one.svg">
<img id="image-two" class="inject-me" data-src="image-two.svg">
// Elements to inject
var mySVGsToInject = document.querySelectorAll('img.inject-me')

// Options
var injectorOptions = {
  evalScripts: 'once',
  pngFallback: 'assets/png',
  each: function(svg) {
    // Callback after each SVG is injected
    console.log('SVG injected: ' + svg.getAttribute('id'))
  }
}

// Trigger the injection
SVGInjector(mySVGsToInject, injectorOptions, function(totalSVGsInjected) {
  // Callback after all SVGs are injected
  console.log('We injected ' + totalSVGsInjected + ' SVG(s)!')
})

codesandbox examples

usage with react

license

MIT