vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
4.1 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. /**
  2. * Jake build script
  3. */
  4. var jake = require('jake'),
  5. browserify = require('browserify'),
  6. path = require('path'),
  7. fs = require('fs');
  8. require('jake-utils');
  9. // constants
  10. var DIST = './dist';
  11. var VIS = DIST + '/vis.js';
  12. var VIS_CSS = DIST + '/vis.css';
  13. var VIS_TMP = DIST + '/vis.js.tmp';
  14. var VIS_MIN = DIST + '/vis.min.js';
  15. /**
  16. * default task
  17. */
  18. desc('Default task: build all libraries');
  19. task('default', ['build', 'minify'], function () {
  20. console.log('done');
  21. });
  22. /**
  23. * build the visualization library vis.js
  24. */
  25. desc('Build the visualization library vis.js');
  26. task('build', {async: true}, function () {
  27. jake.mkdirP(DIST);
  28. // concatenate and stringify the css files
  29. concat({
  30. src: [
  31. './src/timeline/component/css/timeline.css',
  32. './src/timeline/component/css/panel.css',
  33. './src/timeline/component/css/groupset.css',
  34. './src/timeline/component/css/itemset.css',
  35. './src/timeline/component/css/item.css',
  36. './src/timeline/component/css/timeaxis.css',
  37. './src/timeline/component/css/currenttime.css',
  38. './src/timeline/component/css/customtime.css'
  39. ],
  40. dest: VIS_CSS,
  41. separator: '\n'
  42. });
  43. console.log('created ' + VIS_CSS);
  44. // concatenate the script files
  45. concat({
  46. dest: VIS_TMP,
  47. src: [
  48. './src/module/imports.js',
  49. './src/shim.js',
  50. './src/util.js',
  51. './src/events.js',
  52. './src/EventBus.js',
  53. './src/DataSet.js',
  54. './src/DataView.js',
  55. './src/timeline/TimeStep.js',
  56. './src/timeline/Stack.js',
  57. './src/timeline/Range.js',
  58. './src/timeline/Controller.js',
  59. './src/timeline/component/Component.js',
  60. './src/timeline/component/Panel.js',
  61. './src/timeline/component/RootPanel.js',
  62. './src/timeline/component/TimeAxis.js',
  63. './src/timeline/component/CurrentTime.js',
  64. './src/timeline/component/CustomTime.js',
  65. './src/timeline/component/ItemSet.js',
  66. './src/timeline/component/item/*.js',
  67. './src/timeline/component/Group.js',
  68. './src/timeline/component/GroupSet.js',
  69. './src/timeline/Timeline.js',
  70. './src/graph/dotparser.js',
  71. './src/graph/shapes.js',
  72. './src/graph/Node.js',
  73. './src/graph/Edge.js',
  74. './src/graph/Popup.js',
  75. './src/graph/Groups.js',
  76. './src/graph/Images.js',
  77. './src/graph/SectorsMixin.js',
  78. './src/graph/ClusterMixin.js',
  79. './src/graph/SelectionMixin.js',
  80. './src/graph/UIMixin.js',
  81. './src/graph/Graph.js',
  82. './src/module/exports.js'
  83. ],
  84. separator: '\n'
  85. });
  86. // bundle the concatenated script and dependencies into one file
  87. var b = browserify();
  88. b.add(VIS_TMP);
  89. b.bundle({
  90. standalone: 'vis'
  91. }, function (err, code) {
  92. if(err) {
  93. throw err;
  94. }
  95. // add header and footer
  96. var lib = read('./src/module/header.js') + code;
  97. // write bundled file
  98. write(VIS, lib);
  99. console.log('created js' + VIS);
  100. // remove temporary file
  101. fs.unlinkSync(VIS_TMP);
  102. // update version number and stuff in the javascript files
  103. replacePlaceholders(VIS);
  104. complete();
  105. });
  106. });
  107. /**
  108. * minify the visualization library vis.js
  109. */
  110. desc('Minify the visualization library vis.js');
  111. task('minify', function () {
  112. // minify javascript
  113. minify({
  114. src: VIS,
  115. dest: VIS_MIN,
  116. header: read('./src/module/header.js')
  117. });
  118. // update version number and stuff in the javascript files
  119. replacePlaceholders(VIS_MIN);
  120. console.log('created minified ' + VIS_MIN);
  121. });
  122. /**
  123. * test task
  124. */
  125. desc('Test the library');
  126. task('test', function () {
  127. // TODO: use a testing suite for testing: nodeunit, mocha, tap, ...
  128. var filelist = new jake.FileList();
  129. filelist.include([
  130. './test/**/*.js'
  131. ]);
  132. var files = filelist.toArray();
  133. files.forEach(function (file) {
  134. require('./' + file);
  135. });
  136. console.log('Executed ' + files.length + ' test files successfully');
  137. });
  138. /**
  139. * replace version, date, and name placeholders in the provided file
  140. * @param {String} filename
  141. */
  142. var replacePlaceholders = function (filename) {
  143. replace({
  144. replacements: [
  145. {pattern: '@@date', replacement: today()},
  146. {pattern: '@@version', replacement: version()}
  147. ],
  148. src: filename
  149. });
  150. };