将反应组件拆分为小部件

问题描述 投票:2回答:1

我正在尝试从我现有的反应应用程序创建JS小部件。所以目前我的应用程序看起来像这样

-src 
  - config
  - components
  - containers
  - lib
  - assets
  - widgets
    - widgetOne
    - widgetTwo
      - components
      - widget.js
      - index.js
  - index.js
  - index.html

因此,我希望widgets目录中的目录是自包含的应用程序,我可以将其分解为单独的js文件,客户端只需将js脚本添加到脚本标记中的页面中即可。

我已经接近但仍面临一些问题。此外,我想看看是否有人在更好的模式之后有这样做的经验。

现在我正在使用webpack进行拆分。我只是将/src/widgets/widgetOne/index.js定义为入口点,并完美地创建了一个单独的文件。

这是我的webpack:

const appConstants = function() {
    switch (process.env.NODE_ENV) {
        case 'local':
            const localConfig = require('./config/local');
            return localConfig.config();
        case 'development':
            const devConfig = require('./config/development');
            return devConfig.config();
        case 'production':
        default:
            const prodConfig = require('./config/production');
            return prodConfig.config();
    }
};

const HtmlWebPackPlugin = require("html-webpack-plugin");
const webpack = require('webpack');

const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const htmlWebpackPlugin = new HtmlWebPackPlugin({
    template: "./src/index.html",
    filename: "./index.html",
    hash: true
});

let webpackConfig = {
    module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: /node_modules/,
                use: {
                    loader: "babel-loader"
                }
            },
            {
                test: /\.css$/,
                exclude: [ /assets/, /node_modules/ ],
                use: [
                    {
                        loader: "style-loader"
                    },
                    {
                        loader: "css-loader",
                        options: {
                            modules: true,
                            importLoaders: 1,
                            localIdentName: "[name]_[local]_[hash:base64]",
                            sourceMap: true,
                            minimize: true
                        }
                    }
                ]
            },
            {
                test: /\.(pdf|jpg|png|gif|svg|ico)$/,
                exclude: [/node_modules/],
                use: [
                    {
                        loader: 'file-loader'
                    },
                ]
            },
            {
                test: /\.(woff|woff2|eot|ttf|svg)$/,
                exclude: [/node_modules/],
                use: {
                    loader: 'url-loader?limit100000'
                }
            }
        ]
    },
    entry: {
        main: [ "@babel/polyfill", "./src/index.js"],
        widgetOne: ["./src/widgets/widgetOne/index.js"]
    },
    output: {
        publicPath: appConstants().BASENAME ? JSON.parse(appConstants().BASENAME) : '/'
    }, 
    optimization: {
        splitChunks: {
            chunks: 'all'
        }
    },
    plugins: [
        htmlWebpackPlugin,
        new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /en/),
        new BundleAnalyzerPlugin({
            analyzerMode: 'disabled',
            generateStatsFile: true,
            statsOptions: { source: false }
        }),
        new webpack.DefinePlugin({
            'process.env': appConstants()
        }),
        new webpack.EnvironmentPlugin(['NODE_ENV'])
    ],
    devServer: {
        historyApiFallback: true,
        port: 9090
    }
};

module.exports = webpackConfig;

我现在遇到的问题是当我得到widgetOne.js时: 1)我最终得到了vendor~tidgetOne.js文件,我还需要包含该文件以使widgetOne应用程序正常工作。 2)widgetOne.js也被添加到我的主要应用程序的index.html文件中,我不想要。

有没有办法正确配置webpack以使其工作?

javascript reactjs webpack-4
1个回答
0
投票

所以,这是我提出的解决方案似乎有效。我仍然不知道这是否是最好的方法,但它是我唯一能够为我工作的方法。

我决定将小部件构建为不同的环境进程,并根据该环境修改webpack配置。

所以package.json我在脚本下添加了这一行: qazxsw poi

我将此部分添加到我的"build-widgets": "cross-env NODE_ENV=plugins webpack --mode development",文件的末尾:

webpack.config.js

或者,我本可以只添加第二个// Override webpack configs when building plugins if ( process.env.NODE_ENV === 'plugins') { webpackConfig.entry = { widgetOne: [ "@babel/polyfill", "./src/plugins/widgetOne/index.js"] } webpackConfig.output = { publicPath: appConstants().DS_BASENAME ? JSON.parse(appConstants().DS_BASENAME) : '/', path: __dirname + '/dist/widgets', library: 'MyApp', libraryTarget: 'umd', umdNamedDefine: true } } 来处理我的小部件构建。在我的情况下,我还没有感觉到它的需要,但它是值得考虑的事情,只是为了保持配置分开。

© www.soinside.com 2019 - 2024. All rights reserved.