blob: 33a2cac643e2d91b43c2d25c13313d0b14c3d76f [file] [log] [blame]
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -07001'use strict';
2
3// BUILD
4//
5// 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
8//
9// The template are parsed and added to js with angular $templateCache
10
11var gulp = require('gulp');
12var ngAnnotate = require('gulp-ng-annotate');
13var uglify = require('gulp-uglify');
14var templateCache = require('gulp-angular-templatecache');
15var runSequence = require('run-sequence');
Matteo Scandoloe993b882016-05-17 17:30:14 -070016var concat = require('gulp-concat-util');
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070017var del = require('del');
18var wiredep = require('wiredep');
19var angularFilesort = require('gulp-angular-filesort');
20var _ = require('lodash');
21var eslint = require('gulp-eslint');
22var inject = require('gulp-inject');
23var rename = require('gulp-rename');
24var replace = require('gulp-replace');
Jeremy Moweryee139912016-04-17 19:20:01 -070025var postcss = require('gulp-postcss');
26var autoprefixer = require('autoprefixer');
27var mqpacker = require('css-mqpacker');
28var csswring = require('csswring');
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070029
Matteo Scandoloe993b882016-05-17 17:30:14 -070030const TEMPLATE_FOOTER = `
31angular.module('xos.openVPNDashboard')
32.run(['$location', function(a){
33 a.path('/');
34}])
35`
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070036
37module.exports = function(options){
Matteo Scandoloe993b882016-05-17 17:30:14 -070038
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070039 // delete previous builded file
40 gulp.task('clean', function(){
41 return del(
Matteo Scandoloe993b882016-05-17 17:30:14 -070042 [
43 options.dashboards + 'xosOpenVPNDashboard.html',
44 options.static + 'css/xosOpenVPNDashboard.css'
45 ],
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070046 {force: true}
47 );
48 });
49
Jeremy Moweryee139912016-04-17 19:20:01 -070050 // minify css
51 gulp.task('css', function () {
52 var processors = [
53 autoprefixer({browsers: ['last 1 version']}),
54 mqpacker,
55 csswring
56 ];
57
58 gulp.src([
59 `${options.css}**/*.css`,
60 `!${options.css}dev.css`
61 ])
62 .pipe(postcss(processors))
63 .pipe(gulp.dest(options.tmp + '/css/'));
64 });
65
Matteo Scandoloe993b882016-05-17 17:30:14 -070066 // copy css in correct folder
67 gulp.task('copyCss', ['wait'], function(){
Jeremy Moweryee139912016-04-17 19:20:01 -070068 return gulp.src([`${options.tmp}/css/*.css`])
Jeremy Mowery81e84cc2016-04-19 17:01:48 -070069 .pipe(concat('xosOpenVPNDashboard.css'))
Jeremy Moweryee139912016-04-17 19:20:01 -070070 .pipe(gulp.dest(options.static + 'css/'))
71 });
72
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070073 // compile and minify scripts
74 gulp.task('scripts', function() {
75 return gulp.src([
76 options.tmp + '**/*.js'
77 ])
78 .pipe(ngAnnotate())
79 .pipe(angularFilesort())
Jeremy Mowery81e84cc2016-04-19 17:01:48 -070080 .pipe(concat('xosOpenVPNDashboard.js'))
Matteo Scandoloe993b882016-05-17 17:30:14 -070081 .pipe(concat.header('//Autogenerated, do not edit!!!\n'))
82 .pipe(concat.footer(TEMPLATE_FOOTER))
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070083 .pipe(uglify())
84 .pipe(gulp.dest(options.static + 'js/'));
85 });
86
87 // set templates in cache
88 gulp.task('templates', function(){
89 return gulp.src('./src/templates/*.html')
90 .pipe(templateCache({
Jeremy Mowery81e84cc2016-04-19 17:01:48 -070091 module: 'xos.openVPNDashboard',
Matteo Scandoloe993b882016-05-17 17:30:14 -070092 root: 'templates/'
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070093 }))
94 .pipe(gulp.dest(options.tmp));
95 });
96
97 // copy html index to Django Folder
Matteo Scandoloe993b882016-05-17 17:30:14 -070098 gulp.task('copyHtml', function(){
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -070099 return gulp.src(options.src + 'index.html')
100 // remove dev dependencies from html
Matteo Scandoloe993b882016-05-17 17:30:14 -0700101 .pipe(replace(/<!-- bower:css -->(\n^<link.*)*\n<!-- endbower -->/gmi, ''))
102 .pipe(replace(/<!-- bower:js -->(\n^<script.*)*\n<!-- endbower -->/gmi, ''))
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -0700103 // injecting minified files
104 .pipe(
105 inject(
106 gulp.src([
Jeremy Mowery81e84cc2016-04-19 17:01:48 -0700107 options.static + 'js/vendor/xosOpenVPNDashboardVendor.js',
108 options.static + 'js/xosOpenVPNDashboard.js',
109 options.static + 'css/xosOpenVPNDashboard.css'
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -0700110 ]),
111 {ignorePath: '/../../../xos/core/xoslib'}
112 )
113 )
Jeremy Mowery81e84cc2016-04-19 17:01:48 -0700114 .pipe(rename('xosOpenVPNDashboard.html'))
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -0700115 .pipe(gulp.dest(options.dashboards));
116 });
117
118 // minify vendor js files
119 gulp.task('wiredep', function(){
120 var bowerDeps = wiredep().js;
121 if(!bowerDeps){
122 return;
123 }
124
125 // remove angular (it's already loaded)
126 _.remove(bowerDeps, function(dep){
127 return dep.indexOf('angular/angular.js') !== -1;
128 });
129
130 return gulp.src(bowerDeps)
Jeremy Mowery81e84cc2016-04-19 17:01:48 -0700131 .pipe(concat('xosOpenVPNDashboardVendor.js'))
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -0700132 .pipe(uglify())
133 .pipe(gulp.dest(options.static + 'js/vendor/'));
134 });
135
136 gulp.task('lint', function () {
137 return gulp.src(['src/js/**/*.js'])
138 .pipe(eslint())
139 .pipe(eslint.format())
140 .pipe(eslint.failAfterError());
141 });
142
Matteo Scandoloe993b882016-05-17 17:30:14 -0700143 gulp.task('wait', function (cb) {
144 // setTimeout could be any async task
145 setTimeout(function () {
146 cb();
147 }, 1000);
148 });
149
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -0700150 gulp.task('build', function() {
151 runSequence(
Matteo Scandoloe993b882016-05-17 17:30:14 -0700152 'clean',
153 'sass',
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -0700154 'templates',
155 'babel',
156 'scripts',
157 'wiredep',
Matteo Scandoloe993b882016-05-17 17:30:14 -0700158 'css',
Jeremy Moweryee139912016-04-17 19:20:01 -0700159 'copyCss',
Matteo Scandoloe993b882016-05-17 17:30:14 -0700160 'copyHtml',
Jeremy Mowery6efeb7a2016-02-25 09:32:00 -0700161 'cleanTmp'
162 );
163 });
Matteo Scandoloe993b882016-05-17 17:30:14 -0700164};