2021-01-20 16:31:34 +01:00
|
|
|
/*
|
|
|
|
* Common Environment
|
|
|
|
*/
|
|
|
|
|
2021-05-03 19:00:50 +02:00
|
|
|
const YML_PATH = './webpack.yml';
|
|
|
|
const CONF_VAR = 'App\\Templates\\WebpackTemplateProvider';
|
2021-01-20 16:31:34 +01:00
|
|
|
|
|
|
|
const path = require('path');
|
2021-05-03 19:00:50 +02:00
|
|
|
const fs = require('fs');
|
|
|
|
const yaml = require('js-yaml');
|
|
|
|
const webpack = require('webpack');
|
2021-01-20 16:31:34 +01:00
|
|
|
|
2021-05-03 19:00:50 +02:00
|
|
|
/*
|
|
|
|
* Load webpack configuration from webpack.yml
|
|
|
|
*/
|
|
|
|
|
|
|
|
const yml = yaml.safeLoad(
|
|
|
|
fs.readFileSync(path.join(__dirname, YML_PATH), 'utf8'),
|
|
|
|
);
|
|
|
|
const conf = yml[CONF_VAR]
|
|
|
|
|
|
|
|
let themes = [];
|
|
|
|
// add themes
|
|
|
|
if (conf.THEMESDIR) {
|
|
|
|
const themeDir = conf.THEMESDIR;
|
|
|
|
const dir = path.resolve(__dirname, themeDir);
|
|
|
|
|
|
|
|
if (fs.existsSync(dir)) {
|
|
|
|
fs.readdirSync(dir).forEach((file) => {
|
|
|
|
filePath = path.join(themeDir, file);
|
|
|
|
const stat = fs.statSync(filePath);
|
|
|
|
|
|
|
|
if (stat && stat.isDirectory()) {
|
|
|
|
themes.push(filePath);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup Entries */
|
2021-01-20 16:31:34 +01:00
|
|
|
const includes = {};
|
|
|
|
const modules = [
|
2021-05-03 19:00:50 +02:00
|
|
|
path.resolve(__dirname, conf.APPDIR, conf.SRC),
|
|
|
|
path.resolve(__dirname, conf.APPDIR, conf.SRC, 'js'),
|
|
|
|
path.resolve(__dirname, conf.APPDIR, conf.SRC, 'scss'),
|
|
|
|
path.resolve(__dirname, conf.APPDIR, conf.SRC, 'img'),
|
|
|
|
path.resolve(__dirname, conf.APPDIR, conf.SRC, 'thirdparty'),
|
|
|
|
path.resolve(__dirname, 'node_modules'),
|
|
|
|
path.resolve(__dirname),
|
|
|
|
path.resolve(__dirname, 'public'),
|
2021-01-20 16:31:34 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
const _addAppFiles = (theme) => {
|
2021-05-03 19:00:50 +02:00
|
|
|
const dirPath = './' + theme;
|
|
|
|
let themeName = path.basename(theme);
|
|
|
|
if (themeName == '.') {
|
|
|
|
themeName = 'app';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fs.existsSync(path.join(dirPath, conf.SRC, 'js', 'app.js'))) {
|
|
|
|
includes[`${themeName}`] = path.join(dirPath, conf.SRC, 'js', 'app.js');
|
|
|
|
} else if (
|
|
|
|
fs.existsSync(path.join(dirPath, conf.SRC, 'scss', 'app.scss'))
|
|
|
|
) {
|
|
|
|
includes[`${themeName}`] = path.join(
|
|
|
|
dirPath,
|
|
|
|
conf.SRC,
|
|
|
|
'scss',
|
|
|
|
'app.scss',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
modules.push(path.join(dirPath, conf.SRC, 'js'));
|
|
|
|
modules.push(path.join(dirPath, conf.SRC, 'scss'));
|
|
|
|
modules.push(path.join(dirPath, conf.SRC, 'img'));
|
|
|
|
modules.push(path.join(dirPath, conf.SRC, 'thirdparty'));
|
|
|
|
|
|
|
|
const _getAllFilesFromFolder = function(dir, includeSubFolders = true) {
|
|
|
|
const dirPath = path.resolve(__dirname, dir);
|
|
|
|
let results = [];
|
|
|
|
|
|
|
|
fs.readdirSync(dirPath).forEach((file) => {
|
|
|
|
if (file.charAt(0) === '_') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const filePath = path.join(dirPath, file);
|
|
|
|
const stat = fs.statSync(filePath);
|
|
|
|
|
|
|
|
if (stat && stat.isDirectory() && includeSubFolders) {
|
|
|
|
results = results.concat(
|
|
|
|
_getAllFilesFromFolder(filePath, includeSubFolders),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
results.push(filePath);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return results;
|
|
|
|
};
|
|
|
|
|
|
|
|
// add page specific scripts
|
|
|
|
const typesJSPath = path.join(theme, conf.TYPESJS);
|
|
|
|
if (fs.existsSync(typesJSPath)) {
|
|
|
|
const pageScripts = _getAllFilesFromFolder(typesJSPath, true);
|
|
|
|
pageScripts.forEach((file) => {
|
|
|
|
includes[`${themeName}_${path.basename(file, '.js')}`] = file;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// add page specific scss
|
|
|
|
const typesSCSSPath = path.join(theme, conf.TYPESSCSS);
|
|
|
|
if (fs.existsSync(typesSCSSPath)) {
|
|
|
|
const scssIncludes = _getAllFilesFromFolder(typesSCSSPath, true);
|
|
|
|
scssIncludes.forEach((file) => {
|
|
|
|
includes[`${themeName}_${path.basename(file, '.scss')}`] = file;
|
|
|
|
});
|
|
|
|
}
|
2021-01-20 16:31:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
_addAppFiles(conf.APPDIR);
|
|
|
|
|
2021-01-31 14:29:24 +01:00
|
|
|
// remove some backend includes
|
|
|
|
delete includes['app_editor'];
|
|
|
|
delete includes['app_cms'];
|
|
|
|
delete includes['app_order'];
|
|
|
|
|
2021-01-20 16:31:34 +01:00
|
|
|
// add themes
|
2021-05-03 19:00:50 +02:00
|
|
|
themes.forEach((theme) => {
|
|
|
|
_addAppFiles(theme);
|
2021-01-20 16:31:34 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = {
|
2021-05-03 19:00:50 +02:00
|
|
|
configuration: conf,
|
|
|
|
themes: themes,
|
|
|
|
webpack: {
|
|
|
|
entry: includes,
|
|
|
|
externals: {
|
|
|
|
// comment out jQuery if you don't use it to prevent bootstrap thinking that there's jQuery present
|
|
|
|
//jquery: 'jQuery',
|
|
|
|
react: 'React',
|
|
|
|
'react-dom': 'ReactDOM',
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
modules: modules,
|
|
|
|
alias: {
|
|
|
|
// comment out jQuery if you don't use it to prevent bootstrap thinking that there's jQuery present
|
|
|
|
/*'window.jQuery': require.resolve('jquery'),
|
|
|
|
$: require.resolve('jquery'),
|
|
|
|
jquery: require.resolve('jquery'),
|
|
|
|
jQuery: require.resolve('jquery'),*/
|
|
|
|
react: require.resolve('react'),
|
|
|
|
'react-dom': require.resolve('react-dom'),
|
|
|
|
},
|
|
|
|
fallback: { path: false },
|
|
|
|
},
|
|
|
|
experiments: {
|
|
|
|
topLevelAwait: true,
|
|
|
|
},
|
|
|
|
}
|
2021-01-20 16:31:34 +01:00
|
|
|
};
|