svg-symbol-sprite-loader

Loader and plugin for generating an SVG symbol sprite

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
svg-symbol-sprite-loader
5.1.03 years ago6 years agoMinified + gzip package size for svg-symbol-sprite-loader in KB

Readme

<img height=75 src="./docs/assets/readme-header.png" alt="Crystal Ball Projects documentation"/>

<img src="https://img.shields.io/npm/v/svg-symbol-sprite-loader" alt="Package version" valign="text-top"/>
<img src="https://img.shields.io/npm/dt/svg-symbol-sprite-loader?color=blue" alt="NPM downloads" valign="text-top" />
<img src="https://travis-ci.com/crystal-ball/svg-symbol-sprite-loader.svg?branch=master" alt="Build status" valign="text-top">
<img src="https://snyk.io/test/github/crystal-ball/svg-symbol-sprite-loader/badge.svg?targetFile=package.json" alt="Known vulnerabilities" valign="text-top" />
<img src="https://api.codeclimate.com/v1/badges/fdec537b7796321e9af2/test_coverage" alt="Test coverage" valign="text-top" />
<img src="https://api.codeclimate.com/v1/badges/fdec537b7796321e9af2/maintainability" alt="Maintainability" valign="text-top" />
:status      

<img src="https://img.shields.io/badge/Renovate-enabled-32c3c2.svg" alt="Renovate" valign="text-top" />
<img src="https://img.shields.io/badge/Commitizen-%E2%9C%93%20friendly-10e67b" alt="Commitizen friendly" valign="text-top" />
<img src="https://img.shields.io/badge/ZenHub-managed-5e60ba.svg" alt="ZenHub" valign="text-top" />
<img src="https://img.shields.io/badge/%F0%9F%93%A6%F0%9F%9A%80-semantic_release-e10079.svg" alt="Semantic Release" valign="text-top"/>
<img src="https://img.shields.io/badge/Contributor%20Covenant-v2.0-de8cf2.svg" alt="Contributor Covenant" valign="text-top" />
:integrations

<img src="https://img.shields.io/badge/%F0%9F%94%AE%E2%9C%A8-contains_magic-D831D7.svg" alt="Contains magic" valign="text-top" />
<img src="https://img.shields.io/badge/%F0%9F%92%96%F0%9F%8C%88-full_of_love-F5499E.svg" alt="Full of love" valign="text-top" />
:flair       

<em>webpack loader and plugin for creating SVG sprites</em>




Install

npm install svg-symbol-sprite-loader

Configuration guide


The ultimate SVG icon system follows this workflow:
  1. SVGs are imported into your application using the webpack loader, they can
be referenced by their ID.
  1. The imported SVGs are deduped, sorted, hashed and extracted by the webpack
plugin.
  1. The package exports a localStorage cache loader for browser bundles that
will import the emitted sprite. If the sprite contents change, the filename
hash will change and the sprite loader will fetch the latest sprite.
ℹ️ See the test application for a complete application example

1. Configure - webpack.config.js


const SVGSymbolSprite = require('svg-symbol-sprite-loader')
const HtmlWebpackPlugin = require('html-webpack-plugin')

module.exports = {

  // ...

  module: {
    rules: [
      {
        // The loader transforms imported SVGs in JS objects of SVG data that
        // can be used with any icon component
        test: /\.svg$/,
        use: [
          {
            loader: 'svg-symbol-sprite-loader',

            // optional: Provide a function which returns a customized symbol ID.
            // It receives the full file path as an argument
            options: {
              symbolId: filePath => `icon-${path.basename(filePath, '.svg')}`,
            },
          },
        ],
      },
      // ...
    ],
  },
    plugins: [
      // The plugin will append a script with the sprite hash to head
      // ⚠️ Order matters, the HTML plugin must be included before the SVG sprite
      // plugin so that the HTML plugin hooks are registered!
      new HtmlWebpackPlugin(),

      // The plugin extracts the imported SVGs into a separate sprite file,
      new new SVGSymbolSprite.Plugin({
        filename: `icon-sprite${process.env.NODE_ENV === 'production' ? '.[chunkhash]' : ''}.svg`
      }),
    ],
  }
}

2. Fetch - application source


import svgSymbolSpriteLoader from 'svg-symbol-sprite-loader'

// Call the sprite loader to fetch and cache the latest SVG sprite.
svgSymbolSpriteLoader({ useCache: process.env.NODE_ENV === 'production' })

3. Import - application source


import iconOne from './media/icon-one.svg'

  // ...
export default () => (
  <svg>
    <use href={`#${iconOne.id}`}>
  </svg>
)

SVG icon system motivation


  • Sprite only the SVG icons imported into your application.
  • Use local storage to cache sprites by content hash and only fetch a sprite
when its content has changed.
  • Load sprites from CDN locations without the CORS issues of relative SVG
imports.
  • Symbol sprites are very effective for creating an icon system. They allows
svgs to be referenced by id, and don't require including viewbox attributes.

Contributing 😃

All contributions are greatly appreciated 👍🎉. To contribute please:
repository pull request process details.

Thank You 🙏

Repo icon made by
<a href="https://www.flaticon.com/authors/smartline" title="Smartline">Smartline
</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com
</a> is licensed by
<a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">
CC 3.0 BY</a>