blob: c560e4ae18749db5b5de5a5d0934dfb9ac0c87ae [file] [log] [blame]
Matteo Scandolo608f91d2015-10-29 11:54:54 +01001'use strict';
2
3// BUILD
Matteo Scandolod44ceb42015-11-06 17:14:28 +01004//
Matteo Scandolo608f91d2015-10-29 11:54:54 +01005// The only purpose of this gulpfile is to build a XOS view and copy the correct files into
6// .html => dashboards
7// .js (minified and concat) => static/js
Matteo Scandolod44ceb42015-11-06 17:14:28 +01008//
Matteo Scandolo608f91d2015-10-29 11:54:54 +01009// The template are parsed and added to js with angular $templateCache
10
11var gulp = require('gulp');
Matteo Scandolobbcc01b2015-11-04 16:30:43 +010012var ngAnnotate = require('gulp-ng-annotate');
Matteo Scandolo608f91d2015-10-29 11:54:54 +010013var uglify = require('gulp-uglify');
14var templateCache = require('gulp-angular-templatecache');
15var runSequence = require('run-sequence');
Matteo Scandolo97532ef2016-05-17 17:12:03 -070016var concat = require('gulp-concat-util');
Matteo Scandolo608f91d2015-10-29 11:54:54 +010017var del = require('del');
18var wiredep = require('wiredep');
Matteo Scandolo6d972642015-10-29 15:50:15 +010019var angularFilesort = require('gulp-angular-filesort');
Matteo Scandolobbcc01b2015-11-04 16:30:43 +010020var _ = require('lodash');
Matteo Scandolod44ceb42015-11-06 17:14:28 +010021var eslint = require('gulp-eslint');
22var inject = require('gulp-inject');
23var rename = require('gulp-rename');
24var replace = require('gulp-replace');
Matteo Scandolo97532ef2016-05-17 17:12:03 -070025var postcss = require('gulp-postcss');
26var autoprefixer = require('autoprefixer');
27var mqpacker = require('css-mqpacker');
28var csswring = require('csswring');
Matteo Scandolo608f91d2015-10-29 11:54:54 +010029
Matteo Scandolo97532ef2016-05-17 17:12:03 -070030const TEMPLATE_FOOTER = `
31angular.module('xos.contentProvider')
32.run(['$location', function(a){
33 a.path('/');
34}])
35`
Matteo Scandolo9a607262015-11-10 17:13:04 +010036
Matteo Scandolo608f91d2015-10-29 11:54:54 +010037module.exports = function(options){
Matteo Scandoloc2d0f532015-10-29 16:13:35 +010038
Matteo Scandolod44ceb42015-11-06 17:14:28 +010039 // delete previous builded file
Matteo Scandolo608f91d2015-10-29 11:54:54 +010040 gulp.task('clean', function(){
Matteo Scandolod44ceb42015-11-06 17:14:28 +010041 return del(
Matteo Scandolo97532ef2016-05-17 17:12:03 -070042 [
43 options.dashboards + 'xosContentProvider.html',
Matteo Scandolo195dde92016-07-25 16:43:16 -070044 options.static + 'css/xosContentProvider.css',
45 options.static + 'images/contentProvider-icon.png',
46 options.static + 'images/contentProvider-icon-active.png'
Matteo Scandolo97532ef2016-05-17 17:12:03 -070047 ],
Matteo Scandolod44ceb42015-11-06 17:14:28 +010048 {force: true}
49 );
Matteo Scandolo608f91d2015-10-29 11:54:54 +010050 });
51
Matteo Scandolo97532ef2016-05-17 17:12:03 -070052 // minify css
53 gulp.task('css', function () {
54 var processors = [
55 autoprefixer({browsers: ['last 1 version']}),
56 mqpacker,
57 csswring
58 ];
59
60 gulp.src([
61 `${options.css}**/*.css`,
62 `!${options.css}dev.css`
63 ])
64 .pipe(postcss(processors))
65 .pipe(gulp.dest(options.tmp + '/css/'));
66 });
67
68 // copy css in correct folder
69 gulp.task('copyCss', ['wait'], function(){
70 return gulp.src([`${options.tmp}/css/*.css`])
71 .pipe(concat('xosContentProvider.css'))
72 .pipe(gulp.dest(options.static + 'css/'))
73 });
74
Matteo Scandolo195dde92016-07-25 16:43:16 -070075 // copy images in correct folder
76 gulp.task('copyImages', ['wait'], function(){
77 return gulp.src([`${options.icon}/contentProvider-icon.png`,`${options.icon}/contentProvider-icon-active.png`])
78 .pipe(gulp.dest(options.static + 'images/'))
79 });
80
Matteo Scandoloc2d0f532015-10-29 16:13:35 +010081 // compile and minify scripts
Matteo Scandolo608f91d2015-10-29 11:54:54 +010082 gulp.task('scripts', function() {
83 return gulp.src([
Matteo Scandolod44ceb42015-11-06 17:14:28 +010084 options.tmp + '**/*.js'
85 ])
86 .pipe(ngAnnotate())
87 .pipe(angularFilesort())
88 .pipe(concat('xosContentProvider.js'))
Matteo Scandolo97532ef2016-05-17 17:12:03 -070089 .pipe(concat.header('//Autogenerated, do not edit!!!\n'))
90 .pipe(concat.footer(TEMPLATE_FOOTER))
Matteo Scandolod44ceb42015-11-06 17:14:28 +010091 .pipe(uglify())
92 .pipe(gulp.dest(options.static + 'js/'));
Matteo Scandolo608f91d2015-10-29 11:54:54 +010093 });
94
Matteo Scandoloc2d0f532015-10-29 16:13:35 +010095 // set templates in cache
Matteo Scandolo608f91d2015-10-29 11:54:54 +010096 gulp.task('templates', function(){
Matteo Scandolod44ceb42015-11-06 17:14:28 +010097 return gulp.src('./src/templates/*.html')
Matteo Scandolo608f91d2015-10-29 11:54:54 +010098 .pipe(templateCache({
Matteo Scandolobbcc01b2015-11-04 16:30:43 +010099 module: 'xos.contentProvider',
Matteo Scandolo97532ef2016-05-17 17:12:03 -0700100 root: 'templates/'
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100101 }))
Matteo Scandolobbcc01b2015-11-04 16:30:43 +0100102 .pipe(gulp.dest(options.tmp));
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100103 });
104
Matteo Scandolobbcc01b2015-11-04 16:30:43 +0100105 // copy html index to Django Folder
Matteo Scandolo97532ef2016-05-17 17:12:03 -0700106 gulp.task('copyHtml', function(){
Matteo Scandolod44ceb42015-11-06 17:14:28 +0100107 return gulp.src(options.src + 'index.html')
108 // remove dev dependencies from html
Matteo Scandolo97532ef2016-05-17 17:12:03 -0700109 .pipe(replace(/<!-- bower:css -->(\n^<link.*)*\n<!-- endbower -->/gmi, ''))
110 .pipe(replace(/<!-- bower:js -->(\n^<script.*)*\n<!-- endbower -->/gmi, ''))
Matteo Scandolod44ceb42015-11-06 17:14:28 +0100111 // injecting minified files
112 .pipe(
113 inject(
114 gulp.src([
Matteo Scandolo195dde92016-07-25 16:43:16 -0700115 options.static + 'vendor/xosContentProviderVendor.js',
Matteo Scandolo97532ef2016-05-17 17:12:03 -0700116 options.static + 'js/xosContentProvider.js',
117 options.static + 'css/xosContentProvider.css'
Matteo Scandoloc0c94092016-02-02 17:25:18 -0800118 ]),
119 {ignorePath: '/../../../xos/core/xoslib'}
Matteo Scandolod44ceb42015-11-06 17:14:28 +0100120 )
121 )
122 .pipe(rename('xosContentProvider.html'))
123 .pipe(gulp.dest(options.dashboards));
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100124 });
125
Matteo Scandoloc2d0f532015-10-29 16:13:35 +0100126 // minify vendor js files
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100127 gulp.task('wiredep', function(){
128 var bowerDeps = wiredep().js;
Matteo Scandolobbcc01b2015-11-04 16:30:43 +0100129 if(!bowerDeps){
130 return;
131 }
132
133 // remove angular (it's already loaded)
134 _.remove(bowerDeps, function(dep){
135 return dep.indexOf('angular/angular.js') !== -1;
136 });
137
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100138 return gulp.src(bowerDeps)
Matteo Scandolobbcc01b2015-11-04 16:30:43 +0100139 .pipe(concat('xosContentProviderVendor.js'))
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100140 .pipe(uglify())
Matteo Scandolo195dde92016-07-25 16:43:16 -0700141 .pipe(gulp.dest(options.static + 'vendor/'));
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100142 });
143
Matteo Scandolod44ceb42015-11-06 17:14:28 +0100144 gulp.task('lint', function () {
145 return gulp.src(['src/js/**/*.js'])
146 .pipe(eslint())
147 .pipe(eslint.format())
148 .pipe(eslint.failAfterError());
149 });
Matteo Scandoloc2d0f532015-10-29 16:13:35 +0100150
Matteo Scandolo97532ef2016-05-17 17:12:03 -0700151 gulp.task('wait', function (cb) {
152 // setTimeout could be any async task
153 setTimeout(function () {
154 cb();
155 }, 1000);
156 });
157
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100158 gulp.task('build', function() {
159 runSequence(
Matteo Scandolo97532ef2016-05-17 17:12:03 -0700160 'clean',
161 'sass',
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100162 'templates',
Matteo Scandolobbcc01b2015-11-04 16:30:43 +0100163 'babel',
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100164 'scripts',
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100165 'wiredep',
Matteo Scandolo97532ef2016-05-17 17:12:03 -0700166 'css',
167 'copyCss',
Matteo Scandolo195dde92016-07-25 16:43:16 -0700168 'copyImages',
Matteo Scandolod44ceb42015-11-06 17:14:28 +0100169 'copyHtml',
Matteo Scandolobbcc01b2015-11-04 16:30:43 +0100170 'cleanTmp'
Matteo Scandolo608f91d2015-10-29 11:54:54 +0100171 );
172 });
Matteo Scandolod44ceb42015-11-06 17:14:28 +0100173};