react-svg vs react-svg-loader vs react-svg-pan-zoom
SVG操作ライブラリ
react-svgreact-svg-loaderreact-svg-pan-zoom類似パッケージ:
SVG操作ライブラリ

これらのライブラリは、Reactアプリケーション内でSVG(Scalable Vector Graphics)を扱うためのツールです。SVGは、解像度に依存しないベクター画像形式であり、ウェブデザインやアニメーションに広く使用されています。これらのライブラリは、SVGの読み込み、表示、操作を簡素化し、開発者がインタラクティブで視覚的に魅力的なユーザーインターフェースを作成するのを助けます。

npmのダウンロードトレンド
3 年
GitHub Starsランキング
統計詳細
パッケージ
ダウンロード数
Stars
サイズ
Issues
公開日時
ライセンス
react-svg244,813878263 kB1310ヶ月前MIT
react-svg-loader137,488641-487年前MIT
react-svg-pan-zoom90,2456951.02 MB411年前MIT
機能比較: react-svg vs react-svg-loader vs react-svg-pan-zoom

SVGのインポート方法

  • react-svg:

    react-svgは、SVGファイルを直接Reactコンポーネントとしてインポートすることができ、JSX内で簡単に使用できます。これにより、SVGのスタイルやプロパティをReactのプロパティとして簡単に制御できます。

  • react-svg-loader:

    react-svg-loaderは、Webpackを使用してSVGをコンポーネントに変換します。これにより、SVGをインポートする際に、コンパイル時にSVGがReactコンポーネントとして処理されます。

  • react-svg-pan-zoom:

    react-svg-pan-zoomは、SVGをインタラクティブに操作するための機能を提供します。SVGをズームイン・ズームアウトしたり、パンしたりすることができ、ユーザーがSVGを自由に操作できるようになります。

スタイリングの柔軟性

  • react-svg:

    react-svgは、SVGのスタイルをCSSで簡単に制御でき、他のReactコンポーネントと同様にスタイルを適用できます。これにより、SVGの見た目を簡単にカスタマイズできます。

  • react-svg-loader:

    react-svg-loaderは、SVGをReactコンポーネントとして扱うため、スタイルをCSSで適用することができますが、SVGの構造に依存するため、スタイルの適用には注意が必要です。

  • react-svg-pan-zoom:

    react-svg-pan-zoomは、SVGのズームやパンの機能に特化しており、スタイリングの柔軟性は他のライブラリに比べて制限されますが、インタラクティブな操作に特化しています。

インタラクティブ機能

  • react-svg:

    react-svgは、基本的なSVGの表示機能を提供しますが、インタラクティブな機能は限られています。

  • react-svg-loader:

    react-svg-loaderは、SVGをReactコンポーネントとして扱うため、インタラクティブな機能を追加することができますが、特定の機能はライブラリに依存します。

  • react-svg-pan-zoom:

    react-svg-pan-zoomは、SVGのパンやズーム機能を提供し、ユーザーがSVGをインタラクティブに操作できるようにします。これにより、データビジュアライゼーションやマップ表示など、インタラクティブな要素が必要な場合に最適です。

学習曲線

  • react-svg:

    react-svgは、シンプルなAPIを持ち、Reactに慣れている開発者にとっては学習が容易です。

  • react-svg-loader:

    react-svg-loaderは、Webpackの知識が必要ですが、SVGをコンポーネントとして扱うための強力なツールです。Webpackに慣れている開発者には比較的簡単です。

  • react-svg-pan-zoom:

    react-svg-pan-zoomは、インタラクティブな機能を提供するため、他のライブラリに比べて少し学習曲線がありますが、使い方は直感的です。

パフォーマンス

  • react-svg:

    react-svgは、SVGを直接扱うため、パフォーマンスは良好ですが、複雑なSVGの場合は注意が必要です。

  • react-svg-loader:

    react-svg-loaderは、SVGをコンパイル時に処理するため、ビルド時間が長くなる可能性がありますが、ランタイムのパフォーマンスは良好です。

  • react-svg-pan-zoom:

    react-svg-pan-zoomは、ズームやパンの操作を行うため、SVGの複雑さによってパフォーマンスが影響を受けることがありますが、適切に最適化すればスムーズな操作が可能です。

選び方: react-svg vs react-svg-loader vs react-svg-pan-zoom
  • react-svg:

    react-svgは、SVGファイルをReactコンポーネントとして簡単にインポートし、使用するためのシンプルな方法を提供します。SVGを直接扱いたい場合や、SVGのスタイルをCSSで簡単に制御したい場合に適しています。

  • react-svg-loader:

    react-svg-loaderは、SVGファイルをWebpackを使用してReactコンポーネントに変換するためのローダーです。プロジェクトでWebpackを使用している場合、SVGをコンパイル時にコンポーネントとしてインポートしたい場合に最適です。

  • react-svg-pan-zoom:

    react-svg-pan-zoomは、SVGをパンやズームするための機能を提供します。インタラクティブなSVGビジュアライゼーションや、ユーザーがSVGを拡大縮小できるようにしたい場合に最適です。

