-
Notifications
You must be signed in to change notification settings - Fork 48
/
gulpfile.js
817 lines (746 loc) · 36 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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
var gulp = require('gulp'),
gutil = require('gulp-util'),
closureCompiler = require('gulp-closure-compiler'),
header = require('gulp-header'),
size = require('gulp-size'),
del = require('del'),
concat = require('gulp-concat'),
gzip = require('gulp-gzip'),
// to get vendor files
download = require('gulp-download'),
// to build documentation
fs = require('fs'),
rename = require('gulp-rename'),
parser = require('gulp-file-parser'),
watch = require('gulp-watch'),
markdown = require('gulp-markdown'),
hljs = require('highlight.js'),
frontMatter = require('gulp-front-matter'),
layout = require('gulp-layout'),
// tests
GulpFlow = require("gulp-flowcheck");
var Paths = {
Root: '.',
Destination: './dist',
Src: function() { return Paths.Root + '/src'; },
NodeModules: function() { return Paths.Root + '/node_modules'; },
Rpd: function() { return Paths.Src() + '/rpd.js'; },
Kefir: function() { return Paths.NodeModules() + '/kefir.min.js'; },
D3: function() { return Paths.NodeModules() + '/d3.min.js'; },
D3Tiny: function() { return Paths.Src() + '/d3_tiny.js'; },
RenderModel: function() { return Paths.Src() + '/render/shared.js'; },
Renderer: function(renderer) { return Paths.Src() + '/render/' + renderer; },
Toolkit: function(toolkit) { return Paths.Src() + '/toolkit/' + toolkit + '/toolkit'; },
ToolkitModel: function(toolkit) { return Paths.Src() + '/toolkit/' + toolkit + '/shared'; },
ToolkitRenderer: function(toolkit, renderer) { return Paths.Src() + '/toolkit/' + toolkit + '/' + renderer; },
UserToolkit: function(toolkit) { return toolkit; },
UserToolkitModel: function(toolkit) { return toolkit + '/shared'; },
UserToolkitRenderer: function(toolkit, renderer) { return toolkit + '/' + renderer; },
StyleRenderer: function(style, renderer) { return Paths.Src() + '/style/' + style + '/' + renderer; },
UserStyleRenderer: function(style, renderer) { return style + '/' + renderer; },
Io: function(io) { return Paths.Src() + '/io/' + io; },
Navigation: function(type) { return Paths.Src() + '/navigation/' + type; },
}
var yargs = require('yargs')
.usage('Usage: gulp [command] [options]')
.command('help', 'show this message')
.command('build [options]', '(default) compile the RPD library with given options, if specified; all the options listed below are supported')
.command('build-with-gzip [options]', 'additionally to what `build` performs, compile the gzipped version of the library; all the options listed below are supported')
.command('test', 'run the Jasmine tests to check if API is consistent (the same command runs on Travis CI)')
.command('list-options [options]', 'get the information for given options, may be used to be sure if you specified all the options correctly without compiling the library; all the options listed below are supported')
.command('html-head [options]', 'get the full list of all the required files with given options to include into HTML file head if you use not the compiled version, but the files from `./src` directly; all the options listed below are supported')
.command('for-docs', 'compile the version of RPD used in documentation and put it into `./docs/compiled`, it could be useful, but not required, to do `gulp for-docs && gulp-docs` in pair')
.command('docs [--docs-local]', 'compile the documentation from `./docs` sources into corresponding HTML files and place the resulting structure into `./docs/compiled`')
.command('version', 'get the version of the RPD library you currently have')
.array('renderer').array('style').array('toolkit').array('io').array('navigation')
/*.choices('compilation', ['simple', 'whitespace', 'advanced'])*/
.string('from').string('to').string('target-name').string('compilation').boolean('pretty').boolean('d3')
.array('user-style').array('user-toolkit')
.boolean('docs-local')
.default({
from: '.',
to: './dist',
'target-name': 'rpd', // forms dist/rpd.js and dist/rpd.css
'compilation': 'simple',
pretty: false,
renderer: [ 'html' ],
style: [ 'quartz' ],
toolkit: [ ],
io: [],
navigation: [],
d3: false,
'user-style': [ ],
'user-toolkit': [ ],
'docs-local': false
})
.alias({
'renderer': 'r', 'style': 's', 'toolkit': 't', 'io': 'x', 'navigation': ['h', 'nav'],
'from': ['i', 'root'], 'to': ['o', 'dest'/*, 'destination'*/],
'target-name': 'n', 'compilation': 'c', 'pretty': 'p',
'user-style': 'z', 'user-toolkit': 'd',
'd3': 'no-d3-tiny'
})
.describe({
'renderer': 'this renderer will be included in the compiled version, choises are: `html`, `svg`, ...',
'style': 'this style will be included in compiled version, choises are: `compact`, `compact-v`, `pd`, `plain`, `quartz`, ...',
'toolkit': 'this node toolkit will be included in the compiled version, choises are: `util`, `anm`, `webpd`, `timbre`, ...',
'io': 'this I/O module will be included in compiled version, choises are: `json`, `pd`, ...',
'navigation': 'this navigation module will be included in compiled version, choises are: `browser`, ...',
'from': 'use the distibution located at given path, also works for `gulp html-head`',
'to': 'write the compiled files to the given path, instead of default one',
'target-name': 'change the name of the target file, i.e. `-n rpd-svg-quartz` will create `./dist/rpd-svg-quartz.css` and `./dist/rpd-svg-quartz.min.js`',
'compilation': 'change the compilation of the Closure compiler, choices are: `whitespace`, `simple`, `advanced`',
'pretty': 'use pretty-print option of the Closure compiler',
'd3': 'do not include tiny_d3 in the compiled file with the intention that external d3 library will be used (RPD can handle that)',
'user-style': 'use the user style located at the given path, instead of searching for it at `./src/style/<style-name>`',
'user-toolkit': 'use the user style toolkit at the given path, instead of searching for it at `./src/toolkit/<toolkit-name>`',
'docs-local': 'used for building documentation to open and test it locally'
})
.example('gulp -r svg -t anm -t timbre', 'add SVG renderer to the compilation instead of default HTML, also include `anm` and `timbre` toolkits there')
.example('gulp html-head -r svg -t anm -t timbre', 'get the HTML header for the version described above, which will provide paths inside ./src instead of compiled `rpd.min.js`')
.example('gulp -o /Users/hitchcock -n my-custom-rpd', 'write the files to `/Users/hitchcock/my-custom-rpd.css` and ' +
'`/Users/hitchcock/my-custom-rpd.min.js`')
.example('gulp -z /Users/hitchcock/my-style -r svg -x json -n my-rpd', 'include user style located at `/Users/hitchcock/my-style`, add SVG renderer, add JSON I/O module and place the files at `./dist/my-rpd.min.js` and `./dist/my-rpd.css`')
.epilogue('See http://shamansir.github.io/rpd for detailed documentation. © shaman.sir, 2016');
var argv = yargs.argv;
var pkg = require('./package.json');
var Server = require('karma').Server;
var KARMA_CONF_PATH = 'spec/karma.conf.js';
var CLOSURE_COMPILER_PATH = 'node_modules/google-closure-compiler/compiler.jar';
var DOC_HIGHLIGHT_STYLE = 'docco', // default, tomorrow, foundation, github-gist, xcode
DOC_HIGHLIGHT_STYLE_FILENAME = DOC_HIGHLIGHT_STYLE + '.min.css';
var COMPILATION_LEVELS = {
'whitespace': 'WHITESPACE_ONLY',
'simple': 'SIMPLE_OPTIMIZATIONS',
'advanced': 'ADVANCED_OPTIMIZATIONS'
};
var minSuffixIsObligatory = false;
// will add `.min` suffix to compiled file name even when `--compilation` is set to `whitespace`
var valueColor = gutil.colors.yellow,
infoColor = gutil.colors.black;
gulp.task('default', ['build']);
gulp.task('build', ['check-paths', 'list-opts', 'concat-css'], function() {
var targetName = argv['target-name'];
var resultName = targetName + ((minSuffixIsObligatory || (argv.compilation !== 'whitespace')) ? '.min.js' : '.js');
var compilerFlags = {
language_in: 'ECMASCRIPT5',
compilation_level: COMPILATION_LEVELS[argv.compilation || 'simple']
};
if (argv.pretty) compilerFlags['formatting'] = 'PRETTY_PRINT';
gutil.log(infoColor('Compiling ' + resultName + ' with Closure compiler'));
gutil.log(infoColor('Language In: ') + valueColor(compilerFlags.language_in));
gutil.log(infoColor('Compilation Level: ') + valueColor(compilerFlags.compilation_level));
gutil.log(infoColor('Formatting: ') + valueColor(compilerFlags.formatting));
gutil.log(infoColor('Sources included:'));
return gulp.src(logFiles(getJsFiles(argv)))
.pipe(closureCompiler({
compilerPath: './' + CLOSURE_COMPILER_PATH,
fileName: resultName,
compilerFlags: compilerFlags
}))
.pipe(distJsHeader(pkg, argv, new Date()))
.pipe(gulp.dest(Paths.Destination))
.pipe(size({ showFiles: true, title: 'Result:' }))
.on('end', function() {
gutil.log(infoColor('Your ' + Paths.Destination + '/' + resultName + ' is ready!'));
});
});
gulp.task('gzip-min-js', ['build'], function() {
var targetName = argv['target-name'];
var sourceName = targetName + ((minSuffixIsObligatory || (argv.compilation !== 'whitespace')) ? '.min.js' : '.js');
return gulp.src(Paths.Destination + '/' + sourceName)
.pipe(gzip())
.pipe(gulp.dest(Paths.Destination))
.pipe(size({ showFiles: true, title: 'Result:' }))
.on('end', function() {
gutil.log(infoColor('Your ' + Paths.Destination + '/' + sourceName + '.gz is ready!'));
});
});
gulp.task('gzip-css', ['build'], function() {
var targetName = argv['target-name'];
var sourceName = targetName + '.css';
return gulp.src(Paths.Destination + '/' + sourceName)
.pipe(gzip())
.pipe(gulp.dest(Paths.Destination))
.pipe(size({ showFiles: true, title: 'Result:' }))
.on('end', function() {
gutil.log(infoColor('Your ' + Paths.Destination + '/' + sourceName + '.gz is ready!'));
});
});
gulp.task('build-with-gzip', ['build', 'gzip-min-js', 'gzip-css']);
gulp.task('concat-css', ['check-paths'], function() {
var targetName = argv['target-name'];
gutil.log(infoColor('Concatenating ' + targetName + '.css'));
return gulp.src(logFiles(getCssFiles(argv)))
.pipe(concat(targetName + '.css'))
.pipe(distCssHeader(pkg, argv, new Date()))
.pipe(gulp.dest(Paths.Destination))
.pipe(size({ showFiles: true, title: 'Result:' }))
.on('end', function() {
gutil.log(infoColor('Your ' + Paths.Destination + '/' + targetName + '.css is ready!'));
});
});
gulp.task('test', function(done) {
new Server({
configFile: __dirname + '/' + KARMA_CONF_PATH,
singleRun: true
}, function(result) {
// var gulpFlow = new GulpFlow();
// gulp.src("./spec/*.flow.js")
// .pipe(header("/* @flow */"))
// .pipe(gulpFlow.check())
// .pipe(gulpFlow.markdownReporter());
if (result > 0) {
return done(new Error('Karma exited with status code ' + result));
}
done();
}).start();
});
gulp.task('help', function() { console.log(yargs.help()); });
gulp.task('check-paths', function() {
checkPaths(argv);
});
gulp.task('list-opts', function() {
gutil.log(infoColor('Root Path (--root):'),
argv.from ? valueColor(argv.from) : '.');
gutil.log(infoColor('Destination Path (--dest):'),
argv.to ? valueColor(argv.to) : './dist');
gutil.log(infoColor('Selected Renderers (--renderer):'),
argv.renderer.length ? valueColor(argv.renderer.join(', ')) : '[None]');
gutil.log(infoColor('Selected Styles (--style):'),
argv.style.length ? valueColor(argv.style.join(', ')) : '[None]');
gutil.log(infoColor('Selected Toolkits (--toolkit):'),
argv.toolkit.length ? valueColor(argv.toolkit.join(', ')) : '[None]');
gutil.log(infoColor('Selected I/O Modules (--io):'),
argv.io.length ? valueColor(argv.io.join(', ')) : '[None]');
gutil.log(infoColor('Selected Navigation Modules (--io):'),
argv.navigation.length ? valueColor(argv.navigation.join(', ')) : '[None]');
gutil.log(infoColor('d3.js or d3_tiny.js (--d3):'),
valueColor(argv.d3 ? 'd3.js (external)' : 'd3_tiny.js'));
gutil.log(infoColor('Selected User Styles (--user-style):'),
argv['user-style'].length ? valueColor(argv['user-style'].join(', ')) : '[None]');
gutil.log(infoColor('Selected User Toolkits (--user-toolkit):'),
argv['user-toolkit'].length ? valueColor(argv['user-toolkit'].join(', ')) : '[None]');
gutil.log(infoColor('Selected Target Name (--target-name):'), argv['target-name']);
});
gulp.task('html-head', ['check-paths', 'list-opts'], function() {
getHtmlHead(argv);
});
gulp.task('version', function() {
if (argv.silent) {
console.log('v'+pkg.version);
} else {
gutil.log(gutil.colors.blue('v'+pkg.version));
}
});
// ========================== docs, docs-watch =================================
gulp.task('setup-docs-configuration', function() {
minSuffixIsObligatory = true;
argv.renderer = [ 'svg' ];
argv.style = [ 'compact-v' ];
argv.toolkit = [ 'util' ];
argv['target-name'] = 'rpd-docs';
//argv.compilation = 'whitespace';
//argv.pretty = true;
});
gulp.task('for-docs', [ 'setup-docs-configuration', 'build'/*,
'build-rpd-to-distribute-html',
'build-rpd-to-distribute-svg' */ ], function() {
// `docs` task copies all required files itself
/* var docsFiles = [ Paths.Destination + './rpd-docs.min.js', Paths.Destination + './rpd-docs.css' ];
return gulp.src(docsFiles.join(' '))
.pipe(gulp.dest('./docs/compiled/'))
.on('end', function() {
console.log('Copied ' + docsFiles.join(',') + ' to ./docs/compiled');
});*/
});
var docsLocal = argv['docs-local'],
protocol = docsLocal ? 'http://' : '//';
var fiddleRe = new RegExp('<!-- fiddle: ([a-zA-Z0-9]+)( ([a-z,]+)/)? -->', 'g');
var fiddleTemplate = '<script async src="' + protocol + 'jsfiddle.net/shaman_sir/\$1/embed/\$3/"></script>';
var injectFiddles = parser({
name: 'inject-fiddles',
func: function(data) {
return data.replace(fiddleRe, fiddleTemplate);
}
});
var codepenRe = new RegExp('<!-- codepen: ([a-zA-Z0-9]+) -->', 'g');
var codepenTemplate = '<p data-height="266" data-theme-id="21572" data-slug-hash="\$1" data-default-tab="result" ' +
'data-user="shamansir" class="codepen">See the Pen <a href="http://codepen.io/shamansir/pen/\$1/">\$1</a> ' +
'by Ulric Wilfred (<a href="http://codepen.io/shamansir">@shamansir</a>) on ' +
'<a href="http://codepen.io">CodePen</a>.</p>' +
'<script async src="' + protocol + 'assets.codepen.io/assets/embed/ei.js"></script>';
var injectCodepens = parser({
name: 'inject-codepens',
func: function(data) {
return data.replace(codepenRe, codepenTemplate);
}
});
var svgLogoRe = new RegExp('<!-- rpd-svg-logo: #([\-a-z]+) ([0-9]+) ([0-9]+) -->', 'g');
var svgLogoFile = fs.readFileSync("docs/rpd.svg", "utf8");
var injectSvgLogo = parser({
name: 'inject-svg-logo',
func: function(data) {
return data.replace(svgLogoRe, svgLogoFile.replace('<svg', '<svg id="\$1" width="\$2px" height="\$3px"'));
}
});
var inProgressRe = new RegExp('<!-- IN PROGRESS -->', 'g');
var replaceInProgressWith = '<div class="in-progress" text="In Progress."><span>[ In Progress ]</span></div>'
var injectInProgressLabel = parser({
name: 'inject-in-progress-label',
func: function(data) {
return data.replace(inProgressRe, replaceInProgressWith);
}
});
var proplistRe = new RegExp('<!-- PROPLIST: (.*) -->((.|[\n$^])*?)<!-- /PROPLIST -->', 'g');
var injectProplist = parser({
name: 'inject-proplist',
func: function(data) {
return data.replace(proplistRe, '<div class="proplist"><span>\$1</span>\$2</div>');
}
});
var sectionMarkRe = new RegExp('<!-- MARK: (.*) -->', 'g');
var injectSectionMark = parser({
name: 'inject-section-mark',
func: function(data) {
return data.replace(sectionMarkRe, '<div class="section-mark"><span>← \$1</span></div>');
}
});
var renderer = new markdown.marked.Renderer();
var prevParagraphRender = renderer.paragraph;
renderer.paragraph = function(text) {
return prevParagraphRender(checkNewLines(text));
}
var prevHeadingRender = renderer.heading;
renderer.heading = function(text, level) {
if ((text.indexOf('<code>') >= 0) && (level <= 4)) {
var strippedText = text.replace('<code>', '').replace('</code>', '');
var firstBracketIdx = strippedText.indexOf('(');
if (firstBracketIdx < 0) { firstBracketIdx = strippedText.length; }
return '<h' + level + ' id="'
+ strippedText.slice(0, firstBracketIdx).replace(/[\s\.]/g, '-').toLowerCase() + '">'
+ text + '</h' + level + '>';
} else {
return prevHeadingRender.apply(renderer, arguments);
}
}
function makeDocs(config, f) {
var result = gulp.src('./docs/**/*.md');
if (f) result = f(result);
return result.pipe(frontMatter())
.pipe(markdown({
renderer: renderer,
highlight: function (code, lang, callback) {
//var highlighted = hljs.highlightAuto(code, lang ? [ (lang !== 'sh') ? lang : 'bash' ] : []);
var highlighted = hljs.highlight((lang === 'sh') ? 'gams' : lang, code);
//console.log('-------------');
//console.log(lang, highlighted.language);
//console.log('->');
//console.log(code);
//console.log('-------------');
callback(null, highlighted ? highlighted.value : '');
//return highlighted ? highlighted.value : '';
}
}))
.pipe(injectSvgLogo())
.pipe(injectInProgressLabel())
.pipe(injectProplist())
.pipe(injectSectionMark())
//.pipe(injectFiddles())
//.pipe(injectCodepens())
.pipe(layout(function(file) {
gutil.log(gutil.colors.red(file.frontMatter.id) + ': ' +
gutil.colors.yellow(file.frontMatter.title) + ' ' +
gutil.colors.green('(' + (file.frontMatter.level || 0) + ')'));
return {
doctype: 'html',
pretty: true,
'config': config,
front: file.frontMatter,
layout: './docs/layout.jade'
};
}))
.pipe(gulp.dest('./docs/compiled/'));
}
gulp.task('docs-clean-dir', function() {
return del([ './docs/compiled/assets/**/*', './docs/compiled/vendor/**/*', './docs/compiled/examples/**/*', './docs/compiled/**/*' ]);
});
gulp.task('docs-copy-dependencies', function() {
var dependencies = [ './node_modules/kefir/dist/kefir.min.js',
'./node_modules/d3/build/d3.min.js',
'./examples/docs-patch.js',
'./dist/rpd-docs.css',
'./dist/rpd-docs.min.js'/*,
'./dist/rpd-html.css',
'./dist/rpd-html.min.js',
'./dist/rpd-svg.css',
'./dist/rpd-svg.min.js'*/ ];
var lastChecked;
try {
dependencies.forEach(function(dependency) {
lastChecked = dependency;
fs.accessSync(dependency, fs.F_OK);
});
} catch(e) {
var failedDependency = (lastChecked || 'Unknown');
console.error(failedDependency + ' dependency wasn\'t met');
gutil.log(gutil.colors.red('☠️ UNEXPECTED FAILURE: ☠️'));
gutil.log('First time before building docs (not every time)');
gutil.log('Please call', gutil.colors.red('`gulp get-dev-deps`'), 'to get latest Kefir.js','(if you haven\'t yet)');
gutil.log('and then, to generate RPD version for docs, call:');
gutil.log(gutil.colors.red('`gulp for-docs`'));
gutil.log('so then you will be safe to call', gutil.colors.yellow('`gulp docs`'), 'again');
throw new Error('Dependency wasn\'t met: ' + failedDependency);
}
return gulp.src(dependencies)
.pipe(gulp.dest('./docs/compiled/'));
});
gulp.task('docs-copy-assets', function() {
return gulp.src([ './docs/assets/*.*' ])
.pipe(gulp.dest('./docs/compiled/assets'));
});
gulp.task('docs-copy-vendor', function() {
var vendorDependencies = [
'./node_modules/kefir/dist/kefir.min.js', // Kefir
'./node_modules/timbre/timbre.dev.js', // timbre
'./node_modules/webpd/dist/webpd-latest.min.js', // WebPd
'./node_modules/p5/lib/p5.min.js', // p5
'./node_modules/d3/build/d3.min.js', // d3
'./node_modules/codemirror/lib/codemirror.js',
'./node_modules/codemirror/lib/codemirror.css',
'./node_modules/codemirror/mode/javascript/javascript.min.js',
//'./node_modules/highlight.js/lib/highlight.js',
//'./node_modules/highlight.js/lib/languages/javascript.js',
'./node_modules/highlight.js/styles/' + DOC_HIGHLIGHT_STYLE_FILENAME // highlight.js style for documentation ];
];
return gulp.src(vendorDependencies)
.pipe(gulp.dest('./docs/compiled/vendor'));
});
gulp.task('docs-download-vendor', function() {
var vendorDependencies = [
'http://player-dev.animatron.com/latest/bundle/animatron.min.js' // animatron
];
return download(vendorDependencies)
.pipe(gulp.dest('./docs/compiled/vendor'));
});
//var RAWGIT_PREFIX = 'https://cdn.rawgit.com/shamansir/rpd/' + 'v' + pkg.version;
//var RAWGIT_PREFIX = 'https://rawgit.com/shamansir/rpd/' + 'v' + pkg.version;
var RAWGIT_PREFIX = 'https://rawgit.com/shamansir/rpd/master';
gulp.task('docs-copy-examples', function() {
var sourceRe = new RegExp('src="\.\./src/(.*)"|\.\./src=\'\.\.src/(.*)\'', 'g');
var replaceSourceFiles = parser({
name: 'replace-source-files',
func: function(data) {
return data.replace(sourceRe, 'src="' + RAWGIT_PREFIX + '/src/\$1"');
}
});
var hrefRe = new RegExp('href="\.\./src/(.*)"|href=\'\.\.src/(.*)\'', 'g');
var replaceHrefFiles = parser({
name: 'replace-href-files',
func: function(data) {
return data.replace(hrefRe, 'href="' + RAWGIT_PREFIX + '/src/\$1"');
}
});
return gulp.src([ './examples/*.*' ])
.pipe(replaceSourceFiles())
.pipe(replaceHrefFiles())
.pipe(gulp.dest('./docs/compiled/examples'));
});
gulp.task('docs-copy-root-assets', function() {
return gulp.src(['./docs/*.js', './docs/*.css', './docs/*.svg', './docs/*.ico'])
.pipe(gulp.dest('./docs/compiled/'));
});
gulp.task('docs-copy-highlight-css', function() {
return gulp.src('./docs/vendor/' + DOC_HIGHLIGHT_STYLE_FILENAME)
.pipe(rename('highlight-js.min.css'))
.pipe(gulp.dest('./docs/compiled/'));
});
gulp.task('docs', [ 'docs-clean-dir', 'docs-copy-dependencies',
'docs-copy-root-assets', 'docs-copy-assets', 'docs-copy-vendor',
'docs-download-vendor', 'docs-copy-examples', 'docs-copy-highlight-css' ], function() {
//var utils = require('./docs/utils.js');
var config = require('./docs/config.json');
var result = makeDocs(config);
console.log('Compiled docs to ./docs/compiled');
return result;
});
gulp.task('docs-watch', [ 'docs-copy-dependencies', 'docs-copy-assets', 'docs-copy-vendor',
'docs-copy-examples', 'docs-copy-highlight-css'], function() {
//var utils = require('./docs/utils.js');
var config = require('./docs/config.json');
return makeDocs(config, function(result) {
return result.pipe(watch('./docs/**/*.md'));
});
console.log('Will watch for docs updates...');
});
gulp.task('setup-distribute-variant-html', function() {
minSuffixIsObligatory = true;
argv.renderer = [ 'html' ];
argv.style = [ 'quartz' ];
argv.toolkit = [ ];
argv['target-name'] = 'rpd-html';
});
gulp.task('setup-distribute-variant-svg', function() {
minSuffixIsObligatory = true;
argv.renderer = [ 'svg' ];
argv.style = [ 'quartz' ];
argv.toolkit = [ ];
argv['target-name'] = 'rpd-svg';
});
gulp.task('build-rpd-to-distribute-html', [ 'setup-distribute-variant-html', 'build' ]);
gulp.task('build-rpd-to-distribute-svg', [ 'setup-distribute-variant-svg', 'build' ]);
// Helpers =====================================================================
function checkPaths(argv) {
if (argv.from) { Paths.Root = argv.from; }
if (argv.to) { Paths.Destination = argv.to; }
}
function getCommandString(options) {
var command = 'gulp';
//if (options.from) command += ' --root ' + options.from;
options.renderer.forEach(function(renderer) { command += ' --renderer ' + renderer; });
options.style.forEach(function(style) { command += ' --style ' + style; });
options.toolkit.forEach(function(toolkit) { command += ' --toolkit ' + toolkit; });
options.io.forEach(function(io) { command += ' --io ' + io; });
options.navigation.forEach(function(type) { command += ' --navigation ' + type; });
if (options.d3) command += ' --d3';
options['user-style'].forEach(function(userStyle) {
command += ' --user-style ' + userStyle;
});
options['user-toolkit'].forEach(function(userToolkit) {
command += ' --user-toolkit ' + userToolkit;
});
if (options['target-name']) command += ' --target-name ' + options['target-name'];
if (options.compilation) command += ' --compilation ' + options.compilation;
if (options.pretty) command += ' --pretty';
return command;
}
function distJsHeader(pkg, options, time) {
var banner = ['/**',
' * <%= pkg.name %> - <%= pkg.description %>',
' * Built at ' + time.toUTCString(),
' *',
' * @version v<%= pkg.version %>',
' * @link <%= pkg.homepage %>',
' * @author <%= pkg.author %>',
' * @license <%= pkg.license %>',
' * ',
' * Selected Renderers: ' + (options.renderer.length ? options.renderer.join(', ') : '[None]'),
' * Selected Styles: ' + (options.style.length ? options.style.join(', ') : '[None]'),
' * Selected Toolkits: ' + (options.toolkit.length ? options.toolkit.join(', ') : '[None]'),
' * Selected I/O Modules: ' + (options.io.length ? options.io.join(', ') : '[None]'),
' * Selected Navigation Modules: ' + (options.navigation.length ? options.navigation.join(', ') : '[None]'),
' * d3.js or d3_tiny.js: ' + (options.d3 ? 'd3.js (external)' : 'd3_tiny.js'),
' *',
' * User Styles: ' + (options['user-style'].length ? options['user-style'].join(', ') : '[None]'),
' * User Toolkits: ' + (options['user-toolkit'].length ? options['user-toolkit'].join(', ') : '[None]'),
' *',
' * Command: ' + getCommandString(options),
' */',
''].join('\n');
return header(banner, { pkg: pkg });
}
function distCssHeader(pkg, options, time) {
var banner = ['/**',
' * <%= pkg.name %> - <%= pkg.description %>',
' * Built at ' + time.toUTCString(),
' *',
' * @version v<%= pkg.version %>',
' * @link <%= pkg.homepage %>',
' * @author <%= pkg.author %>',
' * @license <%= pkg.license %>',
' * ',
' * Selected Renderers: ' + (options.renderer.length ? options.renderer.join(', ') : '[None]'),
' * Selected Styles: ' + (options.style.length ? options.style.join(', ') : '[None]'),
' * Selected Toolkits: ' + (options.toolkit.length ? options.toolkit.join(', ') : '[None]'),
' *',
' * User Styles: ' + (options['user-style'].length ? options['user-style'].join(', ') : '[None]'),
' * User Toolkits: ' + (options['user-toolkit'].length ? options['user-toolkit'].join(', ') : '[None]'),
' */',
'', ''].join('\n');
return header(banner, { pkg: pkg });
}
function logFiles(list) {
list.forEach(function(file) {
gutil.log(valueColor(file));
});
return list;
}
function getCssFiles(options) {
var list = [];
options.renderer.forEach(function(renderer) {
list.push(Paths.Renderer(renderer) + '.css');
});
options.toolkit.forEach(function(toolkit) {
options.renderer.forEach(function(renderer) {
list.push(Paths.ToolkitRenderer(toolkit, renderer) + '.css');
});
});
options['user-toolkit'].forEach(function(toolkit) {
options.renderer.forEach(function(renderer) {
list.push(Paths.UserToolkitRenderer(toolkit, renderer) + '.css');
});
});
options.style.forEach(function(style) {
options.renderer.forEach(function(renderer) {
list.push(Paths.StyleRenderer(style, renderer) + '.css');
});
});
options['user-style'].forEach(function(style) {
options.renderer.forEach(function(renderer) {
list.push(Paths.UserStyleRenderer(style, renderer) + '.css');
});
});
return list;
}
function getJsFiles(options) {
var list = [];
if (!options.d3) list.push(Paths.D3Tiny());
list.push(Paths.Rpd());
list.push(Paths.RenderModel());
options.style.forEach(function(style) {
options.renderer.forEach(function(renderer) {
list.push(Paths.StyleRenderer(style, renderer) + '.js');
});
});
options['user-style'].forEach(function(style) {
options.renderer.forEach(function(renderer) {
list.push(Paths.UserStyleRenderer(style, renderer) + '.js');
});
});
options.renderer.forEach(function(renderer) {
list.push(Paths.Renderer(renderer) + '.js');
});
options.toolkit.forEach(function(toolkit) {
list.push(Paths.ToolkitModel(toolkit) + '.js');
list.push(Paths.Toolkit(toolkit) + '.js');
options.renderer.forEach(function(renderer) {
list.push(Paths.ToolkitRenderer(toolkit, renderer) + '.js');
});
});
options['user-toolkit'].forEach(function(toolkit) {
list.push(Paths.UserToolkitModel(toolkit) + '.js');
list.push(Paths.UserToolkit(toolkit) + '.js');
options.renderer.forEach(function(renderer) {
list.push(Paths.UserToolkitRenderer(toolkit, renderer) + '.js');
});
});
options.io.forEach(function(io) {
list.push(Paths.Io(io) + '.js');
});
options.navigation.forEach(function(type) {
list.push(Paths.Navigation(type) + '.js');
});
return list;
}
function getHtmlHead(options) {
console.log('===========');
console.log('<head>');
function comment(comment) {
console.log(' <!-- ' + comment + ' -->')
}
function cssFile(path) {
console.log(' <link rel="stylesheet" href="' + path + '"></link>');
}
function jsFile(path) {
console.log(' <script src="' + path + '"></script>');
}
console.log(' <meta charset=\'utf-8\' />');
console.log();
comment('Built with RPD v' + pkg.version + ' <http://shamansir.github.io/rpd>');
console.log();
comment(getCommandString(options).replace(/--/g, '=='));
console.log();
options.renderer.forEach(function(renderer) {
comment('RPD Renderer: ' + renderer);
cssFile(Paths.Renderer(renderer) + '.css');
});
options.style.forEach(function(style) {
options.renderer.forEach(function(renderer) {
comment('RPD Style: ' + style + ' (' + renderer + ')');
cssFile(Paths.StyleRenderer(style, renderer) + '.css');
});
});
options['user-style'].forEach(function(style) {
options.renderer.forEach(function(renderer) {
comment('RPD User Style: ' + style + ' (' + renderer + ')');
cssFile(Paths.UserStyleRenderer(style, renderer) + '.css');
});
});
options.toolkit.forEach(function(toolkit) {
options.renderer.forEach(function(renderer) {
comment('RPD Toolkit: ' + toolkit + ' (' + renderer + ')');
cssFile(Paths.ToolkitRenderer(toolkit, renderer) + '.css');
});
});
options['user-toolkit'].forEach(function(toolkit) {
options.renderer.forEach(function(renderer) {
comment('RPD User Toolkit: ' + toolkit + ' (' + renderer + ')');
cssFile(Paths.UserToolkitRenderer(toolkit, renderer) + '.css');
});
});
console.log();
comment('Kefir'); jsFile(Paths.Kefir());
if (options.d3) {
comment('d3.js'); jsFile(Paths.D3());
} else {
comment('RPD\'s d3_tiny.js'); jsFile(Paths.D3Tiny());
}
comment('RPD'); jsFile(Paths.Rpd());
console.log();
comment('RPD Rendering Engine:');
jsFile(Paths.RenderModel());
options.style.forEach(function(style) {
options.renderer.forEach(function(renderer) {
comment('RPD Style: ' + style + ' (' + renderer + ')');
jsFile(Paths.StyleRenderer(style, renderer) + '.js');
});
});
options['user-style'].forEach(function(style) {
options.renderer.forEach(function(renderer) {
comment('RPD User Style: ' + style + ' (' + renderer + ')');
jsFile(Paths.UserStyleRenderer(style, renderer) + '.js');
});
});
options.renderer.forEach(function(renderer) {
comment('RPD Renderer: ' + renderer);
jsFile(Paths.Renderer(renderer) + '.js');
});
options.toolkit.forEach(function(toolkit) {
comment('RPD Toolkit: ' + toolkit);
jsFile(Paths.ToolkitModel(toolkit) + '.js');
jsFile(Paths.Toolkit(toolkit) + '.js');
options.renderer.forEach(function(renderer) {
comment('RPD Toolkit: ' + toolkit + ' (' + renderer + ')');
jsFile(Paths.ToolkitRenderer(toolkit, renderer) + '.js');
});
});
options['user-toolkit'].forEach(function(toolkit) {
comment('RPD User Toolkit: ' + toolkit);
jsFile(Paths.UserToolkit(toolkit) + '.js');
options.renderer.forEach(function(renderer) {
comment('RPD User Toolkit: ' + toolkit + ' (' + renderer + ')');
jsFile(Paths.UserToolkitRenderer(toolkit, renderer) + '.js');
});
});
console.log();
options.io.forEach(function(io) {
comment('RPD I/O: ' + io);
jsFile(Paths.Io(io) + '.js');
});
options.navigation.forEach(function(type) {
comment('RPD Navigation: ' + type);
jsFile(Paths.Navigation(type) + '.js');
});
console.log('</head>');
console.log('===========');
}
function checkNewLines(text) {
if ((text.length == 1) && (text.charCodeAt(0) == 8203)) return '';
if ((text.charCodeAt(0) == 8203) && (text.charCodeAt(1) == 10)) {
text = text.slice(2);
}
if ((text.charCodeAt(text.length - 1) == 8203) && (text.charCodeAt(text.length - 2) == 10)) {
text = text.slice(0, text.length - 2);
}
return text;
}