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.

180 lines
4.4 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/SectorsMixin.js',
  76. './src/graph/ClusterMixin.js',
  77. './src/graph/SelectionMixin.js',
  78. './src/graph/NavigationMixin.js',
  79. './src/graph/Graph.js',
  80. './src/module/exports.js'
  81. ],
  82. separator: '\n'
  83. });
  84. // copy images
  85. wrench.copyDirSyncRecursive('./src/graph/img', DIST+ '/img', {
  86. forceDelete: true
  87. });
  88. wrench.copyDirSyncRecursive('./src/timeline/img', DIST+ '/img/timeline', {
  89. forceDelete: true
  90. });
  91. var timeStart = Date.now();
  92. // bundle the concatenated script and dependencies into one file
  93. var b = browserify();
  94. b.add(VIS_TMP);
  95. b.bundle({
  96. standalone: 'vis'
  97. }, function (err, code) {
  98. if(err) {
  99. throw err;
  100. }
  101. console.log("browserify",Date.now() - timeStart); timeStart = Date.now();
  102. // add header and footer
  103. var lib = read('./src/module/header.js') + code;
  104. // write bundled file
  105. write(VIS, lib);
  106. console.log('created js' + VIS);
  107. // remove temporary file
  108. fs.unlinkSync(VIS_TMP);
  109. // update version number and stuff in the javascript files
  110. replacePlaceholders(VIS);
  111. complete();
  112. });
  113. });
  114. /**
  115. * minify the visualization library vis.js
  116. */
  117. desc('Minify the visualization library vis.js');
  118. task('minify', function () {
  119. // minify javascript
  120. minify({
  121. src: VIS,
  122. dest: VIS_MIN,
  123. header: read('./src/module/header.js')
  124. });
  125. // update version number and stuff in the javascript files
  126. replacePlaceholders(VIS_MIN);
  127. console.log('created minified ' + VIS_MIN);
  128. });
  129. /**
  130. * test task
  131. */
  132. desc('Test the library');
  133. task('test', function () {
  134. // TODO: use a testing suite for testing: nodeunit, mocha, tap, ...
  135. var filelist = new jake.FileList();
  136. filelist.include([
  137. './test/**/*.js'
  138. ]);
  139. var files = filelist.toArray();
  140. files.forEach(function (file) {
  141. require('./' + file);
  142. });
  143. console.log('Executed ' + files.length + ' test files successfully');
  144. });
  145. /**
  146. * replace version, date, and name placeholders in the provided file
  147. * @param {String} filename
  148. */
  149. var replacePlaceholders = function (filename) {
  150. replace({
  151. replacements: [
  152. {pattern: '@@date', replacement: today()},
  153. {pattern: '@@version', replacement: version()}
  154. ],
  155. src: filename
  156. });
  157. };