在 JS 包中包含图片

Include pictures in JS bundle

我的情况如下:

我为 React 创建了一个组件库。所以我有一个包(与 Rollup 捆绑在一起),其中包含一些图片(目前只有一个组件中使用的 GIF 图片)。

使用我图片的组件是这样的:

import React from 'react';
import PropTypes from 'prop-types';
import ui_spinner from '../../../assets/ui_progress.gif';

/**
 * CircularSpinner
 * Add a spinner when the user needs to wait
 */
class CircularSpinner extends React.PureComponent {
  static propTypes = {
    /** Width of the component */
    width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
    /** Height of the component */
    height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
    /** Style of the component (overload existing properties) */
    style: PropTypes.object,
  }

  static defaultProps = {
    width: 128,
    height: 128,
    style: {},
  }

  render() {
    const { style, width, height } = this.props;

    return (
      <img src={ui_spinner} width={width} height={height} style={style} alt="ui_progress" aria-busy="true" />
    );
  }
}

export default CircularSpinner;

我建的时候还行

现在我用 create-react-app 创建了一个 React 应用程序,我想测试我的组件库。为此,我使用 npm link(以避免推送部署我的 npm 包)。我的组件在我的测试应用程序中没有问题,但是图片(我的 CircularSpinner 组件中的 GIF)不显示。

所以我的问题如下:如何使用 Rollup 将一些资产包含在 JS 包中?我的工作方法正确吗?

我的汇总配置如下:

import { uglify } from 'rollup-plugin-uglify'
import babel from 'rollup-plugin-babel'
import url from 'rollup-plugin-url'

const config = {
  input: 'src/index.js',
  external: ['react'],
  output: {
      format: 'umd',
      name: 'react-components',
      globals: {
          react: "React"
      }
  },
  plugins: [
    babel({
      exclude: "node_modules/**"
    }),
    uglify(),
    url(),
  ]
}
export default config

我用 rollup -c -o dist/index.js 构建。

并且 dist 文件夹具有以下内容:

dist/
  assets
    92be5c546b4adf43.gif
  index.js

我的测试应用程序中使用我的图片的组件是这样的:

<img src="92be5c546b4adf43.gif" width="128" height="128" alt="ui_progress" aria-busy="true">

感谢您的帮助!

达米恩

我找到了这个问题的解决方案。此回复可能对某人有帮助:

我更新了我的汇总配置以使用 rollup-plugin-img。我已经用过了,但是我的配置不正确:

正确的配置如下:

import { uglify } from 'rollup-plugin-uglify'
import babel from 'rollup-plugin-babel'
import image from 'rollup-plugin-img'

const config = {
  input: 'src/index.js',
  external: ['react'],
  output: {
      format: 'umd',
      name: 'react-components',
      globals: {
          react: "React"
      }
  },
  plugins: [
    babel({
      exclude: "node_modules/**"
    }),
    image({
      limit: 100000,
    }),
    uglify(),
  ]
}
export default config

我的错误是我的 GIF 有点大,默认限制大小是 8192 字节。 在这种情况下,我有以下错误:

Error: Could not load <path of image> (imported by <path of component that use image>): The "path" argument must be of type string. Received type undefined

当我更新我的配置以增加限制时,一切正常