在JS捆绑包中包含图片

时间:2019-03-15 16:24:40

标签: javascript reactjs npm bundle rollup

我的情况如下:

我为React创建了一个组件库。因此,我有一个包含一些图片的软件包(与汇总捆绑在一起)(目前仅组件中使用的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">

感谢您的帮助!

达米恩

1 个答案:

答案 0 :(得分:0)

我找到了解决此问题的方法。此响应可能会帮助某人:

我将汇总配置更新为使用 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

更新配置以增加限制后,一切正常