Compile all styles (see #179)

This commit is contained in:
Fedor A. Fetisov 2017-03-10 01:44:53 +03:00
parent 6ea5f5af11
commit 834e75cdd6

View File

@ -186,10 +186,14 @@ gulp.task('chat-styles', ['chat-styles-handlebars', 'chat-styles-js'], function(
// Compile and concatenate handlebars files for all chat styles. // Compile and concatenate handlebars files for all chat styles.
gulp.task('chat-styles-handlebars', function() { gulp.task('chat-styles-handlebars', function() {
// TODO: Process all available styles, not only the default one. var promises = [];
var stylePath = config.chatStylesPath + '/default'; fs.readdir(config.chatStylesPath, function(err, list){
if(err) return done(err);
return gulp.src(stylePath + '/templates_src/client_side/**/*.handlebars') list.filter(function(path){
return fs.lstatSync(config.chatStylesPath + "/" + path).isDirectory();
}).map(function(dir){
promises.push(new Promise(function(resolve, reject){
var pipeline = gulp.src(config.chatStylesPath + '/' + dir + '/templates_src/client_side/**/*.handlebars')
.pipe(handlebars({ .pipe(handlebars({
// Use specific version of Handlebars.js // Use specific version of Handlebars.js
handlebars: handlebarsEngine handlebars: handlebarsEngine
@ -198,26 +202,44 @@ gulp.task('chat-styles-handlebars', function() {
.pipe(concat('templates.js')) .pipe(concat('templates.js'))
.pipe(uglify({preserveComments: 'some'})) .pipe(uglify({preserveComments: 'some'}))
.pipe(header(config.compiledTemplatesHeader)) .pipe(header(config.compiledTemplatesHeader))
.pipe(gulp.dest(stylePath + '/templates_compiled/client_side')); .pipe(gulp.dest(config.chatStylesPath + '/' + dir + '/templates_compiled/client_side'));
pipeline.on('end', resolve);
pipeline.on('error', reject);
}));
});
});
}); });
// Compile and concatenate js files for all chat styles. // Compile and concatenate js files for all chat styles.
gulp.task('chat-styles-js', function() { gulp.task('chat-styles-js', function() {
// TODO: Process all available styles, not only the default one. var promises = [];
var stylePath = config.chatStylesPath + '/default'; fs.readdir(config.chatStylesPath, function(err, list){
if(err) return done(err);
return gulp.src(stylePath + '/js/source/**/*.js') list.filter(function(path){
return fs.lstatSync(config.chatStylesPath + "/" + path).isDirectory();
}).map(function(dir){
promises.push(new Promise(function(resolve, reject){
var pipeline = gulp.src(config.chatStylesPath + '/' + dir + '/js/source/**/*.js')
.pipe(concat('scripts.js')) .pipe(concat('scripts.js'))
.pipe(uglify({preserveComments: 'some'})) .pipe(uglify({preserveComments: 'some'}))
.pipe(gulp.dest(stylePath + '/js/compiled')); .pipe(gulp.dest(config.chatStylesPath + '/' + dir + '/js/compiled'));
pipeline.on('end', resolve);
pipeline.on('error', reject);
}));
});
});
}); });
// Performs all job related with pages styles. // Performs all job related with pages styles.
gulp.task('page-styles', function() { gulp.task('page-styles', function() {
// TODO: Process all available styles, not only the default one. var promises = [];
var stylePath = config.pageStylesPath + '/default'; fs.readdir(config.pageStylesPath, function(err, list){
if(err) return done(err);
return gulp.src(stylePath + '/templates_src/client_side/**/*.handlebars') list.filter(function(path){
return fs.lstatSync(config.pageStylesPath + "/" + path).isDirectory();
}).map(function(dir){
promises.push(new Promise(function(resolve, reject){
var pipeline = gulp.src(config.pageStylesPath + '/' + dir + '/templates_src/client_side/**/*.handlebars')
.pipe(handlebars({ .pipe(handlebars({
// Use specific version of Handlebars.js // Use specific version of Handlebars.js
handlebars: handlebarsEngine handlebars: handlebarsEngine
@ -226,7 +248,12 @@ gulp.task('page-styles', function() {
.pipe(concat('templates.js')) .pipe(concat('templates.js'))
.pipe(uglify({preserveComments: 'some'})) .pipe(uglify({preserveComments: 'some'}))
.pipe(header(config.compiledTemplatesHeader)) .pipe(header(config.compiledTemplatesHeader))
.pipe(gulp.dest(stylePath + '/templates_compiled/client_side')); .pipe(gulp.dest(config.pageStylesPath + '/' + dir + '/templates_compiled/client_side'));
pipeline.on('end', resolve);
pipeline.on('error', reject);
}));
});
});
}); });
// Generate .pot files based on the sources // Generate .pot files based on the sources