summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/tools/gulp/tasks/prod.js
blob: 509bec857abcd09e0bf33bea413b97435f27d785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*!
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
'use strict';

let gulp, replace, Promise, webpack, webpackProductionConfig,cloneDeep, tap;
let langs = [];

/*
Runs the webpack build.
Will first seach for the resource bundles to see how many languages are supported and then run a build per langauage
 */
function buildWebPackForLanguage(prodConfig, lang) {
	return new Promise(function (resolve, reject) {
		webpack(prodConfig, function (err, stats) {
			console.log('[webpack:build ' + prodConfig.output.filename + ']', stats.toString());
			if (err || stats.hasErrors()) {
				console.log('webpack:build : Failure!! ' + prodConfig.output.filename + ']');
				reject(err || stats.toJson().errors);
			}
			else {
				console.log('webpack:build : Done ' + prodConfig.output.filename + ']');
				resolve();
			}
		});
	});
}
/*
 // this will check in the src directory which language bundles we have and will
 // create the array to that we can run a webpack build per language afterwards
 */
function getSupportedLanguages(options) {
	return new Promise((resolve, reject) => {
		gulp.src(options.i18nBundles)
			.pipe(tap(function(file) {
				let languageStartIndex = file.path.lastIndexOf('i18n') + 5;
				let languageStr =  file.path.indexOf('.json') - languageStartIndex;
				let currentLang = file.path.substr(languageStartIndex, languageStr);
				console.log('Found bundle ' +  file.path + ' for [' + currentLang  + ']');
				langs[currentLang] = file.path;
			}))
			.pipe(gulp.dest(options.outDir))
			.on('end', function () {
				resolve();
			})
			.on('error', function (e) {
				console.log('getLanguages : Failure!!');
				reject(e);
			});
	});
}

/**
 * @param options
 * @param options.outFileName optional <default build>
 */
function prodTask(options) {
	gulp = require('gulp');
	replace = require('gulp-replace');
	Promise = require('bluebird');
	webpack = require('webpack');
	cloneDeep = require('lodash/cloneDeep');
	tap = require('gulp-tap');


	// updating webpack for the production build. no need for sourcemaps in this case.
	webpackProductionConfig = require('../../../webpack.production');

	// get the languages so that we can bulid per language with the correct bundle
	let getLanguages =getSupportedLanguages(options);
	// this will run a webpack build per language
	return getLanguages.then(() => {
		let promises = [];
		for (var lang in langs) {
			let prodConfig = cloneDeep(webpackProductionConfig);
			prodConfig.resolve.alias.i18nJson = langs[lang];
			prodConfig.output.filename = (options.outFileName || '[name].js').replace(/.js$/, '_' + lang + '.js');
			promises.push(buildWebPackForLanguage(prodConfig, lang));
		}
		return Promise.all(promises);
	});

}

module.exports = prodTask;