salix/gulpfile.js

299 lines
8.1 KiB
JavaScript
Raw Permalink Normal View History

/* eslint-disable no-console */
require('require-yaml');
const gulp = require('gulp');
const PluginError = require('plugin-error');
const log = require('fancy-log');
2024-01-25 23:09:24 +00:00
const Myt = require('@verdnatura/myt/myt');
const Run = require('@verdnatura/myt/myt-run');
const Start = require('@verdnatura/myt/myt-start');
2024-04-26 10:10:05 +00:00
const watchDatabaseChanges = require('./db/dbWatcher');
2017-10-18 04:41:17 +00:00
// Configuration
let isWindows = /^win/.test(process.platform);
let langs = ['es', 'en'];
let srcDir = './front';
2018-12-27 11:54:16 +00:00
let modulesDir = './modules';
2024-02-06 20:51:15 +00:00
let buildDir = 'front/dist';
2019-02-11 21:57:48 +00:00
let backSources = [
'!node_modules',
'!loopback/locale/*.json',
'loopback',
'modules/*/back/**',
2019-02-06 15:08:23 +00:00
'modules/*/back/*',
'back',
'print'
];
// Development
2017-05-16 10:37:48 +00:00
const localesRoutes = gulp.parallel(locales, routes);
localesRoutes.description = `Builds locales and routes`;
const front = gulp.series(clean, gulp.parallel(localesRoutes, watch, webpackDevServer));
front.description = `Starts frontend service`;
2018-01-31 11:17:17 +00:00
function backOnly(done) {
2018-12-27 11:54:16 +00:00
let app = require(`./loopback/server/server`);
2019-01-25 22:02:29 +00:00
app.start();
app.on('started', done);
}
backOnly.description = `Starts backend service`;
function backWatch(done) {
const nodemon = require('gulp-nodemon');
2019-01-28 11:14:22 +00:00
// XXX: Workaround to avoid nodemon bug
// https://github.com/remy/nodemon/issues/1346
2020-06-17 12:03:14 +00:00
let commands = ['node --tls-min-v1.0 --inspect ./node_modules/gulp/bin/gulp.js'];
2019-01-29 20:00:27 +00:00
if (!isWindows) commands.unshift('sleep 1');
nodemon({
2019-01-29 20:00:27 +00:00
exec: commands.join(' && '),
2019-02-18 11:55:22 +00:00
ext: 'js html css json',
args: ['backOnly'],
watch: backSources,
done: done
});
}
backWatch.description = `Starts backend in watcher mode`;
const back = gulp.series(dockerStart, backWatch);
back.description = `Starts backend and database service`;
const defaultTask = gulp.parallel(front, back);
defaultTask.description = `Starts all application services`;
async function install() {
const spawn = require('child_process').spawn;
console.log('-> Installing global packages...');
await pnpmInstall();
const modules = ['front', 'print'];
for (const module of modules) {
console.log(`-> Installing '${module}' packages...`);
await pnpmInstall(module);
}
async function pnpmInstall(prefix) {
let args = ['install', '--prefer-offline'];
if (prefix) args = args.concat(['--prefix', prefix]);
const options = {
stdio: [
process.stdin,
process.stdout,
process.stderr
]
};
await new Promise((resolve, reject) => {
const child = spawn('pnpm', args, options);
child.on('exit', code => {
if (code !== 0)
reject(new Error(`pnpm exit code ${code}`));
else
resolve(code);
});
});
}
}
install.description = `Installs node dependencies in all directories`;
2018-06-12 09:24:43 +00:00
const i = gulp.series(install);
i.description = `Alias for the 'install' task`;
// Deployment
2018-06-12 09:24:43 +00:00
2019-01-25 22:02:29 +00:00
const build = gulp.series(clean, gulp.parallel(localesRoutes, webpack));
build.description = `Generates binaries and configuration files`;
function clean() {
const del = require('del');
const files = [
2018-12-27 15:10:55 +00:00
`${buildDir}/*`
];
return del(files, {force: true});
}
clean.description = `Cleans all files generated by the 'build' task`;
// Webpack
function webpack(done) {
const webpackCompile = require('webpack');
const merge = require('webpack-merge');
let wpConfig = require('./webpack.config.js');
wpConfig = merge(wpConfig, {});
let compiler = webpackCompile(wpConfig);
compiler.run(function(err, stats) {
if (err) throw new PluginError('webpack', err);
log('[webpack]', stats.toString(wpConfig.stats));
done();
});
}
webpack.description = `Transpiles application into files`;
function webpackDevServer(done) {
2024-05-15 05:53:42 +00:00
const replace = require('gulp-replace');
const rename = require('gulp-rename');
const webpack = require('webpack');
const merge = require('webpack-merge');
const WebpackDevServer = require('webpack-dev-server');
let wpConfig = require('./webpack.config.js');
wpConfig = merge(wpConfig, {});
let devServer = wpConfig.devServer;
2024-05-15 05:53:42 +00:00
// local env
gulp.src(srcDir + '/env.template.js')
.pipe(replace('${NODE_ENV}', 'development'))
.pipe(rename('env.js'))
.pipe(gulp.dest(buildDir));
for (let entryName in wpConfig.entry) {
let entry = wpConfig.entry[entryName];
if (!Array.isArray(entry))
entry = [entry];
let wdsAssets = [
`webpack-dev-server/client?http://localhost:${devServer.port}/`,
`webpack/hot/dev-server`
];
wpConfig.entry[entryName] = wdsAssets.concat(entry);
}
let compiler = webpack(wpConfig);
new WebpackDevServer(compiler, wpConfig.devServer)
.listen(devServer.port, devServer.host, function(err) {
if (err) throw new PluginError('webpack-dev-server', err);
2019-10-14 10:01:19 +00:00
// XXX: Keep the server alive or continue?
done();
});
}
webpackDevServer.description = `Transpiles application into memory`;
// Locale
2018-12-27 11:54:16 +00:00
let localeFiles = [
`${srcDir}/**/locale/*.yml`,
`${modulesDir}/*/front/**/locale/*.yml`
];
/**
* Mixes all locale files into one JSON file per module and language. It looks
* recursively in all project directories for locale folders with per language
* yaml translation files.
*
* @return {Stream} The merged gulp streams
*/
function locales() {
const mergeJson = require('gulp-merge-json');
const gulpFile = require('gulp-file');
2018-02-04 14:46:46 +00:00
const yaml = require('gulp-yaml');
2018-02-05 18:34:04 +00:00
const merge = require('merge-stream');
const fs = require('fs-extra');
2018-02-05 18:34:04 +00:00
let streams = [];
2018-12-27 11:54:16 +00:00
let localePaths = [];
let modules = fs.readdirSync(modulesDir);
for (let mod of modules)
2018-12-27 11:54:16 +00:00
localePaths[mod] = `${modulesDir}/${mod}`;
2019-01-25 22:02:29 +00:00
let baseMods = ['core', 'salix'];
2018-12-27 11:54:16 +00:00
for (let mod of baseMods)
localePaths[mod] = `${srcDir}/${mod}`;
for (let mod in localePaths) {
let path = localePaths[mod];
for (let lang of langs) {
2018-12-27 11:54:16 +00:00
let localeFiles = `${path}/**/locale/${lang}.yml`;
2017-03-01 08:55:17 +00:00
streams.push(gulp.src(localeFiles)
2018-02-04 14:46:46 +00:00
.pipe(yaml())
.pipe(mergeJson({fileName: `${lang}.json`}))
2017-03-01 08:55:17 +00:00
.pipe(gulp.dest(`${buildDir}/locale/${mod}`)));
}
}
for (let mod in localePaths) {
for (let lang of langs) {
let file = `${buildDir}/locale/${mod}/${lang}.json`;
if (fs.existsSync(file)) continue;
streams.push(gulpFile('en.json', '{}', {src: true})
.pipe(gulp.dest(`${buildDir}/locale/${mod}`)));
}
}
return merge(streams);
}
locales.description = `Generates client locale files`;
// Routes
2018-12-27 11:54:16 +00:00
let routeFiles = `${modulesDir}/*/front/routes.json`;
function routes() {
2018-02-05 18:34:04 +00:00
const concat = require('gulp-concat');
const wrap = require('gulp-wrap');
return gulp.src(routeFiles)
.pipe(concat('routes.js', {newLine: ','}))
.pipe(wrap('var routes = [<%=contents%>\n];'))
.pipe(gulp.dest(buildDir));
}
routes.description = 'Merges all module routes file into one file';
// Watch
function watch(done) {
gulp.watch(routeFiles, gulp.series(routes));
gulp.watch(localeFiles, gulp.series(locales));
2024-04-26 10:10:05 +00:00
watchDatabaseChanges();
done();
}
watch.description = `Watches for changes in routes and locale files`;
2017-10-18 04:41:17 +00:00
2018-02-01 15:01:49 +00:00
// Docker
async function dockerStart() {
const myt = new Myt();
await myt.init({workspace: __dirname});
await myt.run(Start);
await myt.deinit();
}
dockerStart.description = `Starts the DB container`;
async function docker() {
const myt = new Myt();
await myt.init({workspace: __dirname});
await myt.run(Run);
await myt.deinit();
}
docker.description = `Builds and starts the DB container`;
2018-02-01 11:52:58 +00:00
module.exports = {
default: defaultTask,
front,
back,
backOnly,
backWatch,
2019-01-09 14:41:15 +00:00
i,
2019-02-11 21:57:48 +00:00
install,
build,
clean,
webpack,
webpackDevServer,
routes,
2019-02-11 21:57:48 +00:00
locales,
localesRoutes,
watch,
dockerStart,
docker
};