DocSpace-client/packages/client/webpack.config.js

397 lines
11 KiB
JavaScript

const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const ModuleFederationPlugin =
require("webpack").container.ModuleFederationPlugin;
const DefinePlugin = require("webpack").DefinePlugin;
const BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const ExternalTemplateRemotesPlugin = require("external-remotes-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const minifyJson = require("@docspace/shared/utils/minifyJson");
const sharedDeps = require("@docspace/shared/constants/sharedDependencies");
//const fs = require("fs");
//const { readdir } = require("fs").promises;
const path = require("path");
const pkg = require("./package.json");
const runtime = require("../runtime.json");
const deps = pkg.dependencies || {};
const homepage = pkg.homepage;
const title = pkg.title;
const version = pkg.version;
const dateHash = runtime?.date || "";
//const isAlreadyBuilding = false;
const config = {
entry: "./src/index",
target: "web",
mode: "development",
devServer: {
allowedHosts: "all",
devMiddleware: {
publicPath: homepage,
},
static: {
directory: path.join(__dirname, "dist"),
publicPath: homepage,
},
client: {
logging: "info",
// Can be used only for `errors`/`warnings`
//
// overlay: {
// errors: true,
// warnings: true,
// }
overlay: {
warnings: false,
},
progress: true,
},
port: 5001,
historyApiFallback: {
// Paths with dots should still use the history fallback.
// See https://github.com/facebook/create-react-app/issues/387.
disableDotRule: true,
index: homepage,
},
hot: false,
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS",
"Access-Control-Allow-Headers":
"X-Requested-With, content-type, Authorization",
},
open: {
target: [`http://localhost:8092`],
app: {
name: "google-chrome",
arguments: ["--incognito", "--new-window"],
},
},
},
resolve: {
extensions: [".jsx", ".js", ".tsx", ".ts", ".json"],
fallback: {
crypto: false,
},
alias: {
PUBLIC_DIR: path.resolve(__dirname, "../../public"),
ASSETS_DIR: path.resolve(__dirname, "./public"),
SRC_DIR: path.resolve(__dirname, "./src"),
PACKAGE_FILE: path.resolve(__dirname, "package.json"),
COMMON_DIR: path.resolve(__dirname, "../common"),
},
},
output: {
publicPath: "auto",
chunkFilename: "static/js/[id].[contenthash].js",
path: path.resolve(process.cwd(), "dist"),
filename: "static/js/[name].[contenthash].bundle.js",
assetModuleFilename: (pathData) => {
//console.log({ pathData });
let result = pathData.filename
.substr(pathData.filename.indexOf("public/"))
.split("/")
.slice(1);
result.pop();
let folder = result.join("/");
folder += result.length === 0 ? "" : "/";
return `static/${folder}[name][ext]?hash=[contenthash]`; // `${folder}/[name].[contenthash][ext]`;
},
},
performance: {
maxEntrypointSize: 512000,
maxAssetSize: 512000,
},
module: {
rules: [
{
test: /\.(png|jpe?g|gif|ico|woff2)$/i,
type: "asset/resource",
generator: {
emit: false,
},
},
{
test: /\.svg$/i,
type: "asset/resource",
generator: {
emit: false,
},
resourceQuery: /url/, // *.svg?url
},
{
test: /\.json$/,
resourceQuery: /url/,
use: [
{
loader: "file-loader",
options: {
emitFile: false,
name: (resourcePath) => {
let result = resourcePath
.split(`public${path.sep}`)[1]
.split(path.sep);
result.pop();
let folder = result.join("/");
folder += result.length === 0 ? "" : "/";
return `${folder}[name].[ext]?hash=[contenthash]`; // `${folder}/[name].[contenthash][ext]`;
},
},
},
],
},
{
test: /\.json$/,
resourceQuery: { not: [/url/] }, // exclude if *.json?url,
loader: "json-loader",
},
{
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
resourceQuery: { not: [/url/] }, // exclude react component if *.svg?url
use: [
{
loader: "@svgr/webpack",
options: {
svgoConfig: {
plugins: [{ removeViewBox: false }],
},
},
},
],
},
{
test: /\.m?js/,
type: "javascript/auto",
resolve: {
fullySpecified: false,
},
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
{
loader: "css-loader",
options: {
url: {
filter: (url, resourcePath) => {
// resourcePath - path to css file
// Don't handle `/static` urls
if (url.startsWith("/static") || url.startsWith("data:")) {
return false;
}
return true;
},
},
},
},
// Compiles Sass to CSS
"sass-loader",
],
},
{
test: /\.(js|jsx|ts|tsx)$/,
exclude: /node_modules/,
use: [
{
loader: "babel-loader",
options: {
presets: [
["@babel/preset-react", { runtime: "automatic" }],
"@babel/preset-env",
"@babel/preset-typescript",
],
plugins: [
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-export-default-from",
],
},
},
"source-map-loader",
],
},
],
},
plugins: [
new CleanWebpackPlugin(),
new ExternalTemplateRemotesPlugin(),
new CopyPlugin({
patterns: [
// {
// context: path.resolve(__dirname, "public"),
// from: "images/**/*.*",
// },
{
context: path.resolve(__dirname, "public"),
from: "locales/**/*.json",
transform: minifyJson,
},
],
}),
],
};
module.exports = (env, argv) => {
config.devtool = "source-map";
if (argv.mode === "production") {
config.mode = "production";
config.optimization = {
splitChunks: { chunks: "all" },
minimize: !env.minimize,
minimizer: [new TerserPlugin()],
};
}
const remotes = {
client: "client@/remoteEntry.js",
};
if (!env.personal) {
remotes.login = "login@/login/remoteEntry.js";
}
config.plugins.push(
new ModuleFederationPlugin({
name: "client",
filename: "remoteEntry.js",
remotes: remotes,
exposes: {
"./shell": "./src/Shell",
"./store": "./src/store",
"./Error404": "./src/pages/Errors/404/",
"./Error401": "./src/pages/Errors/401",
"./Error403": "./src/pages/Errors/403",
"./Error520": "./src/pages/Errors/520",
"./Layout": "./src/components/Layout",
"./Layout/context": "./src/components/Layout/context.js",
"./Main": "./src/components/Main",
"./NavMenu": "./src/components/NavMenu",
"./PreparationPortalDialog":
"./src/components/dialogs/PreparationPortalDialog/PreparationPortalDialogWrapper.js",
"./SharingDialog": "./src/components/panels/SharingDialog",
"./utils": "./src/helpers/filesUtils.js",
"./SelectFileDialog":
"./src/components/FilesSelector/FilesSelectorWrapper",
"./SelectFolderDialog":
"./src/components/FilesSelector/FilesSelectorWrapper",
"./PeopleSelector": "./src/components/PeopleSelector",
"./PeopleSelector/UserTooltip":
"./src/components/PeopleSelector/sub-components/UserTooltip.js",
"./BrandingPage":
"./src/pages/PortalSettings/categories/common/branding.js",
"./WhiteLabelPage":
"./src/pages/PortalSettings/categories/common/Branding/whitelabel.js",
"./AdditionalResPage":
"./src/pages/PortalSettings/categories/common/Branding/additionalResources.js",
"./CompanyInfoPage":
"./src/pages/PortalSettings/categories/common/Branding/companyInfoSettings.js",
"./BackupPage": "./src/pages/PortalSettings/categories/data-management",
"./RestorePage":
"./src/pages/PortalSettings/categories/data-management/backup/restore-backup",
"./PaymentsPage": "./src/pages/PortalSettings/categories/payments",
},
shared: {
...deps,
...sharedDeps,
},
})
);
if (!!env.hideText) {
config.plugins.push(
new HtmlWebpackPlugin({
title: title,
template: "./public/index.html",
publicPath: homepage,
base: `${homepage}/`,
custom: `<style type="text/css">
div,
p,
a,
span,
button,
h1,
h2,
h3,
h4,
h5,
h6,
::placeholder {
color: rgba(0, 0, 0, 0) !important;
}
</style>`,
})
);
} else {
config.plugins.push(
new HtmlWebpackPlugin({
template: "./public/index.html",
publicPath: homepage,
title: title,
base: `${homepage}/`,
browserDetectorUrl: `/static/scripts/browserDetector.js?hash=${
runtime.checksums["browserDetector.js"] || dateHash
}`,
configUrl: `/static/scripts/config.json?hash=${
runtime.checksums["config.json"] || dateHash
}`,
tiffUrl: `/static/scripts/tiff.min.js?hash=${
runtime.checksums["tiff.min.js"] || dateHash
}`,
})
);
}
const defines = {
VERSION: JSON.stringify(version),
BUILD_AT: DefinePlugin.runtimeValue(function () {
const timeElapsed = Date.now();
const today = new Date(timeElapsed);
return JSON.stringify(today.toISOString().split(".")[0] + "Z");
}, true),
IS_PERSONAL: env.personal || false,
};
config.plugins.push(new DefinePlugin(defines));
if (env.mode === "analyze") {
config.plugins.push(new BundleAnalyzerPlugin());
}
return config;
};