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.

189 lines
4.8 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. wrench = require('wrench'),
  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/DataSet.js',
  52. './src/DataView.js',
  53. './src/timeline/TimeStep.js',
  54. './src/timeline/Stack.js',
  55. './src/timeline/Range.js',
  56. './src/timeline/Controller.js',
  57. './src/timeline/component/Component.js',
  58. './src/timeline/component/Panel.js',
  59. './src/timeline/component/RootPanel.js',
  60. './src/timeline/component/TimeAxis.js',
  61. './src/timeline/component/CurrentTime.js',
  62. './src/timeline/component/CustomTime.js',
  63. './src/timeline/component/ItemSet.js',
  64. './src/timeline/component/item/*.js',
  65. './src/timeline/component/Group.js',
  66. './src/timeline/component/GroupSet.js',
  67. './src/timeline/Timeline.js',
  68. './src/graph/dotparser.js',
  69. './src/graph/shapes.js',
  70. './src/graph/Node.js',
  71. './src/graph/Edge.js',
  72. './src/graph/Popup.js',
  73. './src/graph/Groups.js',
  74. './src/graph/Images.js',
  75. './src/graph/graphMixins/physics/PhysicsMixin.js',
  76. './src/graph/graphMixins/physics/BarnesHut.js',
  77. './src/graph/graphMixins/physics/Repulsion.js',
  78. './src/graph/graphMixins/ManipulationMixin.js',
  79. './src/graph/graphMixins/SectorsMixin.js',
  80. './src/graph/graphMixins/ClusterMixin.js',
  81. './src/graph/graphMixins/SelectionMixin.js',
  82. './src/graph/graphMixins/NavigationMixin.js',
  83. './src/graph/graphMixins/MixinLoader.js',
  84. './src/graph/Graph.js',
  85. './src/module/exports.js'
  86. ],
  87. separator: '\n'
  88. });
  89. // copy images
  90. wrench.copyDirSyncRecursive('./src/graph/img', DIST+ '/img', {
  91. forceDelete: true
  92. });
  93. wrench.copyDirSyncRecursive('./src/timeline/img', DIST+ '/img/timeline', {
  94. forceDelete: true
  95. });
  96. // copy css
  97. wrench.copyDirSyncRecursive('./src/graph/css', DIST+ '/css', {
  98. forceDelete: true
  99. });
  100. var timeStart = Date.now();
  101. // bundle the concatenated script and dependencies into one file
  102. var b = browserify();
  103. b.add(VIS_TMP);
  104. b.bundle({
  105. standalone: 'vis'
  106. }, function (err, code) {
  107. if(err) {
  108. throw err;
  109. }
  110. console.log("browserify",Date.now() - timeStart); timeStart = Date.now();
  111. // add header and footer
  112. var lib = read('./src/module/header.js') + code;
  113. // write bundled file
  114. write(VIS, lib);
  115. console.log('created js' + VIS);
  116. // remove temporary file
  117. fs.unlinkSync(VIS_TMP);
  118. // update version number and stuff in the javascript files
  119. replacePlaceholders(VIS);
  120. complete();
  121. });
  122. });
  123. /**
  124. * minify the visualization library vis.js
  125. */
  126. desc('Minify the visualization library vis.js');
  127. task('minify', function () {
  128. // minify javascript
  129. minify({
  130. src: VIS,
  131. dest: VIS_MIN,
  132. header: read('./src/module/header.js')
  133. });
  134. // update version number and stuff in the javascript files
  135. replacePlaceholders(VIS_MIN);
  136. console.log('created minified ' + VIS_MIN);
  137. });
  138. /**
  139. * test task
  140. */
  141. desc('Test the library');
  142. task('test', function () {
  143. // TODO: use a testing suite for testing: nodeunit, mocha, tap, ...
  144. var filelist = new jake.FileList();
  145. filelist.include([
  146. './test/**/*.js'
  147. ]);
  148. var files = filelist.toArray();
  149. files.forEach(function (file) {
  150. require('./' + file);
  151. });
  152. console.log('Executed ' + files.length + ' test files successfully');
  153. });
  154. /**
  155. * replace version, date, and name placeholders in the provided file
  156. * @param {String} filename
  157. */
  158. var replacePlaceholders = function (filename) {
  159. replace({
  160. replacements: [
  161. {pattern: '@@date', replacement: today()},
  162. {pattern: '@@version', replacement: version()}
  163. ],
  164. src: filename
  165. });
  166. };