forked from highcharts/highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
423 lines (357 loc) · 12.9 KB
/
gulpfile.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
/* eslint-env node */
'use strict';
var eslint = require('gulp-eslint'),
gulp = require('gulp'),
// argv = require('yargs').argv,
fs = require('fs'),
// sass = require('gulp-sass'),
ftp = require('vinyl-ftp'),
xml2js = require('xml2js');
var paths = {
buildsDir: './js/builds',
distributions: [
'./js/highcharts.src.js',
'./js/highmaps.src.js',
'./js/highstock.src.js',
'./js/highcharts-3d.src.js',
'./js/highcharts-more.src.js'
],
assemblies: [
'./js/highcharts.src.js',
'./js/highstock.src.js',
'./js/highcharts-3d.src.js',
'./js/highcharts-more.src.js',
'./js/highmaps.src.js',
'./js/modules/map.src.js',
'./js/modules/heatmap.src.js'
],
modules: ['./js/modules/*.js'],
parts: ['./js/parts/*.js'],
parts3D: ['./js/parts-3d/*.js'],
partsMap: ['./js/parts-map/*.js'],
partsMore: ['./js/parts-more/*.js'],
themes: ['./js/themes/*.js']
};
/**
* Look up in build.xml and concatenate the parts files
*
* @param {Array} assemblies An array of assembly file names
* @returns {Array} A parallel array containing the concatenated files
*/
function assemble(assemblies) {
var xml = fs.readFileSync('./build.xml', 'utf8'),
ret = [];
xml2js.parseString(xml, function (err, result) {
if (err) {
throw err;
}
xml = result;
});
assemblies.forEach(function (assembly) {
xml.project.target.forEach(function (target) {
if (target.$.name === 'set.properties') {
target.filelist.forEach(function (list) {
var partsDir = '',
tpl = '';
if (list.$.id === assembly + '.files') {
if (assembly === 'highchartsmore') {
partsDir = 'parts-more/';
} else if (assembly === 'highmaps') {
partsDir = '';
} else if (assembly === 'highstock') {
partsDir = '';
}
if (assembly === 'highcharts3d') {
partsDir = 'parts-3d/';
}
list.file.forEach(function (item) {
var file = fs.readFileSync('./js/' + partsDir + item.$.name, 'utf8');
file = file.replace(/\t/g, ' ');
// Indent all files so we can use jsLints whitespace
if (item.$.name.indexOf('Intro') === -1 && item.$.name.indexOf('Outro') === -1) {
file = file.replace(/\n/g, '\n ');
}
tpl += file;
});
tpl = tpl.replace(/ {4}[\r]?\n/g, '\n');
tpl = tpl.replace(
'http://code.highcharts.com@product.cdnpath@/@product.version@/modules/canvas-tools.js',
'http://code.highcharts.com/modules/canvas-tools.js'
);
ret.push(tpl);
}
});
}
});
});
return ret;
}
/*
optimizeHighcharts = function (fs, path) {
var wrapFile = './js/parts/Intro.js',
WS = '\\s*',
CM = ',',
captureQuoted = "'([^']+)'",
captureArray = "\\[(.*?)\\]",
captureFunc = "(function[\\s\\S]*?\\})\\);((?=\\s*define)|\\s*$)",
defineStatements = new RegExp('define\\(' + WS + captureQuoted + WS + CM + WS + captureArray + WS + CM + WS + captureFunc, 'g');
fs.readFile(path, 'utf8', function (err, data) {
var lines = data.split("\n"),
wrap = fs.readFileSync(wrapFile, 'utf8');
lines.forEach(function (line, i) {
if (line.indexOf("define") !== -1) {
lines[i] = lines[i].replace(/\.\//g, ''); // Remove all beginnings of relative paths
lines[i] = lines[i].replace(/\//g, '_'); // Replace all forward slashes with underscore
lines[i] = lines[i].replace(/"/g, ''); // Remove all double quotes
}
});
data = lines.join('\n'); // Concatenate lines
data = data.replace(defineStatements, 'var $1 = ($3($2));'); // Replace define statement with a variable declaration
wrap = wrap.replace(/.*@code.* /, data); // Insert code into UMD wrap
fs.writeFile(path, wrap, 'utf8');
});
},
bundleHighcharts = function (file) {
var requirejs = require('requirejs'),
fileName = file.slice(0, -3), // Remove file extension (.js) from name
config = {
baseUrl: './js/',
name: 'builds/' + fileName,
optimize: 'none',
out: './js/' + file,
onModuleBundleComplete: function (info) {
optimizeHighcharts(fs, info.path);
}
};
requirejs.optimize(config, function (buildResponse) {
console.log("Successfully build " + fileName);
}, function(err) {
console.log(err.originalError);
});
};
gulp.task('build', function () {
var buildFiles = fs.readdirSync(paths.buildsDir);
buildFiles.forEach(bundleHighcharts);
});
gulp.task('styles', function () {
var dir = './js/css/';
gulp.src(dir + '*.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest(dir));
});
*/
gulp.task('lint', ['scripts'], function () {
return gulp.src(paths.assemblies.concat(paths.modules))
// ESLint config is found in .eslintrc file(s)
.pipe(eslint())
.pipe(eslint.failOnError())
.pipe(eslint.formatEach());
});
gulp.task('lint-samples', function () {
return gulp.src(['./samples/*/*/*/demo.js'])
// ESLint config is found in .eslintrc file(s)
.pipe(eslint())
.pipe(eslint.failOnError())
.pipe(eslint.formatEach());
});
// Watch changes to CSS files
gulp.task('default', function () {
// gulp.watch('./js/css/*.scss',['styles']);
gulp.watch('./js/*/*.js', ['scripts']);
});
gulp.task('ftp', function () {
fs.readFile('./git-ignore-me.properties', 'utf8', function (err, lines) {
if (err) {
throw err;
}
var config = {};
lines.split('\n').forEach(function (line) {
line = line.split('=');
if (line[0]) {
config[line[0]] = line[1];
}
});
var conn = ftp.create({
host: config['ftp.host'],
user: config['ftp.user'],
password: config['ftp.password']
});
var globs = paths.distributions.concat(paths.modules);
return gulp.src(globs, { base: './js', buffer: false })
.pipe(conn.newer(config['ftp.dest']))
.pipe(conn.dest(config['ftp.dest']));
});
});
gulp.task('ftp-watch', function () {
gulp.watch('./js/*/*.js', ['scripts', 'ftp']);
});
/**
* Proof of concept to parse super code. Move this logic into the standard build when ready.
*/
gulp.task('scripts', function () {
var codes = [],
prods = [],
assemblies;
/**
* Micro-optimize code based on the build object.
*
* @param {String} tpl The concatenated JavaScript template to process
*
* @returns {String} The processed JavaScript
*/
function preprocess(tpl) {
// Windows newlines
tpl = tpl.replace(/\r\n/g, '\n');
/*
// Escape double quotes and backslashes, to be reinserted after parsing
tpl = tpl.replace(/"/g, '___doublequote___');
tpl = tpl.replace(/\\/g, '\\\\');
// Prepare newlines
tpl = tpl.replace(/\n/g, '\\n');
// Start supercode output, start first output string
tpl = tpl.replace(/^/, 'var s = "');
// Start supercode block, closes output string
tpl = tpl.replace(/\/\*=\s?/g, '";\n');
// End of supercode block, starts output string
tpl = tpl.replace(/=\*\//g, '\ns += "');
// End supercode output, end last output string
tpl = tpl.replace(/$/, '";\nreturn s;');
// Uncomment to preview generated supercode
// fs.writeFile('temp.js', tpl, 'utf8');
// The evaluation function for the ready built supercode
func = new Function('build', tpl);
tpl = func(build);
tpl = tpl.replace(/___doublequote___/g, '"');
// Collect trailing commas left when the tamplate engine has removed
// object literal properties or array items
tpl = tpl.replace(/,(\s*(\]|\}))/g, '$1');
*/
return tpl;
}
/**
* Replace function variables with actual product info
*
* @param {String} tpl The JavaScript template
* @param {Object} product An object containing product info
*
* @returns {String} JavaScript with replaced content
*/
function addVersion(tpl, product) {
return tpl
.replace(/@product\.name@/g, product.name)
.replace(/@product\.version@/g, product.version)
.replace(/@product\.date@/g, product.date)
.replace(/@product\.cdnpath@/g, product.cdnpath);
}
/**
* Parse the build properties files into a structure
*
* @returns {Object} An object containing product info
*/
function getProducts() {
var lines = fs.readFileSync('./build.properties', 'utf8'),
products = {};
lines.split('\n').forEach(function (line) {
var prod, key;
line = line.replace(/\r/, '');
if (line.indexOf('#') !== 0 && line.indexOf('=') !== -1) {
line = line.split('=');
key = line[0].split('.');
prod = key[0];
key = key[2];
if (!products[prod]) {
products[prod] = {};
}
products[prod][key] = line[1];
}
});
return products;
}
var products = getProducts();
// Avoid gulping files in old branch after checkout
/*
if (products.highcharts.version.indexOf('4') === 0) {
return;
}
*/
paths.assemblies.forEach(function (path) {
var prod,
inpath = path
.replace('./js/', '')
.replace('.src.js', '')
.replace('-', '');
// highcharts, highmaps or highstock
if (inpath === 'highmaps' || inpath === 'highstock') {
prod = inpath;
} else {
prod = 'highcharts';
}
if (inpath === 'modules/heatmap') {
inpath = 'heatmap';
} else if (inpath === 'modules/map') {
inpath = 'maps';
prod = 'highmaps';
}
// Load through the local debug.php (todo on HC5: require)
codes.push(inpath);
prods.push(prod);
});
assemblies = assemble(codes);
// Loop over the source files
assemblies.forEach(function (tpl, i) {
var prod = prods[i],
path = paths.assemblies[i],
file;
// Unspecified date, use current
if (!products[prod].date) {
products[prod].date = (new Date()).toISOString().substr(0, 10);
}
tpl = addVersion(tpl, products[prod]);
file = fs.readFileSync(path, 'utf8');
// To avoid noisy commits, change dates if there are actual changes in the contents of the file
if (file.replace(/\([0-9]{4}-[0-9]{2}-[0-9]{2}\)/g, '()') !== tpl.replace(/\([0-9]{4}-[0-9]{2}-[0-9]{2}\)/g, '()')) {
// Create the classic file
fs.writeFileSync(
path,
preprocess(tpl, {
classic: true
}),
'utf8'
);
// Create the unstyled file
/*
fs.writeFileSync(
path.replace('.src.js', '.unstyled.src.js'),
preprocess(tpl, {
classic: false
}),
'utf8'
);
*/
}
});
// Special case
var files = ['./lib/canvg-1.1/rgbcolor.js', './lib/canvg-1.1/canvg.js', './js/modules/canvgrenderer-extended.src.js'],
js = '';
/**
* Add a file to the assembly
*
* @param {Number} i The index
* @param {Function} finished Continue when ready
*
* @returns {undefined}
*/
function addFile(i, finished) {
var file = fs.readFileSync(files[i], 'utf8');
js += file;
if (i + 1 < files.length) {
addFile(i + 1, finished);
} else if (finished) {
finished();
}
}
addFile(0, function () {
js = addVersion(js, products.highcharts);
fs.writeFileSync('./build/canvas-tools.src.js', js, 'utf8');
});
});