forked from GenesysDX-Bold360/Html-Chat-Sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
432 lines (366 loc) · 14 KB
/
gulpfile.js
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/*eslint-env node*/
'use strict';
//Various Arguments that can used i.e. gulp {--verbose --prod --minhtml}:
// --verbose = print out the files affected by each task
// --prod = create concatenated versions of the js/css files and have the html reference those files
// --min = used in conjuction with the --prod argument to further minify those js/css files and have the html reference accordingly
// --minhtml = minify the html
var nameJsIndexStart = 'bc-sdk-start';
var nameJsPopupStart = nameJsIndexStart + '-popup';
var nameJsBoldchat = 'boldchat';
var fs = require('fs');
var gulp = require('gulp');
var argv = require('yargs').argv;
var req = require('gulp-load-plugins')({lazy: true}); //lazy loads the gulp- plugins when invoked
var config = require('./gulpfile.config')();
var del = require('del');
var karma = require('karma').server;
var path = require('path');
var rmvEmptyDirs = require('remove-empty-directories');
var mangle = true;
var beautify = false;
//var lazypipe = require('lazypipe');
function log(msg) {
if(typeof(msg) === 'object') {
for(var i in msg) {
if(msg.hasOwnProperty(i)) {
req.util.log(req.util.colors.blue(msg[i]));
}
}
} else {
req.util.log(req.util.colors.blue(msg));
}
}
function clean(path, cb) {
log('Cleaning: ' + req.util.colors.blue(path));
del(path, cb);
}
//***** Begin Gulp Tasks *****//
gulp.task('clean', function(cb) {
clean(config.out_dest, cb);
});
gulp.task('clean-sass', function(cb) {
clean(config.css_dest, cb);
});
gulp.task('sass', ['clean-sass'], function() {
log('Compiling SCSS and minifying css result');
return gulp.src(config.css_src, {base: config.base})
.pipe(req.if(argv.verbose, req.print()))
.pipe(req.if(argv.min, req.sourcemaps.init()))
.pipe(req.sass({outputStyle: 'expanded'}))
.pipe(req.if(!argv.min, gulp.dest(config.out_dest)))
.pipe(req.if(argv.min, req.minifyCss()))
.pipe(req.if(argv.min, req.rename({suffix: '.min'})))
.pipe(req.if(argv.min, req.sourcemaps.write('./')))
.pipe(req.if(argv.min, gulp.dest(config.out_dest)));
});
gulp.task('sass-dev', function() {
gulp.src(config.css_src)
.pipe(req.sass({outputStyle: 'expanded'}))
.pipe(gulp.dest('./src/'));
});
gulp.task('clean-fonts', function(cb) {
clean(config.font_dest, cb);
});
gulp.task('fonts', function() {
log('Copying font files');
return gulp.src(config.font_src, {base: config.base})
.pipe(req.newer(config.out_dest))
.pipe(req.if(argv.verbose, req.print()))
.pipe(gulp.dest(config.out_dest));
});
gulp.task('clean-images', function(cb) {
clean(config.image_dest, cb);
});
gulp.task('images', function() {
log('Copying and optimizing images');
return gulp.src(config.image_src, {base: config.base})
.pipe(req.newer(config.out_dest))
.pipe(req.if(argv.verbose, req.print()))
.pipe(req.imagemin({optimizationLevel: 3}))
.pipe(gulp.dest(config.out_dest));
});
gulp.task('clean-videos', function(cb) {
clean(config.video_dest, cb);
});
gulp.task('videos', function() {
log('Copying and optimizing videos');
return gulp.src(config.video_src, {base: config.base})
.pipe(req.newer(config.out_dest))
.pipe(req.if(argv.verbose, req.print()))
.pipe(gulp.dest(config.out_dest));
});
gulp.task('clean-recipes', function(cb) {
clean(config.recipe_dest, cb);
});
gulp.task('recipes', function() {
log('Copying recipe files');
return gulp.src(config.recipe_src, {base: config.base})
.pipe(req.newer(config.out_dest))
.pipe(req.if(argv.verbose, req.print()))
.pipe(gulp.dest(config.out_dest));
});
gulp.task('clean-start-js', function(cb) {
var startJs = config.js_start_dest_src;
startJs.push(config.js_dest + nameJsIndexStart + '*');
startJs.push('!' + config.js_dest + nameJsPopupStart + '*');
clean(startJs, cb);
});
var getStartJsSource = function(fileType) {
return gulp.src(fileType && fileType === 'popup' ? config.js_popup_start : config.js_start)
.pipe(req.if(argv.verbose, req.print()));
};
gulp.task('minify-start-js', ['clean-start-js'], function() {
log('Minifying, concatenating and uglifying start js files');
if(argv.prod || argv.min) {
return getStartJsSource()
.pipe(req.if(argv.min, req.sourcemaps.init()))
.pipe(req.concat(nameJsIndexStart + '.js'))
.pipe(req.if(!argv.min, gulp.dest(config.js_dest)))
.pipe(req.if(argv.min, req.uglify({mangle: mangle, output: {beautify: beautify}})))
.pipe(req.if(argv.min, req.rename({suffix: '.min'})))
.pipe(req.if(argv.min, req.sourcemaps.write('./')))
.pipe(req.if(argv.min, gulp.dest(config.js_dest)));
} else {
return getStartJsSource()
.pipe(gulp.dest(config.js_dest));
}
});
gulp.task('clean-boldchat-js', function(cb) {
var bcJs = config.js_bc_dest_src;
bcJs.push(config.js_dest + nameJsBoldchat + '*');
clean(bcJs, cb);
});
var getBoldchatJsSource = function() {
return gulp.src(config.js_bc)
.pipe(req.if(argv.verbose, req.print()));
};
gulp.task('minify-boldchat-js', ['clean-boldchat-js'], function() {
log('Minifying, concatenating and uglifying boldchat js files');
if(argv.prod || argv.min) {
return getBoldchatJsSource()
.pipe(req.if(argv.min, req.sourcemaps.init()))
.pipe(req.concat(nameJsBoldchat + '.js'))
.pipe(req.if(!argv.min, gulp.dest(config.js_dest)))
.pipe(req.if(argv.min, req.uglify({mangle: mangle, output: {beautify: beautify}})))
.pipe(req.if(argv.min, req.rename({suffix: '.min'})))
.pipe(req.if(argv.min, req.sourcemaps.write('./')))
.pipe(req.if(argv.min, gulp.dest(config.js_dest)));
} else {
return getBoldchatJsSource()
.pipe(gulp.dest(config.js_dest));
}
});
gulp.task('clean-popup-js', function(cb) {
var startPopupJs = config.js_popup_dest_src;
startPopupJs.push(config.js_dest + nameJsPopupStart + '*');
clean(startPopupJs, cb);
});
gulp.task('minify-popup-js', ['clean-popup-js'], function() {
log('Minifying, concatenating and uglifying popup js file');
if(argv.prod || argv.min) {
return getStartJsSource('popup')
.pipe(req.if(argv.min, req.sourcemaps.init()))
.pipe(req.concat(nameJsPopupStart + '.js'))
.pipe(req.if(!argv.min, gulp.dest(config.js_dest)))
.pipe(req.if(argv.min, req.uglify({mangle: mangle, output: {beautify: beautify}})))
.pipe(req.if(argv.min, req.rename({suffix: '.min'})))
.pipe(req.if(argv.min, req.sourcemaps.write('./')))
.pipe(req.if(argv.min, gulp.dest(config.js_dest)));
} else {
return getStartJsSource('popup')
.pipe(gulp.dest(config.js_dest));
}
});
gulp.task('clean-theme-js', function(cb) {
clean(config.js_theme_dest + 'themes/**/*.js*', cb);
});
gulp.task('minify-theme-js', ['clean-theme-js'], function() {
log('Minifying, concatenating and uglifying js files');
return gulp.src(config.js_theme_src, {base: config.base})
.pipe(req.if(argv.verbose, req.print()))
.pipe(req.if(argv.min, req.sourcemaps.init()))
.pipe(req.if(!argv.min, gulp.dest(config.js_theme_dest)))
.pipe(req.if(argv.min, req.uglify({mangle: mangle, output: {beautify: beautify}})))
.pipe(req.if(argv.min, req.rename({suffix: '.min'})))
.pipe(req.if(argv.min, req.sourcemaps.write('./')))
.pipe(req.if(argv.min, gulp.dest(config.js_theme_dest)));
});
function getIndexBodyContent(templatePath) {
var indexFileName = templatePath.replace('popup', 'index');
log('Getting index file: ' + indexFileName);
var indexContent = fs.readFileSync(indexFileName, 'utf8');
var bodyContent = indexContent.substr(indexContent.indexOf('<div id="bc-chat">'));
return {bodyContent: bodyContent};
}
gulp.task('clean-js-doc', function(cb) {
clean(config.doc_dest, cb);
});
gulp.task('js-doc', ['clean-js-doc'], function() {
log('Creating JSDocs');
return gulp.src(config.js_all)
.pipe(req.if(argv.verbose, req.print()))
.pipe(req.jsdoc(config.doc_dest));
});
gulp.task('test', function(done) {
karma.start({
configFile: path.join(__dirname, '/karma.conf.js'),
singleRun: true
}, done);
});
gulp.task('nightwatch:chrome', function() {
fs.mkdir('.logs', function() {
});
fs.mkdir('.reports', function() {
});
var stream = gulp.src('src')
.pipe(req.webserver({
port: 8888
}))
.pipe(req.nightwatch({
configFile: 'ui-tests/nightwatch.json'
}));
stream.emit('kill');
stream.pipe(req.exit());
});
gulp.task('webserver-dev', ['sass-dev'], function() {
gulp.src('src')
.pipe(req.webserver({port: 8888}));
});
gulp.task('webserver', ['clean', 'default'], function() {
gulp.src('out')
.pipe(req.webserver({port: 8888}));
});
gulp.task('clean-zips', function(cb) {
clean(config.out_dest + '**/*.zip', cb);
});
function getFolders(dir) {
return fs.readdirSync(dir)
.filter(function(folder) {
if(folder === 'bubbles') {
return false;
}
return fs.statSync(path.join(dir, folder)).isDirectory();
});
}
gulp.task('zip-files', function() {
log('Creating zip files');
var folders = getFolders(config.theme_src);
var zipSrc = config.zip_src;
var zipSrcIniLen = zipSrc.length;
folders.map(function(folder) {
log('folder: ' + folder);
if(zipSrc.length > zipSrcIniLen) {
zipSrc[zipSrcIniLen] = config.out_dest + 'themes/' + folder + '/**/*.*';
} else {
zipSrc.push(config.out_dest + 'themes/' + folder + '/**/*.*');
}
return gulp.src(zipSrc, {base: config.out_dest})
.pipe(req.if(argv.verbose, req.print()))
.pipe(req.zip(folder + ((argv.prod) ? '_min' : '') + '.zip'))
.pipe(gulp.dest(config.out_dest + 'themes/' + folder));
});
});
var getJsStartSrc = function(fileType) {
return getStartJsSource(fileType)
.pipe(req.if(argv.prod || argv.min, req.concat((fileType === 'popup' ? nameJsPopupStart : nameJsIndexStart) + '.js')))
.pipe(req.if(argv.min, req.rename({suffix: '.min'})));
};
var getJsBoldchatSrc = function() {
return getBoldchatJsSource()
.pipe(req.if(argv.prod || argv.min, req.concat(nameJsBoldchat + '.js')))
.pipe(req.if(argv.min, req.rename({suffix: '.min'})));
};
var getThemeName = function(themePath) {
var themeId = 'theme';
var idxOfTheme = themePath.path.indexOf(themeId);
var themeNameStart = idxOfTheme + themeId.length + 1;
var themeNameEnd = themePath.path.indexOf(path.sep, themeNameStart + 1);
return themePath.path.substr(themeNameStart + 1, themeNameEnd - themeNameStart - 1);
};
var getThemeSrc = function(path, fileSuffix, isProd, isMin) {
var themeName = getThemeName(path);
if(argv.verbose) {
log(fileSuffix + ' for: ' + themeName);
}
return gulp.src(config.theme_src + themeName + '/**/*.' + fileSuffix, {read: isProd}) //if read is set to false then concat won't work
//.pipe(req.if(argv.prod, req.concat(themeName + '.' + fileSuffix)))
.pipe(req.if(isMin, req.rename({suffix: '.min'})));
};
var getInjectStartOptions = function(addRootSlash, relative) {
return {
starttag: '<!-- inject:bcStart:{{ext}} -->',
relative: relative || false,
addRootSlash: addRootSlash || false,
ignorePath: 'src/'
};
};
var getInjectBoldChatOptions = function(addRootSlash, relative) {
return {
starttag: '<!-- inject:boldchat:{{ext}} -->',
relative: relative || false,
addRootSlash: addRootSlash || false,
ignorePath: 'src/'
};
};
var getInjectThemeOptions = function(addRootSlash, relative, prefix) {
return {
starttag: '<!-- inject:themeSpecific:{{ext}} -->',
relative: relative || false,
addRootSlash: addRootSlash || false,
addPrefix: prefix,
ignorePath: 'src/'
};
};
var injectFiles = function(fileType, addRootSlash, relative, themeSpecificRelative, prefix) {
var startOptions = getInjectStartOptions(addRootSlash, relative);
var boldchatOptions = getInjectBoldChatOptions(addRootSlash, relative);
var themeOptions = getInjectThemeOptions(addRootSlash, typeof themeSpecificRelative === 'undefined' ? relative : themeSpecificRelative, prefix);
var localProd = argv.prod;
var localMin = argv.min;
return gulp
.src([config.src + '**/' + fileType + '.html', '!' + config.src + '/old/**'], {base: config.base})
.pipe(req.inject(getJsStartSrc(fileType), startOptions))
.pipe(req.inject(getJsBoldchatSrc(), boldchatOptions))
.pipe(req.foreach(function(stream, file) {
return stream
.pipe(req.if(fileType === 'popup', req.template(getIndexBodyContent(file.path))))
.pipe(req.inject(getThemeSrc(file, 'js', localProd, localMin), themeOptions))
.pipe(req.inject(getThemeSrc(file, 'css', localProd, localMin), themeOptions));
}))
.pipe(req.if(argv.minhtml, req.minifyHtml()))
.pipe(gulp.dest(config.out_dest));
};
gulp.task('clean-index-html', function(cb) {
clean([config.out_dest + '**/*.html', '!' + config.out_dest + '**/popup.html'], cb);
});
gulp.task('inject-index-html', ['clean-index-html'], function() {
log('Injecting JS and CSS for index files');
return injectFiles('index', false, false);
});
gulp.task('clean-popup-html', function(cb) {
clean(config.out_dest + '**/popup.html', cb);
});
gulp.task('inject-popup-html', ['clean-popup-html'], function() {
log('Injecting JS and CSS for popup files');
return injectFiles('popup', false, true, false, '../..');
});
gulp.task('clean-build-files', ['clean-images', 'clean-fonts', 'clean-videos', 'clean-sass', 'clean-recipes', 'clean-boldchat-js', 'clean-popup-js', 'clean-start-js', 'clean-theme-js', 'clean-index-html', 'clean-popup-html'], function(cb) {
rmvEmptyDirs(config.out_dest);
});
gulp.task('create-final-build', function() {
log('Cleaning all remainig build files, leaving the zips only');
gulp.src([config.root + 'package.json', config.root + 'gulpfile.*', config.root + 'Version.txt', config.root + 'BoldChat SDK Terms 7-9-14_dcc.pdf'])
.pipe(req.newer(config.out_dest))
.pipe(req.if(argv.verbose, req.print()))
.pipe(gulp.dest(config.out_dest));
return gulp.src([config.src + '**/*.*', '!' + config.src + 'old/**/*.*', '!' + config.src + 'index*.html', '!' + config.src + 'themes/**/*.css{,.map}'])
.pipe(req.newer(config.out_dest))
.pipe(req.if(argv.verbose, req.print()))
.pipe(gulp.dest(config.out_dest + 'src/'));
});
gulp.task('integration', ['nightwatch:chrome']);
gulp.task('minify-all-js', ['minify-theme-js', 'minify-boldchat-js', 'minify-start-js', 'minify-popup-js']);
gulp.task('build-requirements', ['fonts', 'images', 'videos', 'sass', 'recipes', 'minify-all-js']);
gulp.task('build-html-files', ['inject-index-html', 'inject-popup-html']);
gulp.task('default', ['build-requirements', 'build-html-files']);