react-svg のREADME

react-svg

npm version build status coverage status npm downloads minzipped size

A React component that injects SVG into the DOM.

Background | Basic Usage | Live Examples | API | Installation | FAQ | License

Background

Let's say you have an SVG available at some URL, and you'd like to inject it into the DOM for various reasons. This module does the heavy lifting for you by delegating the process to @tanem/svg-injector, which makes an AJAX request for the SVG and then swaps in the SVG markup inline. The async loaded SVG is also cached, so multiple uses of an SVG only require a single server request.

Basic Usage

import { createRoot } from 'react-dom/client'
import { ReactSVG } from 'react-svg'

const container = document.getElementById('root')
const root = createRoot(container)
root.render(<ReactSVG src="svg.svg" />)

Live Examples

API

Props

  • src - The SVG URL.
  • afterInjection(svg) - Optional Function to call after the SVG is injected. svg is the injected SVG DOM element. If an error occurs during execution it will be routed to the onError callback, and if a fallback is specified it will be rendered. Defaults to () => {}.
  • beforeInjection(svg) - Optional Function to call just before the SVG is injected. svg is the SVG DOM element which is about to be injected. If an error occurs during execution it will be routed to the onError callback, and if a fallback is specified it will be rendered. Defaults to () => {}.
  • desc - Optional String used for SVG <desc> element content. If a <desc> exists it will be replaced, otherwise a new <desc> is created. Defaults to '', which is a noop.
  • evalScripts - Optional Run any script blocks found in the SVG. One of 'always', 'once', or 'never'. Defaults to 'never'.
  • fallback - Optional Fallback to use if an error occurs during injection, or if errors are thrown from the beforeInjection or afterInjection functions. Can be a string, class component, or function component. Defaults to null.
  • httpRequestWithCredentials - Optional Boolean indicating if cross-site Access-Control requests for the SVG should be made using credentials. Defaults to false.
  • loading - Optional Component to use during loading. Can be a string, class component, or function component. Defaults to null.
  • onError(error) - Optional Function to call if an error occurs during injection, or if errors are thrown from the beforeInjection or afterInjection functions. error is an unknown object. Defaults to () => {}.
  • renumerateIRIElements - Optional Boolean indicating if SVG IRI addressable elements should be renumerated. Defaults to true.
  • title - Optional String used for SVG <title> element content. If a <title> exists it will be replaced, otherwise a new <title> is created. Defaults to '', which is a noop.
  • useRequestCache - Optional Use SVG request cache. Defaults to true.
  • wrapper - Optional Wrapper element types. One of 'div', 'span' or 'svg'. Defaults to 'div'.

Other non-documented properties are applied to the outermost wrapper element.

Example

<ReactSVG
  afterInjection={(svg) => {
    console.log(svg)
  }}
  beforeInjection={(svg) => {
    svg.classList.add('svg-class-name')
    svg.setAttribute('style', 'width: 200px')
  }}
  className="wrapper-class-name"
  desc="Description"
  evalScripts="always"
  fallback={() => <span>Error!</span>}
  httpRequestWithCredentials={true}
  loading={() => <span>Loading</span>}
  onClick={() => {
    console.log('wrapper onClick')
  }}
  onError={(error) => {
    console.error(error)
  }}
  renumerateIRIElements={false}
  src="svg.svg"
  title="Title"
  useRequestCache={false}
  wrapper="span"
/>

Installation

⚠️This library depends on @tanem/svg-injector, which uses Array.from(). If you're targeting browsers that don't support that method, you'll need to ensure an appropriate polyfill is included manually. See this issue comment for further detail.

$ npm install react-svg

UMD builds are also available for use with pre-React 19 via unpkg:

For the non-minified development version, make sure you have already included:

For the minified production version, make sure you have already included:

FAQ

Why are there two wrapping elements?

This module delegates it's core behaviour to @tanem/svg-injector, which requires the presence of a parent node when swapping in the SVG element. The swapping in occurs outside of React flow, so we don't want React updates to conflict with the DOM nodes @tanem/svg-injector is managing.

Example output, assuming a div wrapper:

<div> <!-- The wrapper, managed by React -->
  <div> <!-- The parent node, managed by @tanem/svg-injector -->
    <svg>...</svg> <!-- The swapped-in SVG, managed by @tanem/svg-injector -->
  </div>
</div>

See:

Related issues and PRs:

License

MIT