blob: 331724b75707ff32946f88cb400c0998905a8f2c [file] [log] [blame]
'use strict';
let gulp = require('gulp');
let replace = require('gulp-replace');
let del = require('del');
let zip = require('gulp-zip');
let gulpSass = require('gulp-sass');
let runSequence = require('run-sequence');
let gulpCssUsage = require('gulp-css-usage').default;
let prodTask = require('./tools/gulp/tasks/prod');
let i18nTask = require('./tools/gulp/tasks/i18n.js');
let jsonConfig = {
"appContextPath" : "/onboarding"
};
try {
jsonConfig = require('./src/sdc-app/config/config.json');
} catch (e) {
console.log('could not load config. using default value instead');
}
const appName = 'onboarding';
const dist = 'dist';
const path = {
// inputs
json: './src/**/*.json',
index: './src/index.html',
heat: './src/heat.html',
scss: './resources/scss/**/*.scss',
i18nBundles: './src/nfvo-utils/i18n/*.json',
svgSrc: './resources/images/svg/*.svg',
appinf: './webapp-onboarding/**/*.*',
jetty: './webapp-onboarding/WEB-INF/jetty-web.xml',
healthCheckInput: './external-resources/healthcheck/healthcheck',
srcDir: './src/',
// output
output: dist,
css: dist + '/css',
// svg: dist + '/resources/images/svg',
appinf_output: dist + '/webapp-onboarding',
healthCheckOutput: dist + '/v1.0',
// war
war: [dist + '/index.html', dist + '/punch-outs*.js', dist + '/**/*.{css,png,svg,eot,ttf,woff,woff2,otf}', dist + '/**/*(config.json)', dist + '/webapp-onboarding/**', dist + '/**/*(healthcheck)'],
heatWar: [dist + '/heat.html', dist + '/heat-validation_en.js', dist + '/**/*.{css,png,svg,eot,ttf,woff,woff2,otf}', dist + '/**/*(config.json)', 'webapp-heat-validation/**'],
wardest: dist,
// storybook
storybookFonts: './.storybook/fonts/*',
storybookDist: './.storybook-dist',
//storybookResources: './.storybook/resources/onboarding/resources/images/svg',
//storybookDistResources: './.storybook-dist/onboarding/resources/images/svg'
};
// cleans up the output directory
gulp.task('clean', callback => {
return del([path.output], callback);
})
// copies for all relevant files to the output directory'
gulp.task('copy-json', () => {
gulp.src(path.json)
.pipe(gulp.dest(path.output));
});
gulp.task('copy-index.html', () => {
gulp.src(path.index)
.pipe(gulp.dest(path.output));
});
gulp.task('copy-heat.html', () => {
gulp.src(path.heat)
.pipe(gulp.dest(path.output));
});
gulp.task('copy-storybook-fonts', () => {
gulp.src(path.storybookFonts)
.pipe(gulp.dest(path.storybookDist));
});
// used for compressing war files
/**
* replaced with gulp
*/
gulp.task('compress-war', ()=> {
gulp.src(path.war)
.pipe(zip(appName + '.war'))
.pipe(gulp.dest(path.wardest));
});
gulp.task('compress-heat-war', ()=> {
gulp.src(path.heatWar)
.pipe(zip('heat-validation.war'))
.pipe(gulp.dest(path.wardest));
});
//TODO: delete this task after gulp-css-usage support for SCSS files
gulp.task('sass', () => {
return gulp.src(path.scss)
.pipe(gulpSass({outputStyle: 'compressed'}).on('error', gulpSass.logError))
.pipe(gulp.dest(path.css));
});
// copy the healthcheck file and replace the version with command line argument
gulp.task('healthcheck', function(){
let args = process.argv;
let versionArg = args.find(arg => arg.startsWith('--version'));
let version = versionArg && versionArg.slice(versionArg.indexOf('=') + 1);
if (versionArg) {
gulp.src(path.healthCheckInput)
.pipe(replace('{VERSION}', version))
.pipe(gulp.dest(path.healthCheckOutput));
}
});
// update the app-context for the web-xml file to the value from the config
gulp.task('app-context', function(){
gulp.src([path.appinf])
.pipe(gulp.dest(path.appinf_output))
.on('end', function () {
gulp.src([path.jetty])
.pipe(replace(/<Set name="contextPath">.*<\/Set>/g, '<Set name="contextPath">'+jsonConfig.appContextPath+'</Set>'))
.pipe(gulp.dest(path.appinf_output + '/WEB-INF'));
})
});
// aggregates all copy tasks
gulp.task('copy-stuff', callback => runSequence(['copy-json', 'copy-index.html', 'copy-heat.html', 'app-context'], callback));
// minimum build for dev
gulp.task('dev', callback => runSequence('clean', 'copy-stuff', callback));
// build procedure for war file
gulp.task('build', callback => runSequence('clean', 'copy-stuff', 'healthcheck', 'prod', ['compress-war', 'compress-heat-war'], callback));
// default build is set to 'dev'
gulp.task('default', ['dev']);
// creating the webpack tasks for the production build
gulp.task('prod', () => prodTask({outDir: path.output, i18nBundles : path.i18nBundles})
.catch(err => {
if (err && err.stack) {
console.error(err, err.stack);
}
throw new Error('Webpack build FAILED');
})
);
/***
* T O O L S . N O T P A R T O F B U I L D
*/
// this is used to manually run on the sass files to check which classes are never used. not run as part of build.
// can be run as npm task
gulp.task('gulp-css-usage', () => {
return gulp.src('src/**/*.jsx').pipe(gulpCssUsage({css: path.css + '/style.css', babylon: ['objectRestSpread']}));
});
gulp.task('css-usage', () => {
runSequence('sass', 'gulp-css-usage');
});
gulp.task('static-keys-bundle', () => i18nTask({outDir: path.output, srcDir: path.srcDir})
.catch(err => {
throw new Error('static-keys-bundle FAILED');
})
);
gulp.task('static-keys-bundle-with-report', () => i18nTask({outDir: path.output, srcDir: path.srcDir, i18nBundles : path.i18nBundles })
.catch(err => {
throw new Error('static-keys-bundle FAILED');
})
);