如何在对等依赖中使用redux-form

时间:2017-09-30 14:23:17

标签: reactjs redux react-redux redux-form rollup

我正在尝试使用汇总和react-redud创建登录表单的ES6模块。

我有以下配置的汇总:

const plugins = [
  // Unlike Webpack and Browserify, Rollup doesn't automatically shim Node
  // builtins like `process`. This ad-hoc plugin creates a 'virtual module'
  // which includes a shim containing just the parts the bundle needs.
  {
    resolveId(importee) {
      if (importee === processShim) return importee;
      return null;
    },
    load(id) {
      if (id === processShim) return 'export default { argv: [], env: {} }';
      return null;
    },
  },
  nodeResolve(),
  commonjs({
    include: 'node_modules/**',
    namedExports: {
      './node_modules/immutable/dist/immutable.js': ['fromJS', 'Map', 'List', 'Record', 'Iterable'],
      './node_modules/redux/dist/redux.js': ['createStore', 'combineReducers', 'bindActionCreators', 'applyMiddleware', 'compose'],
      './node_modules/react-redux/dist/react-redux.js': [' Provider', 'createProvider', 'connectAdvanced', 'connect'],
    },
  }),
  replace({
    'process.env.NODE_ENV': JSON.stringify(prod ? 'production' : 'development'),
  }),
  inject({
    process: processShim,
  }),
  json(),
  babel({
    plugins: ['external-helpers'],
    exclude: 'node_modules/**',
  }),
  cleanup(),
];

if (prod) plugins.push(uglify(), visualizer({ filename: './bundle-stats.html' }));

export default {
  input: 'src/index.js',
  sourcemap: true,
  name: pkg.name,
  external: ['react', 'react-dom', 'prop-types', 'styled-components', 'bootstrap-styled', 'classnames', 'react-transition-group', 'loaders', 'redux-form', 'redux', 'react-redux', 'react-intl', 'message-common', 'bootstrap-styled-motion'],
  exports: 'named',
  output,
  plugins,
  globals: { react: 'React', 'react-dom': 'ReactDom', 'prop-types': 'PropTypes', 'styled-components': 'styled', classnames: 'cn', 'react-transition-group': 'ReactTransitionGroup', loaders: 'loaders', 'redux-form': 'redux-form', 'react-intl': 'react-intl', 'message-common': 'message-common' },
};

我的汇总捆绑很好,没有警告。

我已经尝试了所有导入的可能性:

import reduxForm from 'redux-form/lib/immutable/reduxForm';
import Field from 'redux-form/lib/immutable/Field';

import { Field, reduxForm } from 'redux-form/es/immutable';

import { Field, reduxForm } from 'redux-form/es/immutable';

但没有任何效果,每次我在某处安装此模块时,已转换的ES会用这些导入替换此行

import reactRedux from 'react-redux';
import redux from 'redux';

我认为这种情况正在发生,因为 redux-form 取决于这两者。由于这两个模块没有默认导出,因此会抛出错误:

  警告在./node_modules/login-form/dist/login-form.es.js   3471:19-24“redux”中未找到“export'default'(导入为'redux')

     警告在./node_modules/login-form/dist/login-form.es.js   3524:26-36“反应还原”中未找到“导出'默认'(导入为'reactRedux')

我尝试使用globalsnamedExports。我还没有办法让 redux-form 成为我项目的同伴。

1 个答案:

答案 0 :(得分:0)

我终于解决了它,我不得不用redux-form/immutable而不是redux-form来设置我的外部