forked from voidlabs/mosaico
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgulpfile.js
547 lines (478 loc) · 13.8 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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
'use strict'
const gulp = require('gulp')
const path = require('path')
const $ = require('gulp-load-plugins')()
const browserSync = require('browser-sync').create()
const { reload } = browserSync
const lazypipe = require('lazypipe')
const del = require('del')
const merge = require('merge-stream')
const args = require('yargs').argv
const mainBowerFiles = require('main-bower-files')
const _ = require('lodash')
const isWatch = args.watch === true
const isDev = args.prod !== true
const env = isDev ? 'development' : 'production'
const { cyan } = require('chalk')
const buildDir = 'dist'
function onError(err) {
$.util.beep()
if (err.annotated) { $.util.log(err.annotated) }
else if (err.message) { $.util.log(err.message) }
else { $.util.log(err) }
return this.emit('end')
}
$.util.log(
'environment is', $.util.colors.magenta(env),
'watch is', isWatch ? $.util.colors.magenta('enable') : 'disable'
)
function bump() {
return gulp.src('./*.json')
.pipe($.bump({
version: args.pkg
}))
.pipe(gulp.dest('./'))
}
bump.description = `Bump versions on package.json and bower.json. Used only in release script`
////////
// CSS
////////
const autoprefixer = require('autoprefixer')
const csswring = require('csswring')
const cssDev = lazypipe()
.pipe($.sourcemaps.write)
const cssProd = lazypipe()
.pipe($.postcss, [
csswring({ removeAllComments: true })
])
function cleanCss(cb) {
if (isDev) return cb()
return del([buildDir + '/*.css', buildDir + '/*.css.map'], cb)
}
function cssEditor() {
return gulp
.src('src/css/badsender-editor.less')
.pipe( $.if(isDev, $.plumber(onError)) )
.pipe( $.if(isDev, $.sourcemaps.init()) )
.pipe( $.less() )
.pipe( $.postcss([
autoprefixer({ browsers: ['ie 10', 'last 2 versions'], }),
]) )
.pipe( $.if(isDev, cssDev(), cssProd()) )
.pipe( $.rename('badsender-editor.css') )
.pipe( $.if(!isDev, $.cleanCss()) )
.pipe( gulp.dest(buildDir) )
.pipe( $.if(isDev, reload({stream: true})) )
}
function cssApp() {
return gulp
.src('src/css-backend/badsender-backend.styl')
.pipe($.if(isDev, $.plumber(onError)))
.pipe($.sourcemaps.init())
.pipe($.stylus({
'include css': true,
}))
.pipe($.postcss([
autoprefixer({ browsers: ['ie 10', 'last 2 versions'], }),
]))
.pipe($.replace('rgb(255,152,0)', '#ff9f00'))
.pipe($.rename('badsender-app.css'))
.pipe($.if(isDev, cssDev(), cssProd()))
.pipe($.if(!isDev, $.cleanCss()))
.pipe(gulp.dest(buildDir))
.pipe($.if(isDev, reload({stream: true})))
}
const css = gulp.series( cleanCss, gulp.parallel(cssEditor, cssApp) )
css.description = `Build CSS for the mosaico editor and the app`
////////
// JS
////////
//----- LIBRARIES
function cleanLib(cb) {
if (isDev) return cb()
return del(buildDir, '/**/*.js')
}
function mosaicoLib() {
const bowerfiles = mainBowerFiles({
group: 'editor',
overrides: {
// tinymce has no main…
tinymce: {
main: 'tinymce.js',
},
// override for load image
'blueimp-load-image': {
main: 'js/load-image.all.min.js',
},
},
})
// Can't replace jQuery with newer version
// https://github.com/jquery/jquery/issues/3181#issuecomment-226964470
// => Uncaught TypeError: elem.getClientRects is not a function
// .filter( name => !/bower_components\/jquery\/dist\/jquery\.js$/.test(name) )
// // replace old version of jQuery
// bowerfiles.unshift( path.join(__dirname, './node_modules/jquery/dist/jquery.js') )
const editorLibs = gulp
.src( bowerfiles )
.pipe( $.filter(['*.js', '**/*.js']) )
.pipe( $.order([
// reorganize files we want to concat
'jquery.js',
'knockout.js',
'jquery-ui*.js',
'load-image.all.min.js',
'jquery.fileupload.js',
'jquery.fileupload-process.js',
'jquery.fileupload-image.js',
'jquery.fileupload-validate.js',
'*.js',
]) )
.pipe( $.concat('badsender-lib-editor.js') )
// only copy necessary tinymce plugins
const tinymce = gulp.src( [
'bower_components/tinymce/themes/modern/theme.js',
'bower_components/tinymce/plugins/paste/plugin.js',
'bower_components/tinymce/plugins/link/plugin.js',
'bower_components/tinymce/plugins/hr/plugin.js',
'bower_components/tinymce/plugins/lists/plugin.js',
'bower_components/tinymce/plugins/textcolor/plugin.js',
'bower_components/tinymce/plugins/colorpicker/plugin.js',
'bower_components/tinymce/plugins/code/plugin.js',
], { base: 'bower_components/tinymce' } )
return merge(editorLibs, tinymce)
.pipe( $.if(!isDev, $.uglify()) )
.pipe( gulp.dest(buildDir + '/lib') )
}
// Bundling libs is just a concat…
const editorLib = gulp.series( cleanLib, mosaicoLib)
editorLib.description = `build JS for the mosaico editor and the app`
//----- MOSAICO APPLICATION
const browserify = require('browserify')
const source = require('vinyl-source-stream')
const vinylBuffer = require('vinyl-buffer')
const aliasify = require('aliasify')
const shim = require('browserify-shim')
const debowerify = require('debowerify')
const babelify = require('babelify')
const envify = require('envify/custom')
const watchify = require('watchify')
function jsMosaico() {
let b = browserify({
cache: {},
packageCache: {},
debug: true,
entries: ['./src/js/app.js', './build/templates.js'],
standalone: 'Badsender',
})
b.transform(aliasify, {
"aliases": {
"console": "console-browserify/index.js",
"jsep": "jsep/src/jsep.js",
"knockoutjs-reactor": "knockoutjs-reactor/src/knockout.reactor.js"
}
})
b.transform( shim )
b.transform( debowerify )
// b.transform(babelify, {
// presets: ['es2015'],
// })
b.transform( babelify.configure({
presets: ['es2015'],
// Optional only regex - if any filenames **don't** match this regex
// then they aren't compiled
only: /badsender-/,
}) )
b.transform(envify({
_: 'purge',
NODE_ENV: env,
BADSENDER: true,
MOSAICO: false,
}))
if (isWatch) {
b = watchify( b )
b.on('update', function () {
$.util.log('bundle front app')
bundleShare( b )
})
}
return bundleShare(b)
}
function bundleShare(b) {
return b.bundle()
.on('error', onError)
.pipe(source('badsender-editor.js'))
.pipe(vinylBuffer())
.pipe( $.if(!isDev, $.stripDebug()) )
.pipe( $.if(!isDev, $.uglify()) )
.pipe(gulp.dest(buildDir))
}
const jsEditor = gulp.series( templates, jsMosaico)
jsEditor.description = `Bundle mosaico app, without libraries`
//----- MOSAICO'S KNOCKOUT TEMPLATES: see -> combineKOTemplates.js
const through = require('through2')
const StringDecoder = require('string_decoder').StringDecoder
const decoder = new StringDecoder('utf8')
function templates() {
const templates = []
function passThrough(file, encoding, cb) {
var name = path.basename(file.path);
var name = /^([^\.]*)/.exec(name)[1];
var content = decoder.write(file.contents);
content = content.replace(/"/g , "\\x22");
content = content.replace(/(\r\n|\n|\r)/gm, "");
content = ` templateSystem.addTemplate("${ name }", "${ content }");`
// content = " templateSystem.addTemplate(\"" + name + "\", \"" + content + "\");";
templates.push(content)
return cb(null)
}
function flush(cb) {
var result = "var templateSystem = require('../src/js/bindings/choose-template.js');\n";
result = result + "document.addEventListener('DOMContentLoaded', function(event) {\n";
result = result + templates.join('\n') + '\n';
result = result + "});\n";
this.push(new $.util.File({
cwd: './',
base: './',
path: 'templates.js',
contents: new Buffer(result),
}))
return cb()
}
return gulp
.src([
'src/tmpl/*.html',
// replace some original templates but custome ones
'src/tmpl-badsender/*.html',
'!src/tmpl/gallery-images.tmpl.html',
])
.pipe( through.obj(passThrough, flush) )
// templates has to be build on “build” folder
// they will be require by editor app application
.pipe(gulp.dest('build'))
}
//----- HOME JS (rename for now)
const pugify = require('pugify')
function jsHome() {
var b = browserify({
cache: {},
packageCache: {},
debug: true,
entries: ['./src/js-backend/badsender-home.js']
})
.transform(babelify, {
presets: ['es2015'],
})
.transform(pugify.pug({
pretty: isDev,
compileDebug: isDev,
}))
.transform(envify({
_: 'purge',
NODE_ENV: env,
LOG: isDev,
}))
if (isWatch) {
b = watchify(b)
b.on('update', function () {
$.util.log('bundle home app')
bundleHome(b)
})
}
return bundleHome(b)
}
function bundleHome(b) {
return b.bundle()
.on('error', onError)
.pipe(source('badsender-home.js'))
.pipe(vinylBuffer())
.pipe($.if(!isDev, $.uglify()))
.pipe(gulp.dest(buildDir))
}
//----- ADMIN JS
function jsAdmin() {
var b = browserify({
cache: {},
packageCache: {},
debug: true,
entries: ['./src/js-admin-backend/badsender-admin.js']
})
.transform(babelify, {
presets: ['es2015'],
})
.transform(envify({
_: 'purge',
NODE_ENV: env,
LOG: isDev,
}))
if (isWatch) {
b = watchify(b)
b.on('update', function () {
$.util.log('bundle admin app')
bundleAdmin(b)
})
}
return bundleAdmin(b)
}
function bundleAdmin(b) {
return b.bundle()
.on('error', onError)
.pipe(source('badsender-admin.js'))
.pipe(vinylBuffer())
.pipe($.if(!isDev, $.uglify()))
.pipe(gulp.dest(buildDir))
}
const js = gulp.parallel( jsEditor, jsHome, jsAdmin )
js.description = `build js for mosaico app and the for the rests of the application`
////////
// ASSETS
////////
//----- FONTS
function fonts() {
return gulp
.src( 'bower_components/font-awesome/fonts/*' )
.pipe(gulp.dest('res/fa/fonts'))
}
const assets = fonts
assets.description = `Copy font-awesome in the right place`
//----- MAINTENANCE
const maintenanceFolder = 'server/maintenance-pages'
const cleanMaintenance = cb => del([`${maintenanceFolder}/*.html`], cb )
function maintenance() {
return gulp
.src([`${maintenanceFolder}/*.pug`, `!${maintenanceFolder}/_*.pug`])
.pipe($.pug())
.pipe(gulp.dest( maintenanceFolder ))
}
//----- REVS
var crypto = require('crypto')
function rev() {
let revs = []
function sortByName( a, b ) {
const nameA = a.name.toUpperCase()
const nameB = b.name.toUpperCase()
if (nameA < nameB) return -1
if (nameA > nameB) return 1
return 0
}
function passThrough(file, enc, callback) {
var key = path.relative(file.base, file.path)
var md5 = crypto.createHash('md5')
if (!file.contents) return callback(null)
var hash = md5.update( file.contents.toString() ).digest( 'hex' )
revs.push({'name': '/' + key, hash})
callback( null )
}
function flush( cb ) {
const md5Object = {}
// keep the json in alphabetical order
revs.sort(sortByName).forEach( r => {
md5Object[ r.name ] = r.hash
})
let file = new $.util.File({
path: 'md5public.json',
contents: new Buffer( JSON.stringify(md5Object, null, ' ') ),
})
this.push( file )
cb()
}
return gulp
.src( [
'dist/**/*.*',
'res/**/*.*',
'!res/lang/*.*',
'node_modules/material-design-lite/*.js',
'node_modules/material-design-icons-iconfont/dist/**/*.*',
] )
.pipe( through.obj(passThrough, flush) )
.pipe( gulp.dest('server') )
}
////////
// DEV
////////
const cleanTmp = cb => del( ['tmp/upload_*'], cb )
function toc() {
return gulp.src('./BADSENDER.md')
.pipe($.doctoc({
mode: "github.com",
}))
.pipe(gulp.dest('./'))
}
toc.description = `Regenerate TOC for BADSENDER.md`
const cleanAll = cb => del( [ buildDir, 'build' ], cb )
const build = gulp.series(
cleanAll,
gulp.parallel( editorLib, js, css, assets ),
rev
)
build.description = `rebuild all assets`
const nodemonOptions = {
script: 'server/workers.js',
ext: 'js json',
watch: [
'server/**/*.js',
'.badsenderrc',
'index.js',
'res/lang/*.js',
'shared/*.js',
],
}
let init = true
function nodemon(cb) {
return $.nodemon(_.merge({
env: {
'NODE_ENV': 'development',
'VIPS_WARNING': false,
}
}, nodemonOptions))
.on('start', () => {
// https://gist.github.com/sogko/b53d33d4f3b40d3b4b2e#comment-1457582
if (init) {
init = false;
cb()
}
})
}
function bsAndWatch() {
browserSync.init({
proxy: 'http://localhost:3000',
open: false,
port: 7000,
ghostMode: false,
})
gulp.watch(['server/views/*.jade', 'dist/*.js']).on('change', reload)
gulp.watch([
'src/css/**/*.less',
'src/css-backend/**/*.styl'], css )
gulp.watch( ['src/tmpl/*.html', 'src/tmpl-badsender/*.html'], templates )
}
let initProd = true
function nodemonProd(cb) {
return $.nodemon(_.merge({env: { 'NODE_ENV': 'production' }}, nodemonOptions))
.on('start', () => {
if (initProd) {
initProd = false
cb()
}
})
}
function watchProdLike() {
gulp.watch(['server/views/*.jade', 'dist/*.js']).on('change', reload)
gulp.watch('src/css/**/*.less', cssApp )
}
gulp.task( 'css', css)
gulp.task( 'js', js)
gulp.task( 'assets', assets )
gulp.task( 'rev', rev )
gulp.task( 'templates', templates )
gulp.task( 'build', build )
gulp.task( 'maintenance', gulp.series( cleanMaintenance, maintenance) )
gulp.task( 'dev', gulp.series(
gulp.parallel( build, nodemon ),
bsAndWatch
) )
gulp.task( 'prod',
gulp.parallel( js, nodemonProd ),
watchProdLike
)
gulp.task( 'bump', bump )
gulp.task( 'toc', toc )