mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-05 16:07:06 +03:00
More promises to gulpfile.js!
This commit is contained in:
parent
3ae6e5cdb4
commit
19376e7f6c
118
src/gulpfile.js
118
src/gulpfile.js
@ -186,56 +186,65 @@ 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() {
|
||||||
return Promise.all(getChildDirs(config.chatStylesPath).map(function (dir) {
|
return getChildDirs(config.chatStylesPath)
|
||||||
return new Promise(function(resolve, reject){
|
.then(function (dirs) {
|
||||||
gulp.src(config.chatStylesPath + '/' + dir + '/templates_src/client_side/**/*.handlebars')
|
return Promise.all(dirs.map(function (dir) {
|
||||||
.pipe(handlebars({
|
return new Promise(function(resolve, reject){
|
||||||
// Use specific version of Handlebars.js
|
gulp.src(config.chatStylesPath + '/' + dir + '/templates_src/client_side/**/*.handlebars')
|
||||||
handlebars: handlebarsEngine
|
.pipe(handlebars({
|
||||||
}))
|
// Use specific version of Handlebars.js
|
||||||
.pipe(wrapHandlebarsTemplate())
|
handlebars: handlebarsEngine
|
||||||
.pipe(concat('templates.js'))
|
}))
|
||||||
.pipe(uglify({preserveComments: 'some'}))
|
.pipe(wrapHandlebarsTemplate())
|
||||||
.pipe(header(config.compiledTemplatesHeader))
|
.pipe(concat('templates.js'))
|
||||||
.pipe(gulp.dest(config.chatStylesPath + '/' + dir + '/templates_compiled/client_side'))
|
.pipe(uglify({preserveComments: 'some'}))
|
||||||
.on('end', resolve)
|
.pipe(header(config.compiledTemplatesHeader))
|
||||||
.on('error', reject);
|
.pipe(gulp.dest(config.chatStylesPath + '/' + dir + '/templates_compiled/client_side'))
|
||||||
|
.on('end', resolve)
|
||||||
|
.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() {
|
||||||
return Promise.all(getChildDirs(config.chatStylesPath).map(function (dir) {
|
return getChildDirs(config.chatStylesPath)
|
||||||
return new Promise(function(resolve, reject){
|
.then(function (dirs) {
|
||||||
gulp.src(config.chatStylesPath + '/' + dir + '/js/source/**/*.js')
|
return Promise.all(dirs.map(function (dir) {
|
||||||
.pipe(concat('scripts.js'))
|
return new Promise(function(resolve, reject){
|
||||||
.pipe(uglify({preserveComments: 'some'}))
|
gulp.src(config.chatStylesPath + '/' + dir + '/js/source/**/*.js')
|
||||||
.pipe(gulp.dest(config.chatStylesPath + '/' + dir + '/js/compiled'))
|
.pipe(concat('scripts.js'))
|
||||||
.on('end', resolve)
|
.pipe(uglify({preserveComments: 'some'}))
|
||||||
.on('error', reject);
|
.pipe(gulp.dest(config.chatStylesPath + '/' + dir + '/js/compiled'))
|
||||||
|
.on('end', resolve)
|
||||||
|
.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() {
|
||||||
return Promise.all(getChildDirs(config.pageStylesPath).map(function (dir) {
|
return getChildDirs(config.pageStylesPath)
|
||||||
return new Promise(function(resolve, reject){
|
.then(function (dirs) {
|
||||||
gulp.src(config.pageStylesPath + '/' + dir + '/templates_src/client_side/**/*.handlebars')
|
return Promise.all(dirs.map(function (dir) {
|
||||||
.pipe(handlebars({
|
return new Promise(function(resolve, reject){
|
||||||
// Use specific version of Handlebars.js
|
gulp.src(config.pageStylesPath + '/' + dir + '/templates_src/client_side/**/*.handlebars')
|
||||||
handlebars: handlebarsEngine
|
.pipe(handlebars({
|
||||||
}))
|
// Use specific version of Handlebars.js
|
||||||
.pipe(wrapHandlebarsTemplate())
|
handlebars: handlebarsEngine
|
||||||
.pipe(concat('templates.js'))
|
}))
|
||||||
.pipe(uglify({preserveComments: 'some'}))
|
.pipe(wrapHandlebarsTemplate())
|
||||||
.pipe(header(config.compiledTemplatesHeader))
|
.pipe(concat('templates.js'))
|
||||||
.pipe(gulp.dest(config.pageStylesPath + '/' + dir + '/templates_compiled/client_side'))
|
.pipe(uglify({preserveComments: 'some'}))
|
||||||
.on('end', resolve)
|
.pipe(header(config.compiledTemplatesHeader))
|
||||||
.on('error', reject);
|
.pipe(gulp.dest(config.pageStylesPath + '/' + dir + '/templates_compiled/client_side'))
|
||||||
|
.on('end', resolve)
|
||||||
|
.on('error', reject);
|
||||||
|
});
|
||||||
|
}));
|
||||||
});
|
});
|
||||||
}));
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Watch styles
|
// Watch styles
|
||||||
@ -496,10 +505,35 @@ var xgettextHandlebars = function() {
|
|||||||
* Retrieves list of all dirs which are placed in the specified one.
|
* Retrieves list of all dirs which are placed in the specified one.
|
||||||
*
|
*
|
||||||
* @param {String} srcDir A dir where to search.
|
* @param {String} srcDir A dir where to search.
|
||||||
* @returns {String[]}
|
* @returns Promise A promise which will be resolved with list of child dirs or
|
||||||
|
* rejected with the occured error.
|
||||||
*/
|
*/
|
||||||
var getChildDirs = function(srcDir) {
|
var getChildDirs = function(srcDir) {
|
||||||
return fs.readdirSync(srcDir).filter(function (dir) {
|
return (new Promise(function(resolve, reject) {
|
||||||
return fs.lstatSync(config.chatStylesPath + '/' + dir).isDirectory();
|
fs.readdir(srcDir, function (err, files) {
|
||||||
|
if (err) {
|
||||||
|
reject(err);
|
||||||
|
} else {
|
||||||
|
resolve(files);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})).then(function (files) {
|
||||||
|
// Replace all the files that are not a directory with nulls.
|
||||||
|
return Promise.all(files.map(function (file) {
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
fs.lstat(config.chatStylesPath + '/' + file, function (err, stat) {
|
||||||
|
if (err) {
|
||||||
|
reject(err);
|
||||||
|
} else {
|
||||||
|
resolve(stat.isDirectory() ? file : null);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}));
|
||||||
|
}).then(function(dirs) {
|
||||||
|
// Remove all the nulls from the array.
|
||||||
|
return dirs.filter(function (dir) {
|
||||||
|
return null !== dir;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user