-
Notifications
You must be signed in to change notification settings - Fork 12
/
grunt-opencms-modules.js
597 lines (526 loc) · 18.1 KB
/
grunt-opencms-modules.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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
/*
* This program is part of the OpenCms Apollo Template.
*
* Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var modules = {};
var themes = [];
var sassSrc = [];
var cssSrc = [];
var jsSrc = [];
var resources = [];
var resourceSources = {};
var themeSassSrc = [];
var themeCssSrc = [];
var themePostCssSrc = [];
var themeConcatTasks = [];
var grunt;
var deployTarget;
var buildDir;
var provideDir;
var moduleDir;
var themeDir;
var deployDir;
var resourceDir;
var mapScss;
var debugJs;
var cssOnly;
var path = require('path');
exports.initGrunt = function(_grunt, _buildDir, _cssOnly) {
grunt = _grunt;
mapScss = grunt.option('mapscss');
debugJs = grunt.option('debug');
cssOnly = _cssOnly || grunt.option('cssonly');
moduleDir = path.normalize(process.cwd() + '/');
provideDir = path.normalize(moduleDir + _buildDir + 'provide/');
buildDir = path.normalize(moduleDir + _buildDir + 'grunt/');
console.log('CSS only theme generation [--cssonly] ' + (cssOnly ? 'ENABLED' : 'Disabled') );
console.log('Source mapping of SCSS [--mapscss] ' + (mapScss ? 'ENABLED' : 'Disabled') );
console.log('Debug output in JavaScript [--debug ] ' + (debugJs ? 'ENABLED' : 'Disabled') );
if (grunt.option('verbose')) {
console.log('OpenCms module source directory : ' + moduleDir);
console.log('OpenCms module build directory : ' + buildDir);
console.log('OpenCms theme provision directory : ' + provideDir);
require('time-grunt')(grunt);
}
_gruntLoadNpmTasks();
}
_getModuleThemes = function(envname, themes) {
if (grunt.option('verbose')) {
console.log('Value of env ' + envname + ': ' + process.env[envname]);
}
if (grunt.option('useenv') && process.env[envname]) {
return [ process.env[envname] ];
}
return themes;
};
exports.loadModule = function(moduleName) {
var f = path.normalize(moduleDir + moduleName + '/Gruntparts.js');
if (grunt.option('verbose')) {
console.log('Loading OpenCms module: ' + f);
}
try {
var m = require(f);
modules[_moduleName(m.mf)] = m;
if (m.sassSrc) {
sassSrc = sassSrc.concat(m.sassSrc);
}
if (m.cssSrc) {
cssSrc = cssSrc.concat(m.cssSrc);
}
if (m.jsSrc) {
jsSrc = jsSrc.concat(m.jsSrc);
}
if (m.resources) {
for (var i = 0; i<m.resources.length; i++) {
var res = m.resources[i];
var idx = res.indexOf('>');
if (idx >= 0) {
prefix = res.substr(0, idx);
resourceSources[prefix] = true;
res = res.replace('>', '');
}
resources.push(res);
}
}
if (m.themes) {
themes = themes.concat(_getModuleThemes(m.envname, m.themes));
themeDir = m.mf;
}
if (m.deployDir) {
// deployDir is also setting the default for resourceDir
exports.deployDir = deployDir = m.deployDir;
exports.resourceDir = resourceDir = m.deployDir;
}
if (m.resourceDir) {
// Required for extension themes that do not copy the resources
// because only CSS is to be generated.
// In this case URLs in the minified CSS from the plugins
// are rewritten to point to another folder.
exports.resourceDir = resourceDir = m.resourceDir;
}
if (m.deployTarget) {
exports.deployTarget = deployTarget = path.normalize(m.deployTarget + '/');
}
return m;
} catch (err) {
grunt.log.errorlns('Error: ' + err.message);
}
}
exports.registerGruntTasks = function() {
themes = _normalizeAll(themes);
sassSrc = _normalizeAll(sassSrc);
cssSrc = _normalizeAll(cssSrc);
if (! cssOnly) {
jsSrc = _normalizeAll(jsSrc);
resources = _normalizeAll(resources);
resourceSources = _normalizeAll(resourceSources);
} else {
// for 'css only', clear all non-css input resource arrays
jsSrc = [];
resources = [];
resourceSources = [];
}
_gruntInitConfig();
_gruntRegisterTasks();
if (grunt.option('verbose')) {
_showImports();
}
}
_moduleName = function(mf) {
return mf.split('/').slice(-1);
}
_normalizeAll = function(paths) {
for (i=0; i<paths.length; i++) {
paths[i] = path.normalize(paths[i]);
}
return paths;
}
_gruntLoadNpmTasks = function() {
// These plugins provide necessary tasks
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-postcss');
// Postcss modules required:
// ('autoprefixer');
// ('stylefmt');
// ('postcss-sorting');
}
_gruntInitConfig = function() {
// Project configuration
grunt.initConfig({
clean : {
all : [ buildDir + '**' ],
theme : {
files : [ {
expand : true,
cwd : moduleDir,
src : [ '*.css', '*.css.map' ],
filter : 'isFile',
} ],
},
},
copy : {
resources : {
files : [ {
expand : true,
src : oc.resources(),
dest : buildDir + '04_final',
rename: function (dest, src) {
dest = path.normalize(dest);
src = path.normalize(src);
// determine and remove the source folder path
for (var sourceDir in resourceSources) {
if (resourceSources.hasOwnProperty(sourceDir)) {
if (src.startsWith(sourceDir)) {
src = path.normalize(src.replace(sourceDir, '/'));
}
}
}
return dest + src;
},
filter : 'isFile'
} ],
},
save : {
files : [ {
expand : true,
src : [ '*.css', '*.css.map' ],
dest : buildDir + '03_minified',
filter : 'isFile',
} ],
},
restore : {
files : [ {
expand : true,
cwd : buildDir + '03_minified',
src : [ '*.css', '*.css.map' ],
dest : moduleDir,
filter : 'isFile',
} ],
},
providesrc : {
files : [ {
expand : true,
cwd : buildDir + '04_final/',
src : [ '**' ],
dest : provideDir,
filter : 'isFile',
} ]
},
deploy : {
files : [ {
expand : true,
cwd : buildDir + '04_final/',
src : [ '**' ],
dest : oc.deployTarget,
} ]
}
},
sass : {
theme : {
options : {
sourcemap : mapScss ? 'auto' : 'none',
lineNumbers : false,
style : 'nested',
},
files : [ {
expand : true,
cwd : moduleDir,
src : oc.themeSassSrc(),
dest : buildDir + '01_processed',
ext : '.css',
flatten: true
} ]
}
},
postcss : {
theme : {
options: {
map: {
inline: false, // save all sourcemaps as separate files...
annotation: buildDir + '02_postcssed' // ...to the specified directory
},
processors : [
require('autoprefixer')({browsers: 'last 3 versions'}), // add vendor prefixes
require('postcss-sorting')({"sort-order": 'default'}), // sort the rules in the output
require('stylefmt')(), // pretty-print the output
]
},
files : [{
expand : true,
cwd : buildDir + '01_processed',
src : oc.themeCssSrc(),
dest : buildDir + '02_postcssed',
ext : '.post.css'
}]
},
// could not come up with a better idea on how to achieve this quickly
themeNoMap : {
options: {
map: false,
processors : [
require('autoprefixer')({browsers: 'last 3 versions'}), // add vendor prefixes
require('postcss-sorting')({"sort-order": 'default'}), // sort the rules in the output
require('stylefmt')(), // pretty-print the output
]
},
files : [{
expand : true,
cwd : buildDir + '01_processed',
src : oc.themeCssSrc(),
dest : buildDir + '02_postcssed',
ext : '.post.css'
}]
},
pluginCss : {
options: {
map: {
inline: false, // save all sourcemaps as separate files...
annotation: moduleDir // ...to the specified directory
},
processors : [
require('postcss-urlrewrite')({
imports: true,
properties: ['src', 'background', 'background-image'],
rules: [{
from: '../../resources/',
to: oc.resourcePath('/')
},{
from: '../fonts/',
to: oc.resourcePath('fonts/')
}]
})
]
},
src : moduleDir + 'plugins.min.css',
dest : moduleDir + 'plugins.min.post.css',
},
},
concat : {
theme : {
options: {
sourceMap: true,
sourceMapStyle: 'embed',
},
src: [
oc.themeDir() + '<%= grunt.task.current.args[0] %>' + '-imports.css',
moduleDir + 'plugins.min.post.css',
'<%= grunt.task.current.args[0] %>.min.css'
],
dest: buildDir + '04_final/css/<%= grunt.task.current.args[0] %>.min.css'
},
},
cssmin : {
options : {
advanced: true, // sometimes setting this to false helps to debug SASS
processImport: true,
keepSpecialComments: 0,
sourceMap: true,
sourceMapInlineSources: true,
roundingPrecision : -1,
},
//
// Important note regarding the source map handling:
// The source map is inlined and also referenced to the original file.
// If we use different src / dest folders the path information
// to the original source maps gets lost in the cssmin task.
// The workaround is to write to the 'moduleDir' folder, in which case the relative path information
// remains intact. We clean up later in separate 'copy:save' and 'clean:theme' tasks.
//
theme : {
files : [{
expand : true,
cwd : buildDir + '02_postcssed',
src : oc.themePostCssSrc(),
dest : moduleDir,
ext : '.min.css'
}]
},
pluginCss : {
src : oc.cssSrc(),
dest : moduleDir + 'plugins.min.css',
},
},
uglify : {
options : {
sourceMap: true,
sourceMapIncludeSources: true,
mangleProperties: false,
mangle : {
except : [
'jQuery',
'revolution',
],
},
compress: {
global_defs: {
'DEBUG': oc.debugJs()
}
},
},
pluginJs : {
src : oc.jsSrc(),
dest : buildDir + '04_final/js/scripts-all.min.js',
},
},
watch: {
options: {
interrupt: true, // interrupt when new modification happens during build
debounceDelay: 2000, // wait 2 seconds after file was saved before starting build
},
scss : {
files : [ oc.sassSrc() ],
tasks : [ 'copy:restore', 'theme', 'combine', 'deploy' ],
},
pluginCss : {
files : [ oc.cssSrc() ],
tasks : [ 'copy:restore', 'pluginCss', 'combine', 'deploy' ],
},
pluginJs : {
files : [ oc.jsSrc() ],
tasks : [ 'pluginJs', 'deploy' ],
},
resources : {
files : [ oc.resources() ],
tasks : [ 'deploy' ],
},
},
});
}
_gruntRegisterTasks = function() {
grunt.registerTask('default', [
'clean',
'theme',
'pluginCss',
'combine',
cssOnly ? 'skipResources' : 'pluginJs',
'deploy',
]);
grunt.registerTask('skipResources', []);
grunt.registerTask('theme', [
'sass:theme',
mapScss ? 'postcss:theme' : 'postcss:themeNoMap',
'cssmin:theme',
]);
grunt.registerTask('plugins', [
'cssmin:pluginCss',
'postcss:pluginCss',
cssOnly ? 'skipResources' : 'uglify:pluginJs',
]);
grunt.registerTask('pluginCss', [
'cssmin:pluginCss',
'postcss:pluginCss',
]);
grunt.registerTask('pluginJs', [
cssOnly ? 'skipResources' : 'uglify:pluginJs',
]);
grunt.registerTask('combine',
oc.themeConcatTasks().concat(
'copy:save'
));
grunt.registerTask('deploy', function() {
if (grunt.file.expand(oc.deployTarget + '*').length) {
grunt.task.run( [
oc.cssOnly ? '' : 'copy:resources',
'copy:deploy',
'copy:providesrc',
'clean:theme'
] );
} else {
grunt.log.errorlns('Deploy target CSS folder ' + oc.deployTarget + ' not found, skipping deploy!');
}
});
}
_showImports = function() {
console.log('\nLoaded path elements from OpenCms modules');
console.log('- Themes');
for (var i in themes) { console.log(" " + themes[i]) };
console.log('\n- Sass');
for (var i in sassSrc) { console.log(" " + sassSrc[i]) };
console.log('\n- Css');
for (var i in cssSrc) { console.log(" " + cssSrc[i]) };
console.log('\n- Js');
for (var i in jsSrc) { console.log(" " + jsSrc[i]) };
console.log('\n- Resources');
for (var i in resources) { console.log(" " + resources[i]) };
console.log('\n- Resource source folders');
for (var sourceDir in resourceSources) {
if (resourceSources.hasOwnProperty(sourceDir)) {
console.log(" " + sourceDir);
}
}
console.log('\n');
console.log('- Theme folder : ' + deployDir);
console.log('- Theme resources: ' + resourceDir);
console.log('- Path to fonts : ' + oc.resourcePath('fonts/'));
console.log('- Deploy target : ' + deployTarget + "\n");
}
exports.sassSrc = function () {
return sassSrc;
}
exports.cssSrc = function () {
return cssSrc;
}
exports.resourcePath = function (target) {
return path.normalize(
path.relative(
oc.deployDir + '/css/',
oc.resourceDir
) + '/' + target
)
}
exports.jsSrc = function () {
return jsSrc;
}
exports.debugJs = function () {
return debugJs;
}
exports.resources = function () {
return resources;
}
exports.themeSassSrc = function () {
for (i=0; i<themes.length; i++) {
themeSassSrc[i] = '**/' + themes[i] + '.scss';
}
return themeSassSrc;
}
exports.themeDir = function () {
return themeDir;
}
exports.themeCssSrc = function () {
for (i=0; i<themes.length; i++) {
themeCssSrc[i] = themes[i] + '.css';
}
return themeCssSrc;
}
exports.themePostCssSrc = function () {
for (i=0; i<themes.length; i++) {
themePostCssSrc[i] = themes[i] + '.post.css';
}
return themePostCssSrc;
}
exports.themeConcatTasks = function () {
for (i=0; i<themes.length; i++) {
themeConcatTasks[i] = 'concat:theme:' + themes[i];
}
return themeConcatTasks;
